ToolPad
Runs locally in your browser. Nothing you paste is sent to a server.

Unicode Escape

$Escape Unicode characters as \uXXXX or \u{XXXXXX} sequences for safe copying into source code and debugging. Runs locally in your browser.

Input

0 chars

Output

0 chars

Tip: You can verify in DevTools โ†’ Network that nothing is uploaded.

About this Unicode Escape

Unicode Escape converts non-ASCII characters into explicit escape sequences, making hidden or special characters visible and safe to paste into code or JSON strings.

$Characters above U+FFFF (such as many emojis) are commonly represented using \u{...} style escapes. Printable ASCII characters are usually left unchanged for readability.

Common uses
  • Process text data quickly without external tools
  • Transform content for development workflows
  • Clean and format text for analysis
Tips
  • Enable Auto to transform as you type
  • Upload text files directly from your device
  • Download the result when done

FAQ

Is my text uploaded to a server?

No. Everything runs locally in your browser. Nothing you paste is sent to a server.

Can I use this tool offline?

After the page loads once, it will typically keep working offline (unless you hard refresh with no cache).

Do you store my input?

No. Your input stays in your browser. Only optional preferences like theme or language may be stored.

What input formats are supported?

Any plain text. You can paste text directly into the input box.

$Why do some characters become \u{...}?

$Characters outside the basic multilingual plane have code points above 0xFFFF, so they cannot fit into a single \uXXXX escape.

Will normal ASCII text be escaped?

Typically no. Most tools only escape characters outside the printable ASCII range to keep output readable.

Can I convert escapes back into characters?

$Yes. Use Unicode Unescape to decode \uXXXX and \u{...} sequences back into real characters.