w

Basic Usage

This guide covers the fundamental operations of the Text Unicode Converter tool.

Text to Unicode Conversion

Step 1: Select Output Format

Choose your preferred Unicode format from the dropdown:

  • Decimal: Numeric representation (65 66 67)
  • Hexadecimal: U+ notation (U+0041 U+0042 U+0043)
  • Unicode Escape: JavaScript escapes (\u0041\u0042\u0043)
  • HTML Entity: HTML entities (ABC)

Step 2: Enter Text

Type or paste your text in the input field. The conversion happens automatically as you type.

Step 3: View Results

The Unicode codes appear in the output area below the input field.

Example

Input: "Hello"
Decimal Output: 72 101 108 108 111
Hexadecimal Output: U+0048 U+0065 U+006C U+006C U+006F
Unicode Escape Output: \u0048\u0065\u006C\u006C\u006F
HTML Entity Output: Hello

Unicode to Text Conversion

Step 1: Select Input Format

Choose the format of your Unicode input:

  • Decimal: Space-separated numbers (65 66 67)
  • Hexadecimal: U+ prefixed codes (U+0041 U+0042 U+0043)
  • Unicode Escape: \u or \u{} sequences (\u0041\u0042\u0043)
  • HTML Entity: &#x; or &#; entities (ABC)

Step 2: Enter Unicode Codes

Type or paste your Unicode codes in the input field.

Step 3: View Converted Text

The corresponding text appears in the output area.

Example

Input: "U+0048 U+0065 U+006C U+006C U+006F"
Output: "Hello"

Copying Results

Click the "Copy" button next to any output to copy the result to your clipboard. A success message will confirm the copy operation.

Clearing Input

Use the "Clear" button to quickly clear the input field and reset the output.

Format Examples

Decimal Format

  • Input: 72 101 108 108 111
  • Output: Hello

Hexadecimal Format

  • Input: U+0048 U+0065 U+006C U+006C U+006F
  • Output: Hello

Unicode Escape Format

  • Input: \u0048\u0065\u006C\u006C\u006F
  • Output: Hello

HTML Entity Format

  • Input: Hello
  • Output: Hello

Tips for Best Results

  1. Use Spaces: Separate multiple Unicode codes with spaces for better readability
  2. Check Format: Ensure your input format matches the selected input format
  3. Valid Ranges: Unicode codes should be between 0 and 0x10FFFF
  4. Special Characters: The tool handles emoji, accented characters, and symbols correctly
Was this page helpful?