Skip to content
TPToolPocket

HTML Entity Encoder / Decoder

Encode special characters to HTML entities or decode entities back to text. Prevents XSS and fixes display issues.

Common HTML Entities

CharacterEntityName
&&Ampersand
<&lt;Less than
>&gt;Greater than
"&quot;Double quote
'&#39;Single quote
 &nbsp;Non-breaking space
©&copy;Copyright
®&reg;Registered
&trade;Trademark
&mdash;Em dash
&ndash;En dash
&hellip;Ellipsis
°&deg;Degree
×&times;Multiplication
÷&divide;Division

You might also like

HTML Entity Encoder & Decoder

Encode special characters like <, >, &, and quotes into their HTML entity equivalents to prevent XSS attacks and rendering issues. Decode HTML entities back to readable text. Includes a reference table of the most common HTML entities and supports both named (&amp;) and numeric (&#38;) entities.