GK
GKInsightHub

HTML Entity Encoder / Decoder

Convert special characters to HTML entities and decode them back

📄
HTML Entity Encoder / Decoder

What are HTML Entities?

HTML entities are special codes used to display reserved characters in HTML. Characters like <, >, &, and " have special meanings in HTML and must be encoded to display them as text on a web page.

Common HTML Entities

CharacterEntity NameEntity Number
&&amp;&#38;
<&lt;&#60;
>&gt;&#62;
"&quot;&#34;
'&apos;&#39;