v2.0.0
string_unescape
Handy utility to unescape string representation (unicode, newline, tab, etc).
6Likes 26.9K30-day downloads140Pub points
AndroidiOSWebmacOSWindowsLinux
Handy utility to unescape string representation (unicode, newline, tab, etc).
English project snapshot. Visit GitHub for the latest content.
Handy utility to unescape string representation (unicode, newline, tab, etc).
expect(unescape(r"a\nb"), "a\nb");
expect(unescape(r"a\x0ab"), "a\nb");
expect(unescapeChar(r"a"), 97);
expect(unescapeChar(r"🀀"), 0x1F000);