HTML Entity Decoder

Convert HTML entities back to their original characters.

Input

Common HTML Entities

CharacterEntityCodeDescription
<&lt;&#60;Less than
>&gt;&#62;Greater than
&&amp;&#38;Ampersand
"&quot;&#34;Double quote
'&apos;&#39;Single quote
 &nbsp;&#160;Non-breaking space
©&copy;&#169;Copyright
®&reg;&#174;Registered
&trade;&#8482;Trademark
' : '<script>alert("Hello & Welcome!");</script>'; }); clearBtn.addEventListener('click', function() { input.value = ''; outputSection.style.display = 'none'; }); input.addEventListener('input', function() { if (input.value) processBtn.click(); }); });

Processing...