🌐 HTML / Unicode Encode & Decode
Convert text ⇄ HTML entities and text ⇄ Unicode — 100% in-browser.
How to use
- Paste text into Input.
- Choose HTML or Unicode — Encode or Decode.
- Copy the result or clear to start again.
Convert special characters to safe HTML entities (e.g., & → &) or to Unicode escape sequences (e.g., ✓ → \u2713). Great for web dev, data migration, and content sanitization.
Input: Hello & Welcome > User!
Hello & Welcome > User!\u0048\u0065\u006C\u006C\u006F\u0020\u0026\u0020\u0057\u0065\u006C\u0063\u006F\u006D\u0065\u0020\u003E\u0020\u0055\u0073\u0065\u0072\u0021No. All conversions run locally in your browser.
HTML encoding converts characters to entities like &. Unicode encoding converts each character to a \uXXXX escape. Use HTML for safe rendering in webpages; use Unicode escapes for code/data.
Input must be valid entities (e.g., &) or valid \uXXXX sequences. Mixed or double-encoded strings can produce unexpected results.