Unicode Converter

Encoding Format:

Tool Description

Unicode Converter Used to convert between plain text characters and their Unicode code point representations. Unicode is a global character encoding standard that assigns a unique number to every character in every language. This conversion is useful in web development, configuration files, or programming scenarios requiring special character escaping.

  • Encode (Encode): Convert each character in the text to its corresponding Unicode code point representation. This tool supports multiple standard formats.
  • Decode (Decode): Converts Unicode code point strings in various formats (such as \u4f60\u597d) back into human-readable original text (e.g., 'Hello'). The decoder can automatically recognize mixed formats.
  • Format Options:
    • \uXXXX: Most common escape sequence in JavaScript or JSON.
    • &#DDDD;: Decimal numeric entity used in HTML.
    • &#xHHHH;: Hexadecimal numeric entity used in HTML.