HTML Entity Encoder / Decoder

Encode special characters into HTML entities or decode them back.

Common HTML entities reference

&&
<&lt;
>&gt;
"&quot;
'&#39;
©&copy;
®&reg;
&trade;
&mdash;
&euro;
£&pound;
&hellip;

About HTML Entities

HTML entities are special codes that represent characters which have special meaning in HTML (like <, >, &). Encoding prevents XSS attacks and ensures text renders correctly in all browsers.