HubTools

HTML Entity Converter

Encode and decode HTML entities with support for named, numeric, and hexadecimal formats

Named EntitiesNumeric FormatHex Format

HTML Entity Converter

Encode and decode HTML entities with support for named, numeric, and hexadecimal formats

HTML Entity Reference

CharNamedNumericHexDescription
&&&&Ampersand
<&lt;&#60;&#x3C;Less than
>&gt;&#62;&#x3E;Greater than
"&quot;&#34;&#x22;Double quote
'&apos;&#39;&#x27;Apostrophe
&nbsp;&#160;&#xA0;Non-breaking space
¢&cent;&#162;&#xA2;Cent
£&pound;&#163;&#xA3;Pound
¥&yen;&#165;&#xA5;Yen
&euro;&#8364;&#x20AC;Euro
±&plusmn;&#177;&#xB1;Plus/minus
×&times;&#215;&#xD7;Multiplication
÷&divide;&#247;&#xF7;Division
&ne;&#8800;&#x2260;Not equal
&le;&#8804;&#x2264;Less than or equal
&ge;&#8805;&#x2265;Greater than or equal
©&copy;&#169;&#xA9;Copyright
®&reg;&#174;&#xAE;Registered
&trade;&#8482;&#x2122;Trademark
°&deg;&#176;&#xB0;Degree
§&sect;&#167;&#xA7;Section
&para;&#182;&#xB6;Paragraph
&larr;&#8592;&#x2190;Left arrow
&rarr;&#8594;&#x2192;Right arrow
&uarr;&#8593;&#x2191;Up arrow
&darr;&#8595;&#x2193;Down arrow
À&Agrave;&#192;&#xC0;A grave
É&Eacute;&#201;&#xC9;E acute
Ñ&Ntilde;&#209;&#xD1;N tilde
Ü&Uuml;&#220;&#xDC;U umlaut
α&alpha;&#945;&#x3B1;Alpha
β&beta;&#946;&#x3B2;Beta
γ&gamma;&#947;&#x3B3;Gamma
Ω&Omega;&#937;&#x3A9;Omega

Options

About HTML Entities

HTML entities are special codes used to display reserved characters and symbols in HTML. They are essential for:

  • • Displaying special characters like <, >, and &
  • • Preventing XSS attacks by escaping user input
  • • Showing Unicode characters consistently
  • • Displaying mathematical and currency symbols
  • • Ensuring proper HTML validation

Three formats are available: Named (&amp;), Numeric (&#38;), and Hexadecimal (&#x26;). Named entities are more readable, while numeric formats have broader support.