Converter Web ToolsConverter WebTools

HTML Entity Codes — Reference Table

HTML entities let you display reserved characters and special symbols in HTML using a named code (like &copy;) or a numeric code (like &#169;). They are essential for showing characters such as &, <, >, copyright, currency and math symbols safely. The table below lists the most-used HTML entity codes with their character, named entity, numeric entity and description.

CharNamedNumericDescription
&&amp;&#38;Ampersand
<&lt;&#60;Less-than
>&gt;&#62;Greater-than
"&quot;&#34;Double quote
'&apos;&#39;Apostrophe
(space)&nbsp;&#160;Non-breaking space
¡&iexcl;&#161;Inverted exclamation
¿&iquest;&#191;Inverted question
¢&cent;&#162;Cent
£&pound;&#163;Pound
¤&curren;&#164;Currency
¥&yen;&#165;Yen
&euro;&#8364;Euro
§&sect;&#167;Section
©&copy;&#169;Copyright
®&reg;&#174;Registered
&trade;&#8482;Trademark
°&deg;&#176;Degree
±&plusmn;&#177;Plus-minus
µ&micro;&#181;Micro
&para;&#182;Pilcrow
·&middot;&#183;Middle dot
×&times;&#215;Multiplication
÷&divide;&#247;Division
&ndash;&#8211;En dash
&mdash;&#8212;Em dash
&lsquo;&#8216;Left single quote
&rsquo;&#8217;Right single quote
&ldquo;&#8220;Left double quote
&rdquo;&#8221;Right double quote
&bull;&#8226;Bullet
&hellip;&#8230;Ellipsis
&dagger;&#8224;Dagger
&Dagger;&#8225;Double dagger
&prime;&#8242;Prime
&Prime;&#8243;Double prime
«&laquo;&#171;Left guillemet
»&raquo;&#187;Right guillemet
&larr;&#8592;Left arrow
&rarr;&#8594;Right arrow
&uarr;&#8593;Up arrow
&darr;&#8595;Down arrow
&harr;&#8596;Left-right arrow
&rArr;&#8658;Rightwards double arrow
&le;&#8804;Less-than or equal
&ge;&#8805;Greater-than or equal
&ne;&#8800;Not equal
&asymp;&#8776;Approximately
&infin;&#8734;Infinity
&radic;&#8730;Square root
&sum;&#8721;Sum
&prod;&#8719;Product
&int;&#8747;Integral
&part;&#8706;Partial
&#8710;&#8710;Increment
π&pi;&#960;Pi
Ω&Omega;&#937;Omega
½&frac12;&#189;One half
¼&frac14;&#188;One quarter
¾&frac34;&#190;Three quarters
¬&not;&#172;Not sign
&hearts;&#9829;Heart
&diams;&#9830;Diamond
&clubs;&#9827;Club
&spades;&#9824;Spade
&#9733;&#9733;Star
&#9745;&#9745;Checkbox
&#10003;&#10003;Check mark

How HTML entities work

Always escape &, < and > in page content; escape " and ' inside attribute values. Named entities are easier to read; numeric entities work for any Unicode character even without a name.

Related tools & charts