HTML Entity Encoder / Decoder

HTML entity encoding and decoding

Encoded Output

Common HTML Entities

&
&
Ampersand
<
&lt;
Less than
>
&gt;
Greater than
"
&quot;
Double quote
'
&#39;
Single quote
 
&nbsp;
Non-breaking space
©
&copy;
Copyright
®
&reg;
Registered
&trade;
Trademark
°
&deg;
Degree
±
&plusmn;
Plus-minus
&mdash;
Em dash

What are HTML Entities?

HTML entities are escape sequences for characters that have special meaning in HTML, like &lt;, &gt;, and &amp;. Encoding them prevents browsers from interpreting your text as markup.