Convert Hex HTML Entities to Characters
Convert HTML entities in #&x hex format back to characters. Runs entirely in your browser, so your data never leaves your device.
0 chars · 0 lines
Output
The result appears here as you type.
How to use Convert Hex HTML Entities to Characters
- 1. Paste the entity-laden text. Drop text containing hexadecimal numeric references like AB into the input pane. Surrounding plain text is preserved as-is.
- 2. Entities become characters. Every &#x...; sequence is parsed as a hex code point and replaced by the character it names, so AB renders as AB and € becomes the euro sign.
- 3. Copy the decoded text. Copy the readable result from the output pane and use it in your editor, translation file or database fix-up script.
When to use Convert Hex HTML Entities to Characters
Convert Hex HTML Entities to Characters undoes numeric character references, turning &#x...; noise back into readable text. Scraped pages, exported CMS content and defensive templating all leave entities behind, and reading or processing that content requires decoding them first.
- Cleaning scraped web content. A crawler saved article text where every apostrophe and accent is an entity. Decode the batch so your NLP pipeline or search index sees actual characters, not markup escapes.
- Reading obfuscated email addresses. A contact page encodes its mailto address as hex entities to deter bots. Paste the source snippet here to recover the plain address you can actually write to.
- Auditing localization exports. Translation files exported from an old CMS wrap every non-ASCII letter in entities, making review impossible. Decode a file's strings so translators can proofread the real text.
- Debugging double-escaped output. A page displays ' literally instead of an apostrophe. Decoding the raw markup shows how many escaping layers were applied and which template stage to fix.
Examples
Decode
Input
AB
Output
AB
About the Convert Hex HTML Entities to Characters tool
Convert Hex HTML Entities to Characters runs as plain JavaScript in your browser tab, with no server behind it. Convert HTML entities in #&x hex format back to characters. Whatever you put in stays on your device from start to finish.
The tool is part of EditSafely's Hex Tools section, 108 single-purpose utilities built around the same idea: open the page, get the result, keep your data to yourself.
There is nothing to configure. Provide the input and the result appears on its own. A worked example further down the page shows exactly what the tool produces for a real input.
That local-first design has practical benefits beyond privacy. The tool keeps working on a flaky connection once the page has loaded, results are instant because nothing round-trips to a server, and it is safe to use with confidential material.
Frequently asked questions
Is Convert Hex HTML Entities to Characters free to use?
Yes, it is completely free. All 2,658 tools on EditSafely work without an account, a subscription or usage limits.
Is it safe to paste sensitive or confidential data?
Everything happens locally. Your browser downloads the tool's code once, then does all the processing itself; nothing you enter is transmitted, stored or logged. You can even go offline after the page loads and it will still work.
How much text can I process at once?
There is no fixed limit. Because the work happens on your own device rather than on a shared server, the practical ceiling is your machine's memory, which comfortably handles inputs far larger than typical online tools allow.
Do I need to sign up or install anything?
No. The tool works in any modern browser on desktop, tablet or phone. There is no account to create, no extension to add and no software to install.
How do I use the result?
The output panel has a one-click copy button, and you can keep refining the input while you work; the result updates in place as you type.