HTML Special Characters

It is sometimes necessary to encode characters in HTML code. The most obvious reason to do this is because some characters are "reserved" for use in the HTML language. These reserved characters are: ampersand (&), quotation mark ("), less than symbol (<) and greater than symbol (>).

Some characters cause problems when they are part of a URL or email address and some characters do not appear on the keyboard. Another reason to encode characters is to provide a low-level of security from spammers and content harvesters who might not go to the effort of converting encoded characters back to text.

Characters can be encoded into an HTML page in two ways -- using "entities" or using their numeric ISO code. Entities are abbreviated names for the character which are preceded by an ampersand and followed by a semicolon. Be careful, entity names are case sensitive. (The entity for the quotation mark is &quot; for example and it can also be represented by its ISO code &#35;.) The ISO Latin codes can be expressed in either decimal or hexadecimal.

When a browser requests a web page, it sends the URL for that page to the web server, but they can only be sent over the Internet using the ASCII character set. Since URLs often contain characters outside the ASCII set, the URL has to be converted. URL encoding converts the URL into a valid ASCII format using a percent sign followed by the ASCII representation of the hex value of the character. The "esc URL" column below shows the codes to use in URLs (links) and email addresses.

Here is an example of using the ISO codes to obfuscate text. Place this code in HTML source code and view it with your browser:
&#72;&#101;&#108;&#108;&#111;&#32;&#119;&#111;&#114;&#108;&#100;
(you should see "Hello world".)

The characters below numbered 0 through 255 (FF hex) are from the ISO-8859-1 character set, also known as the Latin-1 character set. This is the default character set for most browsers when a character set is not defined. (Early character encoding was known as ASCII and was made up of 128 characters (0-FF hex). These characters were incorporated into the later Latin-1 / ISO-8859-1 character set.) (For reference, also see the Windows-1252 character set.)

The columns in the table below are:

character, name, decimal value, hexadecimal value, URL escape code, ISO Latin code in decimal and hex, the html entity code and the type or category of the character.

char name dec hex esc URL
(hex)
ISO Latin-1
code
decimal
ISO Latin-1
code
hex
html entity type
  carriage return 10 0A %0A; &#10; &#x0A;   ASCII control
  line feed 13 0D %0D; &#13; &#x0D;   ASCII control
  space 32 20 %20; &#32; &#x20;   ASCII
! exclamation mark 33 21 %21; &#33; &#x21;    
" quotation mark 34 22 %22; &#34; &#x22; &quot; Reserved
# octothorpe (pound sign) 35 23 %23; &#35; &#x23;    
$ dollar sign 36 24 %24; &#36; &#x24;    
% percent sign 37 25 %25; &#37; &#x25;    
& ampersand 38 26 %26; &#38; &#x26; &amp; Reserved
' apostrophe 39 27 %27; &#39; &#x27;   Reserved
( left parentheses 40 28 %28; &#40; &#x28;    
) right parentheses 41 29 %29; &#41; &#x29;    
* asterisk 42 2A %2A; &#42; &#x2A;    
+ plus 43 2B %2B; &#43; &#x2B;    
, comma 44 2C %2C; &#44; &#x2C;    
- hyphen 45 2D %2D; &#45; &#x2D;    
. period 46 2E %2E; &#46; &#x2E;    
/ solidus (forward slash) 47 2F %2F; &#47; &#x2F;    
0   48 30 %30; &#48; &#x30;    
1   49 31 %31; &#49; &#x31;    
2   50 32 %32; &#50; &#x32;    
3   51 33 %33; &#51; &#x33;    
4   52 34 %34; &#52; &#x34;    
5   53 35 %35; &#53; &#x35;    
6   54 36 %36; &#54; &#x36;    
7   55 37 %37; &#55; &#x37;    
8   56 38 %38; &#56; &#x38;    
9   57 39 %39; &#57; &#x39;    
: colon 58 3A %3A; &#58; &#x3A;    
; semicolon 59 3B %3B; &#59; &#x3B;    
< less than 60 3C %3C; &#60; &#x3C; &lt; Reserved
= equal 61 3D %3D; &#61; &#x3D;    
> greater than 62 3E %3E; &#62; &#x3E; &gt; Reserved
? question mark 63 3F %3F; &#63; &#x3F;    
@ commercial at 64 40 %40; &#64; &#x40;    
A   65 41 %41; &#65; &#x41;    
B   66 42 %42; &#66; &#x42;    
C   67 43 %43; &#67; &#x43;    
D   68 44 %44; &#68; &#x44;    
E   69 45 %45; &#69; &#x45;    
F   70 46 %46; &#70; &#x46;    
G   71 47 %47; &#71; &#x47;    
H   72 48 %48; &#72; &#x48;    
I   73 49 %49; &#73; &#x49;    
J   74 4A %4A; &#74; &#x4A;    
K   75 4B %4B; &#75; &#x4B;    
L   76 4C %4C; &#76; &#x4C;    
M   77 4D %4D; &#77; &#x4D;    
N   78 4E %4E; &#78; &#x4E;    
O   79 4F %4F; &#79; &#x4F;    
P   80 50 %50; &#80; &#x50;    
Q   81 51 %51; &#81; &#x51;    
R   82 52 %52; &#82; &#x52;    
S   83 53 %53; &#83; &#x53;    
T   84 54 %54; &#84; &#x54;    
U   85 55 %55; &#85; &#x55;    
V   86 56 %56; &#86; &#x56;    
W   87 57 %57; &#87; &#x57;    
X   88 58 %58; &#88; &#x58;    
Y   89 59 %59; &#89; &#x59;    
Z   90 5A %5A; &#90; &#x5A;    
[ left square bracket 91 5B %5B; &#91; &#x5B;    
\ back solidus (back slash) 92 5C %5C; &#92; &#x5C;    
] right square bracket 93 5D %5D; &#93; &#x5D;    
^ caret 94 5E %5E; &#94; &#x5E;    
_ underscore 95 5F %5F; &#95; &#x5F;    
` grave accent/back apostrophe 96 60 %60; &#96; &#x60;    
a   97 61 %61; &#97; &#x61;    
b   98 62 %62; &#98; &#x62;    
c   99 63 %63; &#99; &#x63;    
d   100 64 %64; &#100; &#x64;    
e   101 65 %65; &#101; &#x65;    
f   102 66 %66; &#102; &#x66;    
g   103 67 %67; &#103; &#x67;    
h   104 68 %68; &#104; &#x68;    
i   105 69 %69; &#105; &#x69;    
j   106 6A %6A; &#106; &#x6A;    
k   107 6B %6B; &#107; &#x6B;    
l   108 6C %6C; &#108; &#x6C;    
m   109 6D %6D; &#109; &#x6D;    
n   110 6E %6E; &#110; &#x6E;    
o   111 6F %6F; &#111; &#x6F;    
p   112 70 %70; &#112; &#x70;    
q   113 71 %71; &#113; &#x71;    
r   114 72 %72; &#114; &#x72;    
s   115 73 %73; &#115; &#x73;    
t   116 74 %74; &#116; &#x74;    
u   117 75 %75; &#117; &#x75;    
v   118 76 %76; &#118; &#x76;    
w   119 77 %77; &#119; &#x77;    
x   120 78 %78; &#120; &#x78;    
y   121 79 %79; &#121; &#x79;    
z   122 7A %7A; &#122; &#x7A;    
{ left curly brace 123 7B %7B; &#123; &#x7B;    
| vertical bar 124 7C %7C; &#124; &#x7C;    
} right curly brace 125 7D %7D; &#125; &#x7D;    
˜ tilde 126 7E %7E; &#126; &#x7E; &tilde;  
  delete 127 7F %7F; &#127; &#x7F;    
  128 80 %80; &#128; &#x80;    
    129 81 %81; &#129; &#x81;    
  130 82 %82; &#130; &#x82;    
ƒ   131 83 %83; &#131; &#x83;    
  132 84 %84; &#132; &#x84;    
ellipsis 133 85 %85; &#133; &#x85;    
dagger 134 86 %86; &#134; &#x86;    
double dagger 135 87 %87; &#135; &#x87;    
ˆ   136 88 %88; &#136; &#x88;    
  137 89 %89; &#137; &#x89;    
Š   138 8A %8A; &#138; &#x8A;    
  139 8B %8B; &#139; &#x8B;    
Œ   140 8C %8C; &#140; &#x8C;    
    141 8D %8D; &#141; &#x8D;    
Ž   142 8E %8E; &#142; &#x8E;    
    143 8F %8F; &#143; &#x8F;    
    144 90 %90; &#144; &#x90;    
left single quote 145 91 %91; &#145; &#x91;    
right single quote 146 92 %92; &#146; &#x92;    
left double quote 147 93 %93; &#147; &#x93;    
right double quote 148 94 %94; &#148; &#x94;    
bullet 149 95 %95; &#149; &#x95;    
en dash 150 96 %96; &#150; &#x96;    
em dash 151 97 %97; &#151; &#x97;    
˜   152 98 %98; &#152; &#x98;    
trademark 153 99 %99; &#153; &#x99; &trade;  
š   154 9A %9A; &#154; &#x9A;    
  155 9B %9B; &#155; &#x9B;    
œ   156 9C %9C; &#156; &#x9C;    
    157 9D %9D; &#157; &#x9D;    
ž   158 9E %9E; &#158; &#x9E;    
Ÿ   159 9F %9F; &#159; &#x9F;    
  non-breaking space 160 A0 %A0; &#160; &#xA0; &nbsp;  
¡ inverted exclamation 161 A1 %A1; &#161; &#xA1; &iexcl;  
¢ cent sign 162 A2 %A2; &#162; &#xA2; &cent;  
£ pound 163 A3 %A3; &#163; &#xA3; &pound;  
¤ general currency 164 A4 %A4; &#164; &#xA4; &curren;  
¥ yen 165 A5 %A5; &#165; &#xA5; &yen;  
¦ broken vertical bar 166 A6 %A6; &#166; &#xA6; &brvbar;  
§ section 167 A7 %A7; &#167; &#xA7; &sect;  
¨ dieresis 168 A8 %A8; &#168; &#xA8; &uml;  
© copyright 169 A9 %A9; &#169; &#xA9; &copy;  
ª feminine ordinal 170 AA %AA; &#170; &#xAA; &ordf;  
« left guillemets (angle quotes) 171 AB %AB; &#171; &#xAB; &laquo;  
¬ logical not 172 AC %AC; &#172; &#xAC; &not;  
­ soft hyphen 173 AD %AD; &#173; &#xAD; &shy;  
® registered trademark 174 AE %AE; &#174; &#xAE; &reg;  
¯ macron 175 AF %AF; &#175; &#xAF; &macr;  
° degree 176 B0 %B0; &#176; &#xB0; &deg;  
± plus/minus 177 B1 %B1; &#177; &#xB1; &plusmn;  
² superscript 2 178 B2 %B2; &#178; &#xB2; &sup2;  
³ superscript 3 179 B3 %B3; &#179; &#xB3; &sup3;  
´ acute accent 180 B4 %B4; &#180; &#xB4; &acute;  
µ mu (micro) 181 B5 %B5; &#181; &#xB5; &micro;  
pilcrow (paragraph mark) 182 B6 %B6; &#182; &#xB6; &para;  
· middle dot 183 B7 %B7; &#183; &#xB7; &middot;  
¸ cedilla 184 B8 %B8; &#184; &#xB8; &cedil;  
¹ superscript 1 185 B9 %B9; &#185; &#xB9; &sup1;  
º masculine ordinal 186 BA %BA; &#186; &#xBA; &ordm;  
» right guillemets (angle quotes) 187 BB %BB; &#187; &#xBB; &raquo;  
¼ 1/4 188 BC %BC; &#188; &#xBC; &frac14;  
½ 1/2 189 BD %BD; &#189; &#xBD; &frac12;  
¾ 3/4 190 BE %BE; &#190; &#xBE; &frac34;  
¿ inverted question mark 191 BF %BF; &#191; &#xBF; &iquest;  
À upper-case "A" with grave accent 192 C0 %C0; &#192; &#xC0; &Agrave;  
Á upper-case "A" with acute accent 193 C1 %C1; &#193; &#xC1; &Aacute;  
 upper-case "A" with circumflex 194 C2 %C2; &#194; &#xC2; &Acirc;  
à upper-case "A" with tilde 195 C3 %C3; &#195; &#xC3; &Atilde;  
Ä upper-case "A" with diaeresis/umlaut 196 C4 %C4; &#196; &#xC4; &Auml;  
Å upper-case "A" with ring 197 C5 %C5; &#197; &#xC5; &Aring;  
Æ upper-case "AE" ligature 198 C6 %C6; &#198; &#xC6; &AElig;  
Ç upper-case "C" with cedilla 199 C7 %C7; &#199; &#xC7; &Ccedil;  
È upper-case "E" with grave accent 200 C8 %C8; &#200; &#xC8; &Egrave;  
É upper-case "E" with acute accent 201 C9 %C9; &#201; &#xC9; &Eacute;  
Ê upper-case "E" with circumflex 202 CA %CA; &#202; &#xCA; &Ecirc;  
Ë upper-case "E" with diaeresis/umlaut 203 CB %CB; &#203; &#xCB; &Euml;  
Ì upper-case "I" with grave accent 204 CC %CC; &#204; &#xCC; &Igrave;  
Í upper-case "I" with acute accent 205 CD %CD; &#205; &#xCD; &Iacute;  
Î upper-case "I" with circumflex 206 CE %CE; &#206; &#xCE; &Icirc;  
Ï upper-case "I" with diaeresis/umlaut 207 CF %CF; &#207; &#xCF; &Iuml;  
Ð uppercase Eth 208 D0 %D0; &#208; &#xD0; &ETH;  
Ñ upper-case "N" with tilde 209 D1 %D1; &#209; &#xD1; &Ntilde;  
Ò upper-case "O" with grave accent 210 D2 %D2; &#210; &#xD2; &Ograve;  
Ó upper-case "O" with acute accent 211 D3 %D3; &#211; &#xD3; &Oacute;  
Ô upper-case "O" with circumflex 212 D4 %D4; &#212; &#xD4; &Ocirc;  
Õ upper-case "O" with tilde 213 D5 %D5; &#213; &#xD5; &Otilde;  
Ö upper-case "O" with diaeresis/umlaut 214 D6 %D6; &#214; &#xD6; &Ouml;  
× multiply sign 215 D7 %D7; &#215; &#xD7; &times;  
Ø upper-case "O" with slash 216 D8 %D8; &#216; &#xD8; &Oslash;  
Ù upper-case "U" with grave accent 217 D9 %D9; &#217; &#xD9; &Ugrave;  
Ú upper-case "U" with acute accent 218 DA %DA; &#218; &#xDA; &Uacute;  
Û upper-case "U" with circumflex 219 DB %DB; &#219; &#xDB; &Ucirc;  
Ü upper-case "U" with diaeresis/umlaut 220 DC %DC; &#220; &#xDC; &Uuml;  
Ý capital Y, acute accent 221 DD %DD; &#221; &#xDD; &Yacute;  
Þ capital Thorn 222 DE %DE; &#222; &#xDE; &THORN;  
ß ess-tsett 223 DF %DF; &#223; &#xDF; &szlig;  
à lower-case "a" with grave accent 224 E0 %E0; &#224; &#xE0; &agrave;  
á lower-case "a" with acute accent 225 E1 %E1; &#225; &#xE1; &aacute;  
â lower-case "a" with circumflex 226 E2 %E2; &#226; &#xE2; &acirc;  
ã lower-case "a" with tilde 227 E3 %E3; &#227; &#xE3; &atilde;  
ä lower-case "a" with diaeresis/umlaut 228 E4 %E4; &#228; &#xE4; &auml;  
å lower-case "a" with ring 229 E5 %E5; &#229; &#xE5; &aring;  
æ lower-case "ae" ligature 230 E6 %E6; &#230; &#xE6; &aelig;  
ç lower-case "c" with cedilla 231 E7 %E7; &#231; &#xE7; &ccedil;  
è lower-case "e" with grave accent 232 E8 %E8; &#232; &#xE8; &egrave;  
é lower-case "e" with acute accent 233 E9 %E9; &#233; &#xE9; &eacute;  
ê lower-case "e" with circumflex 234 EA %EA; &#234; &#xEA; &ecirc;  
ë lower-case "e" with diaeresis/umlaut 235 EB %EB; &#235; &#xEB; &euml;  
ì lower-case "i" with grave accent 236 EC %EC; &#236; &#xEC; &igrave;  
í lower-case "i" with acute accent 237 ED %ED; &#237; &#xED; &iacute;  
î lower-case "i" with circumflex 238 EE %EE; &#238; &#xEE; &icirc;  
ï lower-case "i" with diaeresis/umlaut 239 EF %EF; &#239; &#xEF; &iuml;  
ð lowercase eth 240 F0 %F0; &#240; &#xF0; &eth;  
ñ lower-case "n" with tilde 241 F1 %F1; &#241; &#xF1; &ntilde;  
ò lower-case "o" with grave accent 242 F2 %F2; &#242; &#xF2; &ograve;  
ó lower-case "o" with acute accent 243 F3 %F3; &#243; &#xF3; &oacute;  
ô lower-case "o" with circumflex 244 F4 %F4; &#244; &#xF4; &ocirc;  
õ lower-case "o" with tilde 245 F5 %F5; &#245; &#xF5; &otilde;  
ö lower-case "o" with diaeresis/umlaut 246 F6 %F6; &#246; &#xF6; &ouml;  
÷ division sign 247 F7 %F7; &#247; &#xF7; &divide;  
ø lower-case "o" with slash 248 F8 %F8; &#248; &#xF8; &oslash;  
ù lower-case "u" with grave accent 249 F9 %F9; &#249; &#xF9; &ugrave;  
ú lower-case "u" with acute accent 250 FA %FA; &#250; &#xFA; &uacute;  
û lower-case "u" with circumflex 251 FB %FB; &#251; &#xFB; &ucirc;  
ü lower-case "u" with diaeresis/umlaut 252 FC %FC; &#252; &#xFC; &uuml;  
ý lowercase y, acute accent 253 FD %FD; &#253; &#xFD; &yacute;  
þ lowercase thorn 254 FE %FE; &#254; &#xFE; &thorn;  
ÿ lower-case "y" with diaeresis/umlaut 255 FF %FF; &#255; &#xFF; &yuml;  
Œ capital ligature OE 338 152 %152; &#338; &#x152; &OElig; Other
œ small ligature oe 339 153 %153; &#339; &#x153; &oelig; Other
Š capital S with caron 352 160 %160; &#352; &#x160; &Scaron; Other
š small S with caron 353 161 %161; &#353; &#x161; &scaron; Other
Ÿ capital Y with diaeres 376 178 %178; &#376; &#x178; &Yuml; Other
ƒ f with hook 402 192 %192; &#402; &#x192; &fnof; Other
ˆ modifier letter circumflex accent 710 2C6 %2C6; &#710; &#x2C6; &circ; Other
˜ small tilde 732 2DC %2DC; &#732; &#x2DC; &tilde; Other
Α Alpha 913 391 %391; &#913; &#x391; &Alpha; Greek Letters
Β Beta 914 392 %392; &#914; &#x392; &Beta; Greek Letters
Γ Gamma 915 393 %393; &#915; &#x393; &Gamma; Greek Letters
Δ Delta 916 394 %394; &#916; &#x394; &Delta; Greek Letters
Ε Epsilon 917 395 %395; &#917; &#x395; &Epsilon; Greek Letters
Ζ Zeta 918 396 %396; &#918; &#x396; &Zeta; Greek Letters
Η Eta 919 397 %397; &#919; &#x397; &Eta; Greek Letters
Θ Theta 920 398 %398; &#920; &#x398; &Theta; Greek Letters
Ι Iota 921 399 %399; &#921; &#x399; &Iota; Greek Letters
Κ Kappa 922 39A %39A; &#922; &#x39A; &Kappa; Greek Letters
Λ Lambda 923 39B %39B; &#923; &#x39B; &Lambda; Greek Letters
Μ Mu 924 39C %39C; &#924; &#x39C; &Mu; Greek Letters
Ν Nu 925 39D %39D; &#925; &#x39D; &Nu; Greek Letters
Ξ Xi 926 39E %39E; &#926; &#x39E; &Xi; Greek Letters
Ο Omicron 927 39F %39F; &#927; &#x39F; &Omicron; Greek Letters
Π Pi 928 3A0 %3A0; &#928; &#x3A0; &Pi; Greek Letters
Ρ Rho 929 3A1 %3A1; &#929; &#x3A1; &Rho; Greek Letters
Σ Sigma 931 3A3 %3A3; &#931; &#x3A3; &Sigma; Greek Letters
Τ Tau 932 3A4 %3A4; &#932; &#x3A4; &Tau; Greek Letters
Υ Upsilon 933 3A5 %3A5; &#933; &#x3A5; &Upsilon; Greek Letters
Φ Phi 934 3A6 %3A6; &#934; &#x3A6; &Phi; Greek Letters
Χ Chi 935 3A7 %3A7; &#935; &#x3A7; &Chi; Greek Letters
Ψ Psi 936 3A8 %3A8; &#936; &#x3A8; &Psi; Greek Letters
Ω Omega 937 3A9 %3A9; &#937; &#x3A9; &Omega; Greek Letters
α alpha 945 3B1 %3B1; &#945; &#x3B1; &alpha; Greek Letters
β beta 946 3B2 %3B2; &#946; &#x3B2; &beta; Greek Letters
γ gamma 947 3B3 %3B3; &#947; &#x3B3; &gamma; Greek Letters
δ delta 948 3B4 %3B4; &#948; &#x3B4; &delta; Greek Letters
ε epsilon 949 3B5 %3B5; &#949; &#x3B5; &epsilon; Greek Letters
ζ zeta 950 3B6 %3B6; &#950; &#x3B6; &zeta; Greek Letters
η eta 951 3B7 %3B7; &#951; &#x3B7; &eta; Greek Letters
θ theta 952 3B8 %3B8; &#952; &#x3B8; &theta; Greek Letters
ι iota 953 3B9 %3B9; &#953; &#x3B9; &iota; Greek Letters
κ kappa 954 3BA %3BA; &#954; &#x3BA; &kappa; Greek Letters
λ lambda 955 3BB %3BB; &#955; &#x3BB; &lambda; Greek Letters
μ mu 956 3BC %3BC; &#956; &#x3BC; &mu; Greek Letters
ν nu 957 3BD %3BD; &#957; &#x3BD; &nu; Greek Letters
ξ xi 958 3BE %3BE; &#958; &#x3BE; &xi; Greek Letters
ο omicron 959 3BF %3BF; &#959; &#x3BF; &omicron; Greek Letters
π pi 960 3C0 %3C0; &#960; &#x3C0; &pi; Greek Letters
ρ rho 961 3C1 %3C1; &#961; &#x3C1; &rho; Greek Letters
ς sigmaf 962 3C2 %3C2; &#962; &#x3C2;   Greek Letters
σ sigma 963 3C3 %3C3; &#963; &#x3C3; &sigma; Greek Letters
τ tau 964 3C4 %3C4; &#964; &#x3C4; &tau; Greek Letters
υ upsilon 965 3C5 %3C5; &#965; &#x3C5; &upsilon; Greek Letters
φ phi 966 3C6 %3C6; &#966; &#x3C6; &phi; Greek Letters
χ chi 967 3C7 %3C7; &#967; &#x3C7; &chi; Greek Letters
ψ psi 968 3C8 %3C8; &#968; &#x3C8; &psi; Greek Letters
ω omega 969 3C9 %3C9; &#969; &#x3C9; &omega; Greek Letters
ϑ theta symbol 977 3D1 %3D1; &#977; &#x3D1; &thetasym; Greek Letters
ϒ upsilon symbol 978 3D2 %3D2; &#978; &#x3D2; &upsih; Greek Letters
ϖ pi symbol 982 3D6 %3D6; &#982; &#x3D6; &piv; Greek Letters
en space 8194 2002 %2002; &#8194; &#x2002; &ensp; Other
em space 8195 2003 %2003; &#8195; &#x2003; &emsp; Other
thin space 8201 2009 %2009; &#8201; &#x2009; &thinsp; Other
zero width non-joiner 8204 200C %200C; &#8204; &#x200C; &zwnj; Other
zero width joiner 8205 200D %200D; &#8205; &#x200D; &zwj; Other
left-to-right mark 8206 200E %200E; &#8206; &#x200E; &lrm; Other
right-to-left mark 8207 200F %200F; &#8207; &#x200F; &rlm; Other
en dash 8211 2013 %2013; &#8211; &#x2013; &ndash;  
em dash 8212 2014 %2014; &#8212; &#x2014; &mdash;  
left single curly quote 8216 2018 %2018; &#8216; &#x2018; &lsquo;  
right single curly quote 8217 2019 %2019; &#8217; &#x2019; &rsquo;  
single low-9 quotation mark 8218 201A %201A; &#8218; &#x201A; &sbquo; Other
left double curly quote 8220 201C %201C; &#8220; &#x201C; &ldquo;  
right double curly quote 8221 201D %201D; &#8221; &#x201D; &rdquo;  
double low-9 quotation mark 8222 201E %201E; &#8222; &#x201E; &bdquo; Other
dagger 8224 2020 %2020; &#8224; &#x2020; &dagger; Other
double dagger 8225 2021 %2021; &#8225; &#x2021; &Dagger; Other
bullet 8226 2022 %2022; &#8226; &#x2022; &bull; Other
horizontal ellipsis 8230 2026 %2026; &#8230; &#x2026; &hellip; Other
per mille 8240 2030 %2030; &#8240; &#x2030; &permil; Other
minutes 8242 2032 %2032; &#8242; &#x2032; &prime; Other
seconds 8243 2033 %2033; &#8243; &#x2033; &Prime; Other
single left angle quotation 8249 2039 %2039; &#8249; &#x2039; &lsaquo; Other
single right angle quotation 8250 203A %203A; &#8250; &#x203A; &rsaquo; Other
overline 8254 203E %203E; &#8254; &#x203E; &oline; Other
Euro 8364 20AC %20AC; &#8364; &#x20AC; &euro;  
trademark 8482 2122 %2122; &#8482; &#x2122; &trade; Other
left arrow 8592 2190 %2190; &#8592; &#x2190; &larr; Other
up arrow 8593 2191 %2191; &#8593; &#x2191; &uarr; Other
right arrow 8594 2192 %2192; &#8594; &#x2192; &rarr; Other
down arrow 8595 2193 %2193; &#8595; &#x2193; &darr; Other
left right arrow 8596 2194 %2194; &#8596; &#x2194; &harr; Other
carriage return arrow 8629 21B5 %21B5; &#8629; &#x21B5; &crarr; Other
for all 8704 2200 %2200; &#8704; &#x2200; &forall; Math Symbols
part 8706 2202 %2202; &#8706; &#x2202; &part; Math Symbols
exists 8707 2203 %2203; &#8707; &#x2203; &exist; Math Symbols
empty 8709 2205 %2205; &#8709; &#x2205; &empty; Math Symbols
nabla 8711 2207 %2207; &#8711; &#x2207; &nabla; Math Symbols
isin 8712 2208 %2208; &#8712; &#x2208; &isin; Math Symbols
notin 8713 2209 %2209; &#8713; &#x2209; &notin; Math Symbols
ni 8715 220B %220B; &#8715; &#x220B; &ni; Math Symbols
prod 8719 220F %220F; &#8719; &#x220F; &prod; Math Symbols
sum 8721 2211 %2211; &#8721; &#x2211; &sum; Math Symbols
minus 8722 2212 %2212; &#8722; &#x2212; &minus; Math Symbols
lowast 8727 2217 %2217; &#8727; &#x2217; &lowast; Math Symbols
square root 8730 221A %221A; &#8730; &#x221A; &radic; Math Symbols
proportional to 8733 221D %221D; &#8733; &#x221D; &prop; Math Symbols
infinity 8734 221E %221E; &#8734; &#x221E; &infin; Math Symbols
angle 8736 2220 %2220; &#8736; &#x2220; &ang; Math Symbols
and 8743 2227 %2227; &#8743; &#x2227; &and; Math Symbols
or 8744 2228 %2228; &#8744; &#x2228; &or; Math Symbols
cap 8745 2229 %2229; &#8745; &#x2229; &cap; Math Symbols
cup 8746 222A %222A; &#8746; &#x222A; &cup; Math Symbols
integral 8747 222B %222B; &#8747; &#x222B; &int; Math Symbols
therefore 8756 2234 %2234; &#8756; &#x2234; &there4; Math Symbols
similar to 8764 223C %223C; &#8764; &#x223C; &sim; Math Symbols
congruent to 8773 2245 %2245; &#8773; &#x2245; &cong; Math Symbols
almost equal 8776 2248 %2248; &#8776; &#x2248; &asymp; Math Symbols
not equal 8800 2260 %2260; &#8800; &#x2260; &ne; Math Symbols
equivalent 8801 2261 %2261; &#8801; &#x2261; &equiv; Math Symbols
less or equal 8804 2264 %2264; &#8804; &#x2264; &le; Math Symbols
greater or equal 8805 2265 %2265; &#8805; &#x2265; &ge; Math Symbols
subset of 8834 2282 %2282; &#8834; &#x2282; &sub; Math Symbols
superset of 8835 2283 %2283; &#8835; &#x2283; &sup; Math Symbols
not subset of 8836 2284 %2284; &#8836; &#x2284; &nsub; Math Symbols
subset or equal 8838 2286 %2286; &#8838; &#x2286; &sube; Math Symbols
superset or equal 8839 2287 %2287; &#8839; &#x2287; &supe; Math Symbols
circled plus 8853 2295 %2295; &#8853; &#x2295; &oplus; Math Symbols
cirled times 8855 2297 %2297; &#8855; &#x2297; &otimes; Math Symbols
perpendicular 8869 22A5 %22A5; &#8869; &#x22A5; &perp; Math Symbols
dot operator 8901 22C5 %22C5; &#8901; &#x22C5; &sdot; Math Symbols
left ceiling 8968 2308 %2308; &#8968; &#x2308; &lceil; Other
right ceiling 8969 2309 %2309; &#8969; &#x2309; &rceil; Other
left floor 8970 230A %230A; &#8970; &#x230A; &lfloor; Other
right floor 8971 230B %230B; &#8971; &#x230B; &rfloor; Other
lozenge 9674 25CA %25CA; &#9674; &#x25CA; &loz; Other
spade 9824 2660 %2660; &#9824; &#x2660; &spades; Other
club 9827 2663 %2663; &#9827; &#x2663; &clubs; Other
heart 9829 2665 %2665; &#9829; &#x2665; &hearts; Other
diamond 9830 2666 %2666; &#9830; &#x2666; &diams; Other