HTML Character Codes

Reference table for HTML character codes and entities.

HTML Character Code Reference

HTML character reference

Showing 51 characters

HTML Special

CharNameEntityDecimalHexActions
&Ampersand&&&
<Less Than&lt;&#60;&#x3C;
>Greater Than&gt;&#62;&#x3E;
"Double Quote&quot;&#34;&#x22;
'Single Quote&#39;&#39;&#x27;

Whitespace

CharNameEntityDecimalHexActions
Non-breaking Space&nbsp;&#160;&#xA0;
\tTab-&#9;&#x09;
\nLine Feed-&#10;&#x0A;

Symbol

CharNameEntityDecimalHexActions
©Copyright&copy;&#169;&#xA9;
®Registered&reg;&#174;&#xAE;
Trademark&trade;&#8482;&#x2122;
°Degree&deg;&#176;&#xB0;
±Plus-Minus&plusmn;&#177;&#xB1;
×Multiplication&times;&#215;&#xD7;
÷Division&divide;&#247;&#xF7;

Currency

CharNameEntityDecimalHexActions
¢Cent&cent;&#162;&#xA2;
£Pound&pound;&#163;&#xA3;
¥Yen&yen;&#165;&#xA5;
Euro&euro;&#8364;&#x20AC;

Punctuation

CharNameEntityDecimalHexActions
Ellipsis&hellip;&#8230;&#x2026;
En Dash&ndash;&#8211;&#x2013;
Em Dash&mdash;&#8212;&#x2014;
Left Single Quote&lsquo;&#8216;&#x2018;
Right Single Quote&rsquo;&#8217;&#x2019;
Left Double Quote&ldquo;&#8220;&#x201C;
Right Double Quote&rdquo;&#8221;&#x201D;
«Left Guillemet&laquo;&#171;&#xAB;
»Right Guillemet&raquo;&#187;&#xBB;
Bullet&bull;&#8226;&#x2022;
·Middle Dot&middot;&#183;&#xB7;

Fraction

CharNameEntityDecimalHexActions
¼One Quarter&frac14;&#188;&#xBC;
½One Half&frac12;&#189;&#xBD;
¾Three Quarters&frac34;&#190;&#xBE;

Arrow

CharNameEntityDecimalHexActions
Left Arrow&larr;&#8592;&#x2190;
Up Arrow&uarr;&#8593;&#x2191;
Right Arrow&rarr;&#8594;&#x2192;
Down Arrow&darr;&#8595;&#x2193;
Left-Right Arrow&harr;&#8596;&#x2194;

Math

CharNameEntityDecimalHexActions
Not Equal&ne;&#8800;&#x2260;
Less or Equal&le;&#8804;&#x2264;
Greater or Equal&ge;&#8805;&#x2265;
Infinity&infin;&#8734;&#x221E;
Summation&sum;&#8721;&#x2211;
Square Root&radic;&#8730;&#x221A;

Greek

CharNameEntityDecimalHexActions
αAlpha&alpha;&#945;&#x3B1;
βBeta&beta;&#946;&#x3B2;
γGamma&gamma;&#947;&#x3B3;
δDelta&delta;&#948;&#x3B4;
πPi&pi;&#960;&#x3C0;
σSigma&sigma;&#963;&#x3C3;
ΩOmega&Omega;&#937;&#x3A9;

Quick Reference

HTML Escapes

  • & → &amp;
  • < → &lt;
  • > → &gt;
  • " → &quot;

Common Symbols

  • © → &copy;
  • ® → &reg;
  • ™ → &trade;
  • € → &euro;

Arrows

  • ← → &larr;
  • → → &rarr;
  • ↑ → &uarr;
  • ↓ → &darr;

Typography

  • ... → &hellip;
  • – → &ndash;
  • — → &mdash;
  • " " → &ldquo; &rdquo;

About HTML Character Codes

A reference table of HTML character entities. Click on any character to copy it, or copy the HTML entity code. Entities can be written as named (&copy;), decimal (&#169;), or hexadecimal (&#xA9;) codes. Use these when you need to display special characters in HTML.

Related Tools