HTML Entity Encoder/Decoder

Encode text to HTML entities or decode HTML entities to text. Safely convert special characters (<, >, &, etc.).

Encode

Convert text to HTML entities.

Common HTML Entities

Reference table for frequently used HTML entity codes

&&
&lt;<
&gt;>
&quot;"
&#39;'
&nbsp;
&copy;
&reg;®
&euro;
&pound;£
&yen;¥
&deg;°

What are HTML Entities?

HTML entities are special character codes used in HTML to represent reserved characters. For example, &lt; represents <, &gt; represents >, and &amp; represents &.

All conversions are performed in your browser. No data is sent to any server.