HTML Special Character Entities

A list of my most used HTML Special Character Entities, in no particular order.

See Breakout page for larger font version.

Name Num Char Description ISO as CSS content
£ £ £ pound sterling sign p:before { content:"\00a3";}
© © © copyright sign p:before { content:"\00a9";}
® ® ® registered sign p:before { content:"\00ae";}
™ ™ trade mark sign p:before { content:"\2122";}
« « « angle quotation mark, left p:before { content:"\00ab";}
» » » angle quotation mark, right p:before { content:"\00bb";}
é é é small e, acute accent p:before { content:"\00e9";}
° ° ° degree sign p:before { content:"\00b0";}
¹ ¹ ¹ superscript one p:before { content:"\00b9";}
² ² ² superscript two p:before { content:"\00b2";}
³ ³ ³ superscript three p:before { content:"\00b3";}
· · · middle dot p:before { content:"\00b7";}
• • bullet p:before { content:"\2022";}
… … horizontal ellipsis p:before { content:"\2026";}
′ ′ prime / feet p:before { content:"\2032";}
″ ″ double prime / inches p:before { content:"\2033";}
– – en dash p:before { content:"\2013";}
— — em dash p:before { content:"\2014";}
‘ ‘ left single quotation mark p:before { content:"\2018";}
’ ’ right single quotation mark p:before { content:"\2019";}
“ “ left double quotation mark p:before { content:"\201C";}
” ” right double quotation mark p:before { content:"\201D";}
‚ ‚ single low-9 quotation mark p:before { content:"\201A";}
„ „ double low-9 quotation mark p:before { content:"\201E";}
† † dagger p:before { content:"\2020";}
‡ ‡ double dagger p:before { content:"\2021";}
‰ ‰ per mille sign p:before { content:"\2030";}
‹ ‹ single left-pointing angle quotation mark p:before { content:"\2039";}
› › single right-pointing angle quotation mark p:before { content:"\203A";}
¿ ¿ ¿ inverted question mark p:before { content:"\00bf";}
× × × multiply sign p:before { content:"\00d7";}
÷ ÷ ÷ divide sign p:before { content:"\00f7";}
− − minus sign p:before { content:"\2212";}
* * * asterisk p:before { content:"\002A";}
∗ ∗ asterisk operator p:before { content:"\2217";}
¼ ¼ ¼ fraction one-quarter p:before { content:"\00bc";}
½ ½ ½ fraction one-half p:before { content:"\00bd";}
¾ ¾ ¾ fraction three-quarters p:before { content:"\00be";}
      no-break space p:before { content:"\00a0";}
" " " quotation mark p:before { content:"\0022";}
& & & ampersand p:before { content:"\0026";}
&lt; &#60; < less-than sign p:before { content:"\003c";}
&gt; &#62; > greater-than sign p:before { content:"\003e";}
&ensp; &#8194; en space p:before { content:"\2002";}
&emsp; &#8195; em space p:before { content:"\2003";}
&thinsp; &#8201; thin space p:before { content:"\2009";}
&larr; &#8592; leftwards arrow p:before { content:"\2190";}
&uarr; &#8593; upwards arrow p:before { content:"\2191";}
&rarr; &#8594; rightwards arrow p:before { content:"\2192";}
&darr; &#8595; downwards arrow p:before { content:"\2193";}
&harr; &#8596; left right arrow p:before { content:"\2194";}
&lArr; &#8656; leftwards double arrow p:before { content:"\21d0";}
&uArr; &#8657; upwards double arrow p:before { content:"\21d1";}
&rArr; &#8658; rightwards double arrow p:before { content:"\21d2";}
&dArr; &#8659; downwards double arrow p:before { content:"\d1d3";}
&hArr; &#8660; left right double arrow p:before { content:"\21d4";}
&int; &#8747; integral p:before { content:"\222b";}
&there4; &#8756; therefore p:before { content:"\2234";}
&sim; &#8764; tilde operator p:before { content:"\223c";}
&cong; &#8773; approximately equal to p:before { content:"\2245";}
&asymp; &#8776; almost equal to, a.k.a. asymptotic to p:before { content:"\2248";}
&ne; &#8800; not equal to p:before { content:"\2260";}
&equiv; &#8801; identical to p:before { content:"\2261";}
&le; &#8804; less-than or equal to p:before { content:"\2264";}
&ge; &#8805; greater-than or equal to p:before { content:"\2265";}

See also:
Unicode Codepoint Chart
List of invisible Unicode characters