string_unescape

Creator: coderz1093

Last updated:

Add to Cart

Description:

string unescape

String unescape #
Handy utility to unescape string representation (unicode, newline, tab, etc).
Example #
Unescape string #
expect(unescape(r"a\nb"), "a\nb");
expect(unescape(r"a\x0ab"), "a\nb");
copied to clipboard
Unescape character #
expect(unescapeChar(r"a"), 97);
expect(unescapeChar(r"🀀"), 0x1F000);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.