# HTML Entities Cheatsheet — Symbols, Math, Arrows & More

> Common HTML entities with entity names, numeric codes, and rendered characters. Covers symbols, math operators, arrows, currency, accented characters, and special punctuation.

- URL: https://www.browserutils.dev/cheatsheets/html-entities
- Published: 2026-03-21
- Updated: 2026-03-16

---

HTML entities are codes used to display reserved characters or symbols that cannot be typed directly. Every entity has a numeric form (`&#number;`) and most have a named form (`&name;`). Use these when you need special characters in HTML that might otherwise be interpreted as code.

## Essential Reserved Characters

These characters have special meaning in HTML and must be escaped.

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| `<` | `&lt;` | `&#60;` | Less than |
| `>` | `&gt;` | `&#62;` | Greater than |
| `&` | `&amp;` | `&#38;` | Ampersand |
| `"` | `&quot;` | `&#34;` | Double quote |
| `'` | `&apos;` | `&#39;` | Single quote / apostrophe |

## Common Symbols

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| &nbsp; | `&nbsp;` | `&#160;` | Non-breaking space |
| &copy; | `&copy;` | `&#169;` | Copyright |
| &reg; | `&reg;` | `&#174;` | Registered trademark |
| &trade; | `&trade;` | `&#8482;` | Trademark |
| &sect; | `&sect;` | `&#167;` | Section sign |
| &para; | `&para;` | `&#182;` | Paragraph sign |
| &deg; | `&deg;` | `&#176;` | Degree |
| &middot; | `&middot;` | `&#183;` | Middle dot |
| &bull; | `&bull;` | `&#8226;` | Bullet |
| &hellip; | `&hellip;` | `&#8230;` | Horizontal ellipsis |
| &laquo; | `&laquo;` | `&#171;` | Left guillemet |
| &raquo; | `&raquo;` | `&#187;` | Right guillemet |
| &dagger; | `&dagger;` | `&#8224;` | Dagger |
| &Dagger; | `&Dagger;` | `&#8225;` | Double dagger |
| &permil; | `&permil;` | `&#8240;` | Per mille |

## Quotation Marks and Dashes

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| &lsquo; | `&lsquo;` | `&#8216;` | Left single quote |
| &rsquo; | `&rsquo;` | `&#8217;` | Right single quote / apostrophe |
| &ldquo; | `&ldquo;` | `&#8220;` | Left double quote |
| &rdquo; | `&rdquo;` | `&#8221;` | Right double quote |
| &ndash; | `&ndash;` | `&#8211;` | En dash (ranges: 1-10) |
| &mdash; | `&mdash;` | `&#8212;` | Em dash (parenthetical) |
| &minus; | `&minus;` | `&#8722;` | Minus sign |
| &shy; | `&shy;` | `&#173;` | Soft hyphen |

## Currency Symbols

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| &dollar; | `&dollar;` | `&#36;` | Dollar |
| &euro; | `&euro;` | `&#8364;` | Euro |
| &pound; | `&pound;` | `&#163;` | Pound sterling |
| &yen; | `&yen;` | `&#165;` | Yen / Yuan |
| &cent; | `&cent;` | `&#162;` | Cent |
| &curren; | `&curren;` | `&#164;` | General currency |
| &#8377; | — | `&#8377;` | Indian Rupee |
| &#8369; | — | `&#8369;` | Philippine Peso |
| &#8361; | — | `&#8361;` | Korean Won |
| &#8382; | — | `&#8382;` | Georgian Lari |

## Math Operators

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| &plus; | `&plus;` | `&#43;` | Plus |
| &minus; | `&minus;` | `&#8722;` | Minus |
| &times; | `&times;` | `&#215;` | Multiplication |
| &divide; | `&divide;` | `&#247;` | Division |
| &equals; | `&equals;` | `&#61;` | Equals |
| &ne; | `&ne;` | `&#8800;` | Not equal |
| &lt; | `&lt;` | `&#60;` | Less than |
| &gt; | `&gt;` | `&#62;` | Greater than |
| &le; | `&le;` | `&#8804;` | Less than or equal |
| &ge; | `&ge;` | `&#8806;` | Greater than or equal |
| &plusmn; | `&plusmn;` | `&#177;` | Plus-minus |
| &sup2; | `&sup2;` | `&#178;` | Superscript 2 (squared) |
| &sup3; | `&sup3;` | `&#179;` | Superscript 3 (cubed) |
| &frac12; | `&frac12;` | `&#189;` | One half |
| &frac14; | `&frac14;` | `&#188;` | One quarter |
| &frac34; | `&frac34;` | `&#190;` | Three quarters |
| &infin; | `&infin;` | `&#8734;` | Infinity |
| &sum; | `&sum;` | `&#8721;` | Summation |
| &prod; | `&prod;` | `&#8719;` | Product |
| &radic; | `&radic;` | `&#8730;` | Square root |
| &int; | `&int;` | `&#8747;` | Integral |
| &fnof; | `&fnof;` | `&#402;` | Function (italic f) |
| &part; | `&part;` | `&#8706;` | Partial differential |
| &nabla; | `&nabla;` | `&#8711;` | Nabla / Del |
| &empty; | `&empty;` | `&#8709;` | Empty set |
| &isin; | `&isin;` | `&#8712;` | Element of |
| &notin; | `&notin;` | `&#8713;` | Not element of |
| &sub; | `&sub;` | `&#8834;` | Subset |
| &sup; | `&sup;` | `&#8835;` | Superset |
| &cap; | `&cap;` | `&#8745;` | Intersection |
| &cup; | `&cup;` | `&#8746;` | Union |
| &and; | `&and;` | `&#8743;` | Logical AND |
| &or; | `&or;` | `&#8744;` | Logical OR |
| &there4; | `&there4;` | `&#8756;` | Therefore |
| &sim; | `&sim;` | `&#8764;` | Tilde / similar to |
| &asymp; | `&asymp;` | `&#8776;` | Approximately equal |

