HTML Entity Decode
Decode HTML entities back into readable text — turn <, &, ", and numeric entities like é into the characters they represent, live in your browser.
- Published
- Last reviewed
Tool Summary Answer Block
This tool accepts structured input and returns deterministic output in the browser with no server upload.
- Tool name
- HTML Entity Decode
- Input intent
- Provide source content to transform, validate, or analyze.
- Output intent
- Receive normalized output suitable for copy, reuse, or debugging.
- Example input
- <a href="/search?q=cats & dogs">Tom & Jerry</a>
- Example output
- <a href="/search?q=cats & dogs">Tom & Jerry</a>
Need to encode instead? Switch to HTML Entity Encode
Tool Introduction
Decode HTML entities back into readable text — turn <, &, ", and numeric entities like é into the characters they represent, live in your browser.
Tool Overview
HTML entities are escape sequences such as <, &, ", and / that stand in for characters which would otherwise have special meaning in markup. When you copy text out of HTML source, scraped pages, exported data, or logs, those entities often survive as literal &-codes. This tool reverses the process: it decodes named entities (like &) and numeric entities in both decimal (é) and hexadecimal (é) form back into the original characters, updating instantly as you type. It runs entirely in your browser, so it is safe for private content. Use it to clean up scraped or exported text, debug encoding issues, or read entity-laden strings from configuration and data files.
Use Cases
- Clean up text scraped or copied from HTML pages that arrived full of entities
- Read entity-encoded values from configuration, XML, or exported data files
- Debug double-encoding issues where characters were escaped more than once
- Convert entity-laden CSV or log fields back into readable text
- Verify what an encoded snippet actually represents
Input/Output Examples
<a href="/search?q=cats & dogs">Tom & Jerry</a>
<a href="/search?q=cats & dogs">Tom & Jerry</a>
FAQ
Which entities can it decode?+
What if an entity is malformed?+
Can it handle double-encoded text?+
Is my text sent to a server?+
Explore More Tools
Discover related utilities in the Encoding category below.
Related tools
Handpicked utilities you might find useful