Navigation
Cheat Sheets · Free Reference

HTML Entities Reference

Complete HTML character entity reference with names, numbers, and descriptions. Searchable, copyable, always up to date.

Entries
96
Sections
7
01

Essential

Characters that must be escaped in HTML to avoid breaking markup.

CharacterEntity NameEntity NumberDescription
&&&Ampersand
<&lt;&#60;Less-than sign
>&gt;&#62;Greater-than sign
"&quot;&#34;Double quotation mark
'&apos;&#39;Single quotation mark (apostrophe)
 &nbsp;&#160;Non-breaking space
02

Punctuation

Typographic punctuation marks, quotation marks, and legal symbols.

CharacterEntity NameEntity NumberDescription
©&copy;&#169;Copyright sign
®&reg;&#174;Registered trademark
™&trade;&#8482;Trademark sign
·&middot;&#183;Middle dot
•&bull;&#8226;Bullet
…&hellip;&#8230;Horizontal ellipsis
‘&lsquo;&#8216;Left single quotation mark
’&rsquo;&#8217;Right single quotation mark
“&ldquo;&#8220;Left double quotation mark
”&rdquo;&#8221;Right double quotation mark
–&ndash;&#8211;En dash
, &mdash;&#8212;Em dash
§&sect;&#167;Section sign
&para;&#182;Pilcrow (paragraph sign)
†&dagger;&#8224;Dagger
‡&Dagger;&#8225;Double dagger
03

Math & Logic

Mathematical operators, comparison signs, set theory, and logic symbols.

CharacterEntity NameEntity NumberDescription
+&plus;&#43;Plus sign
−&minus;&#8722;Minus sign
×&times;&#215;Multiplication sign
÷&divide;&#247;Division sign
=&equals;&#61;Equals sign
≠&ne;&#8800;Not equal to
<&lt;&#60;Less-than sign
>&gt;&#62;Greater-than sign
≤&le;&#8804;Less-than or equal to
≥&ge;&#8805;Greater-than or equal to
∞&infin;&#8734;Infinity
∑&sum;&#8721;Summation (sigma)
∏&prod;&#8719;Product (pi)
√&radic;&#8730;Square root
∝&prop;&#8733;Proportional to
≈&asymp;&#8776;Approximately equal to
≡&equiv;&#8801;Identical to (equivalent)
∧&and;&#8743;Logical AND
∨&or;&#8744;Logical OR
¬&not;&#172;Logical NOT
∩&cap;&#8745;Intersection
∪&cup;&#8746;Union
∈&isin;&#8712;Element of
∉&notin;&#8713;Not an element of
⊂&sub;&#8834;Subset of
⊃&sup;&#8835;Superset of
∀&forall;&#8704;For all
∃&exist;&#8707;There exists
∅&empty;&#8709;Empty set
∇&nabla;&#8711;Nabla (del)
∂&part;&#8706;Partial differential
04

Currency

Common currency symbols used in international content.

CharacterEntity NameEntity NumberDescription
$&dollar;&#36;Dollar sign
¢&cent;&#162;Cent sign
£&pound;&#163;Pound sign
€&euro;&#8364;Euro sign
¥&yen;&#165;Yen / Yuan sign
¤&curren;&#164;General currency sign
05

Arrows

Directional arrows and double arrows for navigation and flow diagrams.

CharacterEntity NameEntity NumberDescription
←&larr;&#8592;Left arrow
↑&uarr;&#8593;Up arrow
→&rarr;&#8594;Right arrow
↓&darr;&#8595;Down arrow
↔&harr;&#8596;Left-right arrow
⇐&lArr;&#8656;Left double arrow
⇒&rArr;&#8658;Right double arrow
⇔&hArr;&#8660;Left-right double arrow
06

Greek Letters

Greek alphabet characters commonly used in math, science, and engineering.

CharacterEntity NameEntity NumberDescription
Α&Alpha;&#913;Greek capital letter Alpha
α&alpha;&#945;Greek small letter alpha
Β&Beta;&#914;Greek capital letter Beta
β&beta;&#946;Greek small letter beta
Γ&Gamma;&#915;Greek capital letter Gamma
γ&gamma;&#947;Greek small letter gamma
Δ&Delta;&#916;Greek capital letter Delta
δ&delta;&#948;Greek small letter delta
Ε&Epsilon;&#917;Greek capital letter Epsilon
ε&epsilon;&#949;Greek small letter epsilon
Π&Pi;&#928;Greek capital letter Pi
π&pi;&#960;Greek small letter pi
Σ&Sigma;&#931;Greek capital letter Sigma
σ&sigma;&#963;Greek small letter sigma
Ω&Omega;&#937;Greek capital letter Omega
ω&omega;&#969;Greek small letter omega
Θ&Theta;&#920;Greek capital letter Theta
θ&theta;&#952;Greek small letter theta
Λ&Lambda;&#923;Greek capital letter Lambda
λ&lambda;&#955;Greek small letter lambda
Μ&Mu;&#924;Greek capital letter Mu
μ&mu;&#956;Greek small letter mu
07

Miscellaneous

Card suits, check marks, stars, and other commonly used symbols.

CharacterEntity NameEntity NumberDescription
♥&hearts;&#9829;Black heart suit
♦&diams;&#9830;Black diamond suit
♣&clubs;&#9827;Black club suit
♠&spades;&#9824;Black spade suit
✓&check;&#10003;Check mark
✗&cross;&#10007;Ballot X (cross mark)
★&star;&#9733;Black star

Frequently Asked Questions

HTML entities are special codes used to display reserved or invisible characters in HTML. Characters like <, >, &, and " have special meaning in HTML markup, so you must use their entity equivalents to display them as literal text on a web page. Entities also let you insert symbols not found on a standard keyboard, such as copyright signs, arrows, and mathematical operators.

Entity names (like &amp;) are human-readable aliases, while entity numbers (like &#38;) use the Unicode code point. Entity numbers are supported by all browsers and cover every Unicode character. Entity names are easier to remember but only a subset of characters have named entities. Both produce the same rendered output.

Cross-site scripting (XSS) attacks inject malicious scripts via user input. By encoding special HTML characters, replacing < with &lt;, > with &gt;, & with &amp;, and " with &quot;, you prevent browsers from interpreting user input as executable markup. This output encoding is a fundamental layer of XSS defense alongside input validation and Content Security Policy headers.