Convert HTML entity references back into their literal Unicode characters β the inverse of entity encoding.
Supported forms
- Named entities β
&,<,>,",', and other common names - Decimal numeric β
éβ Γ© - Hexadecimal numeric β
'β apostrophe
The decoder scans for &β¦; sequences and replaces them when recognized; unrecognized sequences are left intact so you can spot typos.
When to use it
Read exported CMS HTML, recover original punctuation from XML feeds, or verify round-trips after encoding with the companion text-to-entities tool.
Limitations
Malformed entities (missing semicolon, unknown name) may remain partially encoded. The tool does not parse full HTML documents or strip tags β only entity substitution on the pasted string. Security note: decoding untrusted entities before injecting into HTML can reintroduce markup if subsequent escaping is skipped.
Example
<& decodes to <&.