Micro Tools
Menu

HTML Encoder / Decoder

Encode and decode HTML entities

HTML Encoder/Decoder
Convert special characters to HTML entities and vice versa
Common HTML Entities
Reference for frequently used HTML entities
&&
Ampersand
& | &
<&lt;
Less than
&#60; | &#x3C;
>&gt;
Greater than
&#62; | &#x3E;
"&quot;
Double quote
&#34; | &#x22;
'&apos;
Single quote
&#39; | &#x27;
&nbsp;
Non-breaking space
&#160; | &#xA0;
©&copy;
Copyright
&#169; | &#xA9;
®&reg;
Registered trademark
&#174; | &#xAE;
&trade;
Trademark
&#8482; | &#x2122;
&euro;
Euro sign
&#8364; | &#x20AC;
£&pound;
Pound sign
&#163; | &#xA3;
¥&yen;
Yen sign
&#165; | &#xA5;
§&sect;
Section sign
&#167; | &#xA7;
&para;
Paragraph sign
&#182; | &#xB6;
&dagger;
Dagger
&#8224; | &#x2020;
&Dagger;
Double dagger
&#8225; | &#x2021;
&bull;
Bullet
&#8226; | &#x2022;
&hellip;
Horizontal ellipsis
&#8230; | &#x2026;
&ndash;
En dash
&#8211; | &#x2013;
&mdash;
Em dash
&#8212; | &#x2014;
&lsquo;
Left single quote
&#8216; | &#x2018;
&rsquo;
Right single quote
&#8217; | &#x2019;
&ldquo;
Left double quote
&#8220; | &#x201C;
&rdquo;
Right double quote
&#8221; | &#x201D;
Usage Examples
How to use the HTML encoder/decoder

Encoding Examples:

<div>Hello & World!</div>
→ <div>Hello &amp; World!</div>

Decoding Examples:

&lt;div&gt;Hello &amp; World!&lt;/div&gt;
→ <div>Hello & World!</div>