HTML Decode

Decode HTML entities back to text. Convert <, &, " and other entities to their original characters.

💡 Enter HTML entities → get text. Example: "<b>" → "<b>".

0

How to Decode HTML Entities

Step-by-step guide with examples

Input
Convert
Result
1

What is HTML Decoding?

HTML decoding converts HTML entities back to their original characters. &lt; becomes <, &amp; becomes &, &quot; becomes ", etc. This reverses the HTML encoding process.

2

How HTML Decoding Works

The decoder recognizes both named and numeric entities: • Named: &lt; → <, &gt; → >, &amp; → & • Numeric: &#60; → <, &#x3C; → < Example: "&lt;p&gt;Hello &amp; World&lt;/p&gt;" → "<p>Hello & World</p>"

3

Common Use Cases

• Extracting readable text from HTML source. • Processing scraped web content. • Converting HTML-encoded database content. • Reading encoded API responses. • Restoring original text from HTML entities.

Frequently Asked Questions

3 common questions answered

3 Questions3 AnswersClick to expand
Q1What is HTML decoding?
HTML decoding converts HTML entities like &lt;, &amp;, and &quot; back to their original characters (<, &, ").
Q2How to decode HTML entities?
Paste the HTML-encoded text into our decoder. It automatically converts all named and numeric entities back to their original characters.
Q3What is the difference between HTML decode and URL decode?
HTML decode converts HTML entities (&lt;, &amp;) to characters. URL decode converts percent-encoded sequences (%20, %26) to characters. They handle different encoding schemes.