HTML Entity Decoder

Formula: &amp; → & | &lt; → < | &gt; → > | &quot; → "

HTML Entity Decoder

HTML entity decoding converts encoded entities back to their original characters.

Conversion Formula

&amp; → & | &lt; → < | &gt; → > | &quot; → "

Each entity reference is replaced with the character it represents.

Step-by-Step Examples

&lt;p&gt;Hello&lt;/p&gt; = <p>Hello</p>

Entities decoded back to HTML

Frequently Asked Questions

What does HTML entity decoding do?

It converts entity references like &amp;lt; back to their original characters like <.