HTML Decoder
Decodes named HTML entities (like & and ") and numeric entities (like A and A) back to their original characters. Runs entirely in your browser — nothing is sent to a server.
Decodes named HTML entities (like & and ") and numeric entities (like A and A) back to their original characters. Runs entirely in your browser — nothing is sent to a server.
Use cases
- Reading escaped HTML source as plain text
- Converting a numeric character reference back to its character
Examples
An escaped tag with an attribute and an apostrophe
<div class="a">Tom & Jerry's</div>
<div class="a">Tom & Jerry's</div>
FAQ
Is my data sent to a server?
No — this tool runs entirely in your browser.