Chinese Unicode Encoder & Decoder is a free online tool designed for developers, encoding enthusiasts, and everyday users. It allows you to instantly convert Chinese characters into Unicode escape sequences (e.g., \u4e2d\u6587), and decode Unicode back into readable Chinese text — all in real time, right in your browser.
Unicode is an international character encoding standard that assigns a unique numeric code point to virtually every character in every language and script. Chinese characters are typically represented as \uXXXX, where XXXX is the hexadecimal code point for that character.
Unicode was designed to solve the fragmentation caused by legacy region-specific encodings (such as GBK, Big5, and Latin-1) and is now the universal standard for text on the modern internet and in software development.
Not exactly. Unicode is a character set that defines code points; UTF-8 is an encoding scheme that defines how those code points are stored in memory. The \uXXXX notation represents Unicode code points, not raw UTF-8 bytes.
This typically means the output was serialized using Unicode escape notation. Paste the \uXXXX string into this tool's decode box to restore the original Chinese text.
Yes. JavaScript natively supports \uXXXX Unicode escape sequences in string literals, so you can paste the encoded output directly into your JS code.
All characters within the Unicode Basic Multilingual Plane (BMP) are supported, including Simplified Chinese, Traditional Chinese, Japanese, Korean, and a wide range of special symbols.

Loading...