import { utf8Decode } from '@src/hylo-components/utils/usefull/usefull';
Decodes utf-8 encoded string back into multi-byte Unicode characters.
Can be achieved in JavaScript by decodeURIComponent(escape(str)), but this approach may be useful in other languages.
UTF-8 string to be decoded back to Unicode
Generated using TypeDoc
import { utf8Decode } from '@src/hylo-components/utils/usefull/usefull';
Decodes utf-8 encoded string back into multi-byte Unicode characters.
Can be achieved in JavaScript by decodeURIComponent(escape(str)), but this approach may be useful in other languages.