## Arrows

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| &larr; | `&larr;` | `&#8592;` | Left arrow |
| &uarr; | `&uarr;` | `&#8593;` | Up arrow |
| &rarr; | `&rarr;` | `&#8594;` | Right arrow |
| &darr; | `&darr;` | `&#8595;` | Down arrow |
| &harr; | `&harr;` | `&#8596;` | Left-right arrow |
| &lArr; | `&lArr;` | `&#8656;` | Left double arrow |
| &rArr; | `&rArr;` | `&#8658;` | Right double arrow |
| &hArr; | `&hArr;` | `&#8660;` | Left-right double arrow |
| &crarr; | `&crarr;` | `&#8629;` | Carriage return arrow |

## Accented Characters (Common)

| Character | Entity Name | Entity Number | Description |
|-----------|-------------|---------------|-------------|
| &Agrave; | `&Agrave;` | `&#192;` | A grave |
| &Aacute; | `&Aacute;` | `&#193;` | A acute |
| &Acirc; | `&Acirc;` | `&#194;` | A circumflex |
| &Atilde; | `&Atilde;` | `&#195;` | A tilde |
| &Auml; | `&Auml;` | `&#196;` | A umlaut |
| &Ccedil; | `&Ccedil;` | `&#199;` | C cedilla |
| &Egrave; | `&Egrave;` | `&#200;` | E grave |
| &Eacute; | `&Eacute;` | `&#201;` | E acute |
| &Ntilde; | `&Ntilde;` | `&#209;` | N tilde |
| &Ouml; | `&Ouml;` | `&#214;` | O umlaut |
| &Uuml; | `&Uuml;` | `&#220;` | U umlaut |
| &szlig; | `&szlig;` | `&#223;` | Sharp s (German) |
| &agrave; | `&agrave;` | `&#224;` | a grave |
| &aacute; | `&aacute;` | `&#225;` | a acute |
| &eacute; | `&eacute;` | `&#233;` | e acute |
| &ntilde; | `&ntilde;` | `&#241;` | n tilde |
| &ouml; | `&ouml;` | `&#246;` | o umlaut |
| &uuml; | `&uuml;` | `&#252;` | u umlaut |

## Greek Letters (Common)

| Character | Entity Name | Entity Number |
|-----------|-------------|---------------|
| &Alpha; / &alpha; | `&Alpha;` / `&alpha;` | `&#913;` / `&#945;` |
| &Beta; / &beta; | `&Beta;` / `&beta;` | `&#914;` / `&#946;` |
| &Gamma; / &gamma; | `&Gamma;` / `&gamma;` | `&#915;` / `&#947;` |
| &Delta; / &delta; | `&Delta;` / `&delta;` | `&#916;` / `&#948;` |
| &Pi; / &pi; | `&Pi;` / `&pi;` | `&#928;` / `&#960;` |
| &Sigma; / &sigma; | `&Sigma;` / `&sigma;` | `&#931;` / `&#963;` |
| &Omega; / &omega; | `&Omega;` / `&omega;` | `&#937;` / `&#969;` |
| &Theta; / &theta; | `&Theta;` / `&theta;` | `&#920;` / `&#952;` |
| &Lambda; / &lambda; | `&Lambda;` / `&lambda;` | `&#923;` / `&#955;` |
| &Phi; / &phi; | `&Phi;` / `&phi;` | `&#934;` / `&#966;` |

Look up any entity with the [HTML Entities Reference](/tools/html-entities-reference) tool, or encode/decode HTML with [HTML Encode/Decode](/tools/html-encode-decode).