Μετατρέψτε κείμενο σε ακολουθίες διαφυγής Unicode
Δοκιμάστε και τα άλλα εργαλεία μας
Unicode escape converts characters to their \uXXXX hexadecimal escape sequences, the notation used in JavaScript, Java, and many other languages to represent Unicode characters as ASCII-safe strings. The reverse operation converts escape sequences back to their original characters.
This is particularly useful when you need to embed special characters in source code, configuration files, or JSON strings without relying on the editor to save the correct encoding.
JSON.stringify() can produce Unicode escapes for some characters, but its output depends on the runtime and the specific characters involved. ToolPop gives explicit control over which characters are escaped and returns the sequences in a format ready for use in any language.