HTML Decode
Free online HTML decoder — convert HTML entities like &, <, and > back to their original characters.
Decoded result
HTML Decode Online
Paste HTML-encoded text into the field above and click HTML Decode to convert entities back to their original characters. Everything runs in your browser — nothing is sent to a server.
What Is HTML Decoding?
HTML decoding is the reverse of HTML encoding: it converts HTML entities like &, <, and > back into their original characters (&, <, >). You'll encounter HTML-encoded strings in scraped web content, API responses, and template outputs.
Common Uses
- Reading HTML-encoded content from APIs or RSS feeds
- Cleaning up scraped web content that contains entities
- Inspecting escaped HTML from templating engines
How to Use This Tool
- Paste your HTML-encoded string into the input field.
- Click HTML Decode.
- Copy the decoded result with the copy button.
Frequently Asked Questions
How do I decode HTML entities?
< becomes <, & becomes &, and " becomes ".What HTML entities are supported?
<, >, &, ", ', , etc.) and numeric entities in both decimal (é) and hexadecimal (é) formats.When do I need to decode HTML?
Does decoding affect regular HTML tags?
& and ending with ;). Regular HTML tags like <p> remain unchanged unless they're entity-encoded. This is the safe, expected behavior.What happens to incomplete or invalid entities?
& not followed by a valid entity name or number) are left as-is. The tool won't attempt to 'fix' them, preserving the original text exactly.