Unicode Decode
Convert Unicode escape sequences (\uXXXX, U+XXXX, HTML entities) back to readable characters.
About Unicode Decoding
Unicode decoding converts escape sequences back to their original human-readable characters. You commonly encounter Unicode escape sequences in JSON data (\u4E16\u754C for 世界), JavaScript source code with non-ASCII string literals, Python repr() output, HTML source from CMS systems that encode special characters, and obfuscated JavaScript code that encodes all characters as \uXXXX escapes.
This tool supports auto-detection of the escape format, so you can paste any Unicode-encoded text and get the decoded result without manually selecting the format. It handles all common variants: JavaScript/JSON \uXXXX, Unicode U+XXXX notation, HTML hex &#xXXXX; and decimal &#XXXXX; entities, and CSS \XXXXXX notation.