TL
Tool Lab
💰Donate
💰Donate

HTML Special Characters

Browse HTML entities and character codes.

SymbolNamed EntityDecimalHexDescription
<&lt;&#60;&#x3C;Less-than sign
>&gt;&#62;&#x3E;Greater-than sign
&&amp;&#38;&#x26;Ampersand
"&quot;&#34;&#x22;Quotation mark
'&apos;&#39;&#x27;Apostrophe
&nbsp;&#160;&#xA0;Non-breaking space
©&copy;&#169;&#xA9;Copyright sign
®&reg;&#174;&#xAE;Registered sign
&trade;&#8482;&#x2122;Trade mark sign
&euro;&#8364;&#x20AC;Euro sign
£&pound;&#163;&#xA3;Pound sign
¥&yen;&#165;&#xA5;Yen sign
¢&cent;&#162;&#xA2;Cent sign
¤&curren;&#164;&#xA4;Currency sign
±&plusmn;&#177;&#xB1;Plus-minus sign
×&times;&#215;&#xD7;Multiplication sign
÷&divide;&#247;&#xF7;Division sign
&asymp;&#8776;&#x2248;Almost equal to
&ne;&#8800;&#x2260;Not equal to
&le;&#8804;&#x2264;Less-than or equal to
&ge;&#8805;&#x2265;Greater-than or equal to
&infin;&#8734;&#x221E;Infinity
&radic;&#8730;&#x221A;Square root
&sum;&#8721;&#x2211;N-ary summation
&prod;&#8719;&#x220F;N-ary product
°&deg;&#176;&#xB0;Degree sign
µ&micro;&#181;&#xB5;Micro sign
¼&frac14;&#188;&#xBC;One quarter
½&frac12;&#189;&#xBD;One half
¾&frac34;&#190;&#xBE;Three quarters
&ndash;&#8211;&#x2013;En dash
&mdash;&#8212;&#x2014;Em dash
&hellip;&#8230;&#x2026;Horizontal ellipsis
"&ldquo;&#8220;&#x201C;Left double quotation
"&rdquo;&#8221;&#x201D;Right double quotation
&lsquo;&#8216;&#x2018;Left single quotation
&rsquo;&#8217;&#x2019;Right single quotation
«&laquo;&#171;&#xAB;Left angle quotation
»&raquo;&#187;&#xBB;Right angle quotation
¿&iquest;&#191;&#xBF;Inverted question mark
¡&iexcl;&#161;&#xA1;Inverted exclamation
&larr;&#8592;&#x2190;Left arrow
&rarr;&#8594;&#x2192;Right arrow
&uarr;&#8593;&#x2191;Up arrow
&darr;&#8595;&#x2193;Down arrow
&harr;&#8596;&#x2194;Left-right arrow
&lArr;&#8656;&#x21D0;Double left arrow
&rArr;&#8658;&#x21D2;Double right arrow
&hArr;&#8660;&#x21D4;Double left-right arrow
&bull;&#8226;&#x2022;Bullet
·&middot;&#183;&#xB7;Middle dot
&spades;&#9824;&#x2660;Spade suit
&clubs;&#9827;&#x2663;Club suit
&hearts;&#9829;&#x2665;Heart suit
&diams;&#9830;&#x2666;Diamond suit
&#9733;&#x2605;Black star
&#9734;&#x2606;White star
&#9744;&#x2610;Ballot box
&#9745;&#x2611;Ballot box with check
&#9758;&#x261E;Pointing hand right

About This Tool

This reference lists common HTML special characters with their named entity, decimal code, and hexadecimal code. HTML entities are needed when you want to display characters that have special meaning in HTML (like < and &) or characters not easily typed on a keyboard.

Click any row to copy the named entity (or decimal code when no named entity exists) to your clipboard. Use the search box or category filter to find a specific character.

How to Use

  1. Browse or search for the character you need.
  2. Filter by category (Essential, Math, Currency, etc.).
  3. Click any row to copy the entity code to clipboard.
  4. Paste the entity directly into your HTML source code.

Use Cases

Web developers use &lt; and &gt; to display code samples without breaking HTML parsing. Content writers use special typography characters like em dashes (&mdash;) and curly quotes. Designers use arrow entities for decorative purposes without importing icon fonts. Email template developers use HTML entities because some email clients mangle special characters.

FAQ

  • What is the difference between named and decimal entities? — Named entities like &copy; are mnemonic shortcuts. Decimal entities like &#169; reference the Unicode code point. Both render identically.
  • Do I need entities if my page uses UTF-8? — Only for <, >, and &, which must always be escaped. Other characters can be included directly as UTF-8 text.
  • What is a non-breaking space (&nbsp;)? — A space that prevents a line break at that point, used to keep words together.