TL
Tool Lab
💰Donate
💰Donate

HTML Character Codes

Search and copy HTML special characters, symbols, and entity 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

The HTML Character Codes tool helps you quickly find special symbols and entity codes used in HTML. It includes hundreds of characters like ampersand (&), angle brackets (<>), copyright (©), and more.

Each character is provided in named entity (e.g., &amp;), decimal (e.g., &#38;), and hexadecimal (e.g., &#x26;) formats. Named entities are recommended for better readability.

How to Use

  1. Type a symbol name, character, or code in the search box.
  2. Browse the filtered list to find what you need.
  3. Click any row to copy the named entity code.
  4. Paste the code into your HTML file.
  5. Verify it renders correctly in your browser.

Use Cases

Useful for writing HTML documents, email templates, displaying math symbols, adding copyright or trademark signs, and entering special punctuation.

FAQ

  • Should I use named entities or numeric codes?Named entities (&amp;, &lt;, etc.) are more readable and widely supported. Numeric codes are useful for symbols without a named entity.
  • Are all entities supported in HTML5?Most named entities work in HTML5, but some were added in HTML5 only. Use numeric codes when in doubt.
  • Can I use entity codes in JavaScript?HTML entities only work in HTML context. In JavaScript, use the Unicode character directly or set it via textContent.