Unicode Converter
Convert text to Unicode escape sequences and vice versa
Input Text
Converted Result
About Unicode Conversion
Unicode escape sequences allow you to represent any Unicode character using ASCII characters. This is useful for including special characters in code or data files.
Unicode Escape Formats:
- JavaScript/JSON:
\uXXXX
(e.g.,\u0048
for 'H') - Extended:
\u{XXXXX}
(e.g.,\u{1F600}
for π) - Python/Java:
\uXXXX
or\UXXXXXXXX
Common Examples:
- Β© β
\u00A9
- β¬ β
\u20AC
- π β
\uD83D\uDE00
- δΈ β
\u4E2D
Use Cases:
- Embedding special characters in source code
- Working with internationalization (i18n)
- Debugging character encoding issues
- Creating portable text representations