HTML Decode

Decode HTML entities back to original characters — paste, decode, and copy instantly.

Input Encoded
Output HTML
Decoded HTML will appear here...
info

About HTML Decode

HTML Decode is a free online tool that converts HTML entities back into their original characters. When working with encoded HTML content where special characters appear as entities like &amp;lt;, &amp;gt;, &amp;amp;, or &amp;quot;, this tool instantly converts them back to their readable forms like <, >, &, and quotes.

The tool supports all HTML named entities (like &amp;nbsp;, &amp;copy;, &amp;euro;) as well as numeric entities in both decimal (&#38;#169;) and hexadecimal (&#38;#xA9;) formats. All processing happens entirely in your browser — no data is sent to any server.

help

How to Use

01

Paste Encoded HTML

Paste your HTML-encoded text with entities into the input pane.

02

Decode

Click "Decode" to convert HTML entities back to their original characters.

03

Copy Result

Use the copy button to grab your decoded HTML.

quiz

Frequently Asked Questions

What is HTML Decode? expand_more
HTML Decode is a free online tool that converts HTML entities back into their original characters. It reverses HTML encoding by converting entities like &lt; back to <, &amp; back to &, &quot; back to double quotes, and all other named and numeric HTML entities to their readable forms.
What types of entities does it support? expand_more
The tool supports all HTML entity types: named entities (like &amp;, &lt;, &gt;, &nbsp;, &copy;), decimal numeric entities (like &#169;), and hexadecimal numeric entities (like &#xA9;). It handles the full range of Unicode characters represented as HTML entities.
Is my data secure? expand_more
Yes. All decoding happens entirely in your browser using JavaScript. No data is sent to any server, ensuring your content remains completely private and secure.
When would I need to decode HTML? expand_more
HTML decoding is useful when extracting text from HTML source code, processing API responses that contain encoded HTML, working with database content that was HTML-encoded for storage, or converting encoded content back to readable form for editing.