HTML Entity Decoder
—
Formula: & → & | < → < | > → > | " → "
HTML Entity Decoder
HTML entity decoding converts encoded entities back to their original characters.
Conversion Formula
& → & | < → < | > → > | " → "
Each entity reference is replaced with the character it represents.
Step-by-Step Examples
<p>Hello</p> = <p>Hello</p>
Entities decoded back to HTML
Frequently Asked Questions
What does HTML entity decoding do?
It converts entity references like &lt; back to their original characters like <.