Unicode to Text Converter
Convert Unicode escape sequences (\u0048\u0065\u006c\u006c\u006f) to readable text and vice versa. Supports emoji and special characters.
Output:
What is Unicode Escape?
Unicode escape sequences represent characters using their code point. The format \uXXXX (4 hex digits) is used for characters in the Basic Multilingual Plane. For example, \u0048\u0065\u006c\u006c\u006f is "Hello".
What is it used for?
- JSON strings: JSON uses
\uXXXXfor non-ASCII characters - JavaScript/Java: Represent Unicode in source code
- Emoji: Convert emoji to escape sequences and back
- Debugging: Inspect character encoding in strings
How it works
To Unicode converts each character to \u + 4-digit hex. To Text decodes the escapes back to readable characters. Supports emoji and special symbols.
Related Tools
Text to Base64
Encode plain text to Base64 format quickly and securely. Free online Base64 encoder for developers and data processing. Supports UTF-8 and other encodings.
URL Encoder/Decoder
Encode and decode URL strings. Percent-encoding for special characters. Free online URL encoder decoder.
String Escape/Unescape
Escape and unescape strings for JSON, SQL, HTML, and regex. Free online string escape tool.