What this tool is good for
Unicode assigns a code point to every symbol, with values ranging from U+0000 to U+10FFFF. This tool helps you turn readable text into Unicode-style escapes and convert those escapes back to text.
The encode side mainly converts multibyte characters such as Chinese text while keeping ordinary ASCII characters unchanged, which is useful when inspecting mixed-language payloads or source snippets.
How to use it
- Enter readable text in the left panel to generate Unicode escapes.
- Paste Unicode-formatted text in the right panel to decode it back to characters.
- Copy the result when you need to place it into source code, payloads, or configuration.
Example
Input: 你好ABC
Encoded: \u4f60\u597dABC
Related tools
Unicode escapes often appear together with JSON, URL encoding, and Base64 payload handling, so those tools are good companions when debugging text transport issues.
Related tools
- JSON Formatter:Format, edit, and validate JSON online
- URL Encode/Decode:Encode and decode special characters in URLs
- Base64 Encode/Decode:Encode strings to Base64 and decode Base64 back to text