1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
|
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<head>
<title>Characters [Robin’s HTML 4.0 Conformance Test]</title>
<meta name="description" content="Test your Web browser’s support for HTML 4.0 character entity references. Part of Robin’s HTML 4.0 Conformance Test." />
<meta name="DC.Creator" content="Lionheart, Robin" />
<link rel="home" href="http://www.robinlionheart.com/" title="RobinLionheart.com" />
<link rel="first" href="./" title="Robin’s HTML 4.0 Test" />
<link rel="prev" href="abbr" title="Abbreviations" />
<link rel="next" href="spchars" title="Characters: Special" />
<link rel="glossary" href="glossary" title="Glossary" />
<link rel="author" href="http://www.robinlionheart.com/robin/" title="Robin Lionheart" />
<link rel="stylesheet" href="/style/linkcolors.css" type="text/css" media="screen, tv, projection" />
<link rel="stylesheet" href="html4.css" type="text/css" media="screen, tv, projection" title="Conformance Test" />
<link rel="icon" href="/images/icons/htmltest.png" type="image/png" />
<style type="text/css">
/* If you can read this, your Web browser doesn't understand the STYLE tag. */
table.key { border-spacing: 0;
border-style: solid;
float: right; }
@media aural, tactile {
table.key { display: none }
}
tbody { border-style: solid none }
tr { color: #000;
vertical-align: middle }
tr.nonentity { color: #000; background-color: #AAA; }
tr.XML { color: #000; background-color: #FAF; }
tr.SGML { color: #000; background-color: #8F8; }
tr.HTMLlat1 { color: #000; background-color: #AFA; }
tr.HTMLsymbol { color: #000; background-color: #FFA; }
tr.HTMLspecial { color: #000; background-color: #FF8; }
span.space { background-color: #8AA; }
col.image,
td.name { background-color: white; }
td.unprintable { background-color: gray; }
td.index { font-weight: bold; text-align: right;
padding-right: 1ex; background-color: white; }
td.image { text-align: center;
/* background-color: white; */ }
col.unicode,
td.unicode { text-align: center;
font-size: 32px;
/* height: 64px; width: 64px; */
font-family: Arial Unicode MS, "Lucida Sans Unicode", "Everson Mono Unicode", sans-serif; }
div.bodytext { font-family: sans-serif; }
table.chartable { font-family: sans-serif;
margin-left: auto; margin-right: auto; }
</style>
</head>
<body>
<div id="navbar">
<ul class="nl" id="breadcrumbs"><li><a href="./" rel="first">Robin’s HTML 4.0 Test</a><ul><li>Characters</li></ul></li></ul>
<ul class="nl">
<li><a href="./" rel="first" accesskey="1" title="First: Robin’s HTML 4.0 Test">⇤<strong>1</strong>st</a></li>
<li><a href="abbr" rel="prev" accesskey="P" title="Prior: Abbreviations">←<strong>P</strong>rior</a></li>
<li><a href="spchars" rel="next" accesskey="N" title="Next: Characters: Special"><strong>N</strong>ext→</a></li>
</ul>
</div>
<h1>Characters (<a class="specsect" href="http://www.w3.org/TR/html4/sgml/entities.html" title="HTML 4.0 Specification">§24</a>)</h1>
<table class="key">
<caption>Color Key</caption>
<col align="center" />
<col align="center" />
<tbody>
<tr class="SGML">
<td><abbr>HTML</abbr> 1.0 entity</td>
</tr>
<tr class="HTMLlat1">
<td><abbr>HTML</abbr> 2.0 entities</td>
</tr>
<tr class="HTMLsymbol">
<td><abbr>HTML</abbr> 4.0 entities<br />
in Adobe Symbol font</td>
</tr>
<tr class="HTMLspecial">
<td><abbr>HTML</abbr> 4.0 entities</td>
</tr>
<tr class="XML">
<td><abbr>XHTML</abbr> 1.0 entities</td>
</tr>
</tbody>
</table>
<div class="bodytext">
<p>These are the character entities from all of the <abbr title="Hypertext Markup Language">HTML</abbr> specifications.</p>
<p><abbr>HTML</abbr> 4.0 defines many new character entities, primarily glyphs from the widely available Abobe font <cite>Symbol</cite> and punctuation from the Win1252 (Windows: Western) character set.</p>
<p><abbr>HTML</abbr> 4.0 also introduces hexadecimal numeric entity references, and specifies that numeric entities be treated as <a href="http://www.unicode.org/">Unicode</a> glyphs, which includes just about every typographical character known to typesetters.</p>
<p class="note">To test your Web browser’s support for the full range of Unicode characters, I recommend the test suite in <a href="http://www.alanwood.net/unicode/">Alan Wood’s Unicode Resources</a>.</p>
<p>You may also view this table with <a href="entities-mathml">MathML entities</a>.</p>
</div>
<table rules="groups" class="chartable">
<caption>Character Entities</caption>
<colgroup>
<col />
</colgroup>
<colgroup>
<col />
<col class="unicode" />
</colgroup>
<colgroup>
<col />
<col class="unicode" />
</colgroup>
<colgroup>
<col />
<col class="unicode" />
</colgroup>
<thead>
<tr>
<th colspan="1" scope="colgroup">Name<br /></th>
<th colspan="2" scope="colgroup">Decimal<br /></th>
<th colspan="2" scope="colgroup">Hex<br /></th>
<th colspan="2" scope="colgroup">Named<br /></th>
</tr>
</thead>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U0000.pdf" title="Unicode Code Charts: Basic Latin (PDF)">Basic Latin</a> (ASCII)</th></tr>
<tr class="SGML ISO8879 " title="Num: 34, Category: Po"><td class="name">quotation mark<br /></td><td>#34</td><td class="unicode">"<br /></td>
<td>#x22</td><td class="unicode">"<br /></td>
<td>quot</td><td id="quot" class="unicode">"<br /></td>
</tr>
<tr class="SGML ISO8879 " title="Num: 38, Category: Po"><td class="name">ampersand<br /></td><td>#38</td><td class="unicode">&<br /></td>
<td>#x26</td><td class="unicode">&<br /></td>
<td>amp</td><td id="amp" class="unicode">&<br /></td>
</tr>
<tr class="XML ISO8879 " title="Num: 39, Category: Po"><td class="name">apostrophe<br /></td><td>#39</td><td class="unicode">'<br /></td>
<td>#x27</td><td class="unicode">'<br /></td>
<td>apos</td><td id="apos" class="unicode">'<br /></td>
</tr>
<tr class="SGML ISO8879 " title="Num: 60, Category: Sm"><td class="name">less-than sign<br /></td><td>#60</td><td class="unicode"><<br /></td>
<td>#x3c</td><td class="unicode"><<br /></td>
<td>lt</td><td id="lt" class="unicode"><<br /></td>
</tr>
<tr class="SGML ISO8879 " title="Num: 62, Category: Sm"><td class="name">greater-than sign<br /></td><td>#62</td><td class="unicode">><br /></td>
<td>#x3e</td><td class="unicode">><br /></td>
<td>gt</td><td id="gt" class="unicode">><br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U0080.pdf" title="Unicode Code Charts: Latin-1 Supplement (PDF)">Latin-1 Supplement</a> (<a href="http://wwwwbs.cs.tu-berlin.de/user/czyborra/charsets/">ISO 8859-1</a>)</th></tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 160, Category: Zs, Decomposition: <noBreak> 0020"><td class="name">no-break space<br /></td><td>#160</td><td class="unicode"><span class="space"> </span><br /></td>
<td>#xa0</td><td class="unicode"><span class="space"> </span><br /></td>
<td>nbsp</td><td id="nbsp" class="unicode"><span class="space"> </span><br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 161, Category: Po"><td class="name">inverted exclamation mark<br /></td><td>#161</td><td class="unicode">¡<br /></td>
<td>#xa1</td><td class="unicode">¡<br /></td>
<td>iexcl</td><td id="iexcl" class="unicode">¡<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 162, Category: Sc"><td class="name">cent sign<br /></td><td>#162</td><td class="unicode">¢<br /></td>
<td>#xa2</td><td class="unicode">¢<br /></td>
<td>cent</td><td id="cent" class="unicode">¢<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 163, Category: Sc"><td class="name">pound sign<br /></td><td>#163</td><td class="unicode">£<br /></td>
<td>#xa3</td><td class="unicode">£<br /></td>
<td>pound</td><td id="pound" class="unicode">£<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 164, Category: Sc"><td class="name">currency sign<br /></td><td>#164</td><td class="unicode">¤<br /></td>
<td>#xa4</td><td class="unicode">¤<br /></td>
<td>curren</td><td id="curren" class="unicode">¤<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 165, Category: Sc"><td class="name">yen sign<br /></td><td>#165</td><td class="unicode">¥<br /></td>
<td>#xa5</td><td class="unicode">¥<br /></td>
<td>yen</td><td id="yen" class="unicode">¥<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 166, Category: So"><td class="name">broken bar<br /></td><td>#166</td><td class="unicode">¦<br /></td>
<td>#xa6</td><td class="unicode">¦<br /></td>
<td>brvbar</td><td id="brvbar" class="unicode">¦<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 167, Category: So"><td class="name">section sign<br /></td><td>#167</td><td class="unicode">§<br /></td>
<td>#xa7</td><td class="unicode">§<br /></td>
<td>sect</td><td id="sect" class="unicode">§<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 168, Category: Sk, Decomposition: <compat> 0020 0308"><td class="name">diaeresis<br /></td><td>#168</td><td class="unicode">¨<br /></td>
<td>#xa8</td><td class="unicode">¨<br /></td>
<td>uml</td><td id="uml" class="unicode">¨<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 169, Category: So"><td class="name">copyright sign<br /></td><td>#169</td><td class="unicode">©<br /></td>
<td>#xa9</td><td class="unicode">©<br /></td>
<td>copy</td><td id="copy" class="unicode">©<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 170, Category: Ll, Decomposition: <super> 0061"><td class="name">feminine ordinal indicator<br /></td><td>#170</td><td class="unicode">ª<br /></td>
<td>#xaa</td><td class="unicode">ª<br /></td>
<td>ordf</td><td id="ordf" class="unicode">ª<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 171, Category: Pi"><td class="name">left-pointing double angle quotation mark<br /></td><td>#171</td><td class="unicode">«<br /></td>
<td>#xab</td><td class="unicode">«<br /></td>
<td>laquo</td><td id="laquo" class="unicode">«<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 172, Category: Sm"><td class="name">not sign<br /></td><td>#172</td><td class="unicode">¬<br /></td>
<td>#xac</td><td class="unicode">¬<br /></td>
<td>not</td><td id="not" class="unicode">¬<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 173, Category: Cf"><td class="name">soft hyphen<br /></td><td>#173</td><td class="unprintable"></td>
<td>#xad</td><td class="unprintable"></td>
<td>shy</td><td class="unprintable"></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 174, Category: So"><td class="name">registered sign<br /></td><td>#174</td><td class="unicode">®<br /></td>
<td>#xae</td><td class="unicode">®<br /></td>
<td>reg</td><td id="reg" class="unicode">®<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 175, Category: Sk, Decomposition: <compat> 0020 0304"><td class="name">macron<br /></td><td>#175</td><td class="unicode">¯<br /></td>
<td>#xaf</td><td class="unicode">¯<br /></td>
<td>macr</td><td id="macr" class="unicode">¯<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 176, Category: So"><td class="name">degree sign<br /></td><td>#176</td><td class="unicode">°<br /></td>
<td>#xb0</td><td class="unicode">°<br /></td>
<td>deg</td><td id="deg" class="unicode">°<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 177, Category: Sm"><td class="name">plus-minus sign<br /></td><td>#177</td><td class="unicode">±<br /></td>
<td>#xb1</td><td class="unicode">±<br /></td>
<td>plusmn</td><td id="plusmn" class="unicode">±<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 178, Category: No, Decomposition: <super> 0032"><td class="name">superscript two<br /></td><td>#178</td><td class="unicode">²<br /></td>
<td>#xb2</td><td class="unicode">²<br /></td>
<td>sup2</td><td id="sup2" class="unicode">²<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 179, Category: No, Decomposition: <super> 0033"><td class="name">superscript three<br /></td><td>#179</td><td class="unicode">³<br /></td>
<td>#xb3</td><td class="unicode">³<br /></td>
<td>sup3</td><td id="sup3" class="unicode">³<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 180, Category: Sk, Decomposition: <compat> 0020 0301"><td class="name">acute accent<br /></td><td>#180</td><td class="unicode">´<br /></td>
<td>#xb4</td><td class="unicode">´<br /></td>
<td>acute</td><td id="acute" class="unicode">´<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 181, Category: Ll, Decomposition: <compat> 03BC"><td class="name">micro sign<br /></td><td>#181</td><td class="unicode">µ<br /></td>
<td>#xb5</td><td class="unicode">µ<br /></td>
<td>micro</td><td id="micro" class="unicode">µ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 182, Category: So"><td class="name">pilcrow sign<br /></td><td>#182</td><td class="unicode">¶<br /></td>
<td>#xb6</td><td class="unicode">¶<br /></td>
<td>para</td><td id="para" class="unicode">¶<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 183, Category: Po"><td class="name">middle dot<br /></td><td>#183</td><td class="unicode">·<br /></td>
<td>#xb7</td><td class="unicode">·<br /></td>
<td>middot</td><td id="middot" class="unicode">·<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 184, Category: Sk, Decomposition: <compat> 0020 0327"><td class="name">cedilla<br /></td><td>#184</td><td class="unicode">¸<br /></td>
<td>#xb8</td><td class="unicode">¸<br /></td>
<td>cedil</td><td id="cedil" class="unicode">¸<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 185, Category: No, Decomposition: <super> 0031"><td class="name">superscript one<br /></td><td>#185</td><td class="unicode">¹<br /></td>
<td>#xb9</td><td class="unicode">¹<br /></td>
<td>sup1</td><td id="sup1" class="unicode">¹<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 186, Category: Ll, Decomposition: <super> 006F"><td class="name">masculine ordinal indicator<br /></td><td>#186</td><td class="unicode">º<br /></td>
<td>#xba</td><td class="unicode">º<br /></td>
<td>ordm</td><td id="ordm" class="unicode">º<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 187, Category: Pf"><td class="name">right-pointing double angle quotation mark<br /></td><td>#187</td><td class="unicode">»<br /></td>
<td>#xbb</td><td class="unicode">»<br /></td>
<td>raquo</td><td id="raquo" class="unicode">»<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 188, Category: No, Decomposition: <fraction> 0031 2044 0034"><td class="name">vulgar fraction one quarter<br /></td><td>#188</td><td class="unicode">¼<br /></td>
<td>#xbc</td><td class="unicode">¼<br /></td>
<td>frac14</td><td id="frac14" class="unicode">¼<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 189, Category: No, Decomposition: <fraction> 0031 2044 0032"><td class="name">vulgar fraction one half<br /></td><td>#189</td><td class="unicode">½<br /></td>
<td>#xbd</td><td class="unicode">½<br /></td>
<td>frac12</td><td id="frac12" class="unicode">½<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 190, Category: No, Decomposition: <fraction> 0033 2044 0034"><td class="name">vulgar fraction three quarters<br /></td><td>#190</td><td class="unicode">¾<br /></td>
<td>#xbe</td><td class="unicode">¾<br /></td>
<td>frac34</td><td id="frac34" class="unicode">¾<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 191, Category: Po"><td class="name">inverted question mark<br /></td><td>#191</td><td class="unicode">¿<br /></td>
<td>#xbf</td><td class="unicode">¿<br /></td>
<td>iquest</td><td id="iquest" class="unicode">¿<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 192, Category: Lu, Decomposition: 0041 0300"><td class="name">Latin capital letter A with grave<br /></td><td>#192</td><td class="unicode">À<br /></td>
<td>#xc0</td><td class="unicode">À<br /></td>
<td>Agrave</td><td id="Agrave" class="unicode">À<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 193, Category: Lu, Decomposition: 0041 0301"><td class="name">Latin capital letter A with acute<br /></td><td>#193</td><td class="unicode">Á<br /></td>
<td>#xc1</td><td class="unicode">Á<br /></td>
<td>Aacute</td><td id="Aacute" class="unicode">Á<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 194, Category: Lu, Decomposition: 0041 0302"><td class="name">Latin capital letter A with circumflex<br /></td><td>#194</td><td class="unicode">Â<br /></td>
<td>#xc2</td><td class="unicode">Â<br /></td>
<td>Acirc</td><td id="Acirc" class="unicode">Â<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 195, Category: Lu, Decomposition: 0041 0303"><td class="name">Latin capital letter A with tilde<br /></td><td>#195</td><td class="unicode">Ã<br /></td>
<td>#xc3</td><td class="unicode">Ã<br /></td>
<td>Atilde</td><td id="Atilde" class="unicode">Ã<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 196, Category: Lu, Decomposition: 0041 0308"><td class="name">Latin capital letter A with diaeresis<br /></td><td>#196</td><td class="unicode">Ä<br /></td>
<td>#xc4</td><td class="unicode">Ä<br /></td>
<td>Auml</td><td id="Auml" class="unicode">Ä<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 197, Category: Lu, Decomposition: 0041 030A"><td class="name">Latin capital letter A with ring above<br /></td><td>#197</td><td class="unicode">Å<br /></td>
<td>#xc5</td><td class="unicode">Å<br /></td>
<td>Aring</td><td id="Aring" class="unicode">Å<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 198, Category: Lu"><td class="name">Latin capital letter AE<br /></td><td>#198</td><td class="unicode">Æ<br /></td>
<td>#xc6</td><td class="unicode">Æ<br /></td>
<td>AElig</td><td id="AElig" class="unicode">Æ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 199, Category: Lu, Decomposition: 0043 0327"><td class="name">Latin capital letter C with cedilla<br /></td><td>#199</td><td class="unicode">Ç<br /></td>
<td>#xc7</td><td class="unicode">Ç<br /></td>
<td>Ccedil</td><td id="Ccedil" class="unicode">Ç<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 200, Category: Lu, Decomposition: 0045 0300"><td class="name">Latin capital letter E with grave<br /></td><td>#200</td><td class="unicode">È<br /></td>
<td>#xc8</td><td class="unicode">È<br /></td>
<td>Egrave</td><td id="Egrave" class="unicode">È<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 201, Category: Lu, Decomposition: 0045 0301"><td class="name">Latin capital letter E with acute<br /></td><td>#201</td><td class="unicode">É<br /></td>
<td>#xc9</td><td class="unicode">É<br /></td>
<td>Eacute</td><td id="Eacute" class="unicode">É<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 202, Category: Lu, Decomposition: 0045 0302"><td class="name">Latin capital letter E with circumflex<br /></td><td>#202</td><td class="unicode">Ê<br /></td>
<td>#xca</td><td class="unicode">Ê<br /></td>
<td>Ecirc</td><td id="Ecirc" class="unicode">Ê<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 203, Category: Lu, Decomposition: 0045 0308"><td class="name">Latin capital letter E with diaeresis<br /></td><td>#203</td><td class="unicode">Ë<br /></td>
<td>#xcb</td><td class="unicode">Ë<br /></td>
<td>Euml</td><td id="Euml" class="unicode">Ë<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 204, Category: Lu, Decomposition: 0049 0300"><td class="name">Latin capital letter I with grave<br /></td><td>#204</td><td class="unicode">Ì<br /></td>
<td>#xcc</td><td class="unicode">Ì<br /></td>
<td>Igrave</td><td id="Igrave" class="unicode">Ì<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 205, Category: Lu, Decomposition: 0049 0301"><td class="name">Latin capital letter I with acute<br /></td><td>#205</td><td class="unicode">Í<br /></td>
<td>#xcd</td><td class="unicode">Í<br /></td>
<td>Iacute</td><td id="Iacute" class="unicode">Í<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 206, Category: Lu, Decomposition: 0049 0302"><td class="name">Latin capital letter I with circumflex<br /></td><td>#206</td><td class="unicode">Î<br /></td>
<td>#xce</td><td class="unicode">Î<br /></td>
<td>Icirc</td><td id="Icirc" class="unicode">Î<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 207, Category: Lu, Decomposition: 0049 0308"><td class="name">Latin capital letter I with diaeresis<br /></td><td>#207</td><td class="unicode">Ï<br /></td>
<td>#xcf</td><td class="unicode">Ï<br /></td>
<td>Iuml</td><td id="Iuml" class="unicode">Ï<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 208, Category: Lu"><td class="name">Latin capital letter ETH<br /></td><td>#208</td><td class="unicode">Ð<br /></td>
<td>#xd0</td><td class="unicode">Ð<br /></td>
<td>ETH</td><td id="ETH" class="unicode">Ð<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 209, Category: Lu, Decomposition: 004E 0303"><td class="name">Latin capital letter N with tilde<br /></td><td>#209</td><td class="unicode">Ñ<br /></td>
<td>#xd1</td><td class="unicode">Ñ<br /></td>
<td>Ntilde</td><td id="Ntilde" class="unicode">Ñ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 210, Category: Lu, Decomposition: 004F 0300"><td class="name">Latin capital letter O with grave<br /></td><td>#210</td><td class="unicode">Ò<br /></td>
<td>#xd2</td><td class="unicode">Ò<br /></td>
<td>Ograve</td><td id="Ograve" class="unicode">Ò<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 211, Category: Lu, Decomposition: 004F 0301"><td class="name">Latin capital letter O with acute<br /></td><td>#211</td><td class="unicode">Ó<br /></td>
<td>#xd3</td><td class="unicode">Ó<br /></td>
<td>Oacute</td><td id="Oacute" class="unicode">Ó<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 212, Category: Lu, Decomposition: 004F 0302"><td class="name">Latin capital letter O with circumflex<br /></td><td>#212</td><td class="unicode">Ô<br /></td>
<td>#xd4</td><td class="unicode">Ô<br /></td>
<td>Ocirc</td><td id="Ocirc" class="unicode">Ô<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 213, Category: Lu, Decomposition: 004F 0303"><td class="name">Latin capital letter O with tilde<br /></td><td>#213</td><td class="unicode">Õ<br /></td>
<td>#xd5</td><td class="unicode">Õ<br /></td>
<td>Otilde</td><td id="Otilde" class="unicode">Õ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 214, Category: Lu, Decomposition: 004F 0308"><td class="name">Latin capital letter O with diaeresis<br /></td><td>#214</td><td class="unicode">Ö<br /></td>
<td>#xd6</td><td class="unicode">Ö<br /></td>
<td>Ouml</td><td id="Ouml" class="unicode">Ö<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 215, Category: Sm"><td class="name">multiplication sign<br /></td><td>#215</td><td class="unicode">×<br /></td>
<td>#xd7</td><td class="unicode">×<br /></td>
<td>times</td><td id="times" class="unicode">×<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 216, Category: Lu"><td class="name">Latin capital letter O with stroke<br /></td><td>#216</td><td class="unicode">Ø<br /></td>
<td>#xd8</td><td class="unicode">Ø<br /></td>
<td>Oslash</td><td id="Oslash" class="unicode">Ø<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 217, Category: Lu, Decomposition: 0055 0300"><td class="name">Latin capital letter U with grave<br /></td><td>#217</td><td class="unicode">Ù<br /></td>
<td>#xd9</td><td class="unicode">Ù<br /></td>
<td>Ugrave</td><td id="Ugrave" class="unicode">Ù<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 218, Category: Lu, Decomposition: 0055 0301"><td class="name">Latin capital letter U with acute<br /></td><td>#218</td><td class="unicode">Ú<br /></td>
<td>#xda</td><td class="unicode">Ú<br /></td>
<td>Uacute</td><td id="Uacute" class="unicode">Ú<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 219, Category: Lu, Decomposition: 0055 0302"><td class="name">Latin capital letter U with circumflex<br /></td><td>#219</td><td class="unicode">Û<br /></td>
<td>#xdb</td><td class="unicode">Û<br /></td>
<td>Ucirc</td><td id="Ucirc" class="unicode">Û<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 220, Category: Lu, Decomposition: 0055 0308"><td class="name">Latin capital letter U with diaeresis<br /></td><td>#220</td><td class="unicode">Ü<br /></td>
<td>#xdc</td><td class="unicode">Ü<br /></td>
<td>Uuml</td><td id="Uuml" class="unicode">Ü<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 221, Category: Lu, Decomposition: 0059 0301"><td class="name">Latin capital letter Y with acute<br /></td><td>#221</td><td class="unicode">Ý<br /></td>
<td>#xdd</td><td class="unicode">Ý<br /></td>
<td>Yacute</td><td id="Yacute" class="unicode">Ý<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 222, Category: Lu"><td class="name">Latin capital letter Thorn<br /></td><td>#222</td><td class="unicode">Þ<br /></td>
<td>#xde</td><td class="unicode">Þ<br /></td>
<td>THORN</td><td id="THORN" class="unicode">Þ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 223, Category: Ll"><td class="name">Latin small letter sharp s<br /></td><td>#223</td><td class="unicode">ß<br /></td>
<td>#xdf</td><td class="unicode">ß<br /></td>
<td>szlig</td><td id="szlig" class="unicode">ß<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 224, Category: Ll, Decomposition: 0061 0300"><td class="name">Latin small letter a with grave<br /></td><td>#224</td><td class="unicode">à<br /></td>
<td>#xe0</td><td class="unicode">à<br /></td>
<td>agrave</td><td id="agrave" class="unicode">à<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 225, Category: Ll, Decomposition: 0061 0301"><td class="name">Latin small letter a with acute<br /></td><td>#225</td><td class="unicode">á<br /></td>
<td>#xe1</td><td class="unicode">á<br /></td>
<td>aacute</td><td id="aacute" class="unicode">á<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 226, Category: Ll, Decomposition: 0061 0302"><td class="name">Latin small letter a with circumflex<br /></td><td>#226</td><td class="unicode">â<br /></td>
<td>#xe2</td><td class="unicode">â<br /></td>
<td>acirc</td><td id="acirc" class="unicode">â<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 227, Category: Ll, Decomposition: 0061 0303"><td class="name">Latin small letter a with tilde<br /></td><td>#227</td><td class="unicode">ã<br /></td>
<td>#xe3</td><td class="unicode">ã<br /></td>
<td>atilde</td><td id="atilde" class="unicode">ã<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 228, Category: Ll, Decomposition: 0061 0308"><td class="name">Latin small letter a with diaeresis<br /></td><td>#228</td><td class="unicode">ä<br /></td>
<td>#xe4</td><td class="unicode">ä<br /></td>
<td>auml</td><td id="auml" class="unicode">ä<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 229, Category: Ll, Decomposition: 0061 030A"><td class="name">Latin small letter a with ring above<br /></td><td>#229</td><td class="unicode">å<br /></td>
<td>#xe5</td><td class="unicode">å<br /></td>
<td>aring</td><td id="aring" class="unicode">å<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 230, Category: Ll"><td class="name">Latin small letter ae<br /></td><td>#230</td><td class="unicode">æ<br /></td>
<td>#xe6</td><td class="unicode">æ<br /></td>
<td>aelig</td><td id="aelig" class="unicode">æ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 231, Category: Ll, Decomposition: 0063 0327"><td class="name">Latin small letter c with cedilla<br /></td><td>#231</td><td class="unicode">ç<br /></td>
<td>#xe7</td><td class="unicode">ç<br /></td>
<td>ccedil</td><td id="ccedil" class="unicode">ç<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 232, Category: Ll, Decomposition: 0065 0300"><td class="name">Latin small letter e with grave<br /></td><td>#232</td><td class="unicode">è<br /></td>
<td>#xe8</td><td class="unicode">è<br /></td>
<td>egrave</td><td id="egrave" class="unicode">è<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 233, Category: Ll, Decomposition: 0065 0301"><td class="name">Latin small letter e with acute<br /></td><td>#233</td><td class="unicode">é<br /></td>
<td>#xe9</td><td class="unicode">é<br /></td>
<td>eacute</td><td id="eacute" class="unicode">é<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 234, Category: Ll, Decomposition: 0065 0302"><td class="name">Latin small letter e with circumflex<br /></td><td>#234</td><td class="unicode">ê<br /></td>
<td>#xea</td><td class="unicode">ê<br /></td>
<td>ecirc</td><td id="ecirc" class="unicode">ê<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 235, Category: Ll, Decomposition: 0065 0308"><td class="name">Latin small letter e with diaeresis<br /></td><td>#235</td><td class="unicode">ë<br /></td>
<td>#xeb</td><td class="unicode">ë<br /></td>
<td>euml</td><td id="euml" class="unicode">ë<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 236, Category: Ll, Decomposition: 0069 0300"><td class="name">Latin small letter i with grave<br /></td><td>#236</td><td class="unicode">ì<br /></td>
<td>#xec</td><td class="unicode">ì<br /></td>
<td>igrave</td><td id="igrave" class="unicode">ì<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 237, Category: Ll, Decomposition: 0069 0301"><td class="name">Latin small letter i with acute<br /></td><td>#237</td><td class="unicode">í<br /></td>
<td>#xed</td><td class="unicode">í<br /></td>
<td>iacute</td><td id="iacute" class="unicode">í<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 238, Category: Ll, Decomposition: 0069 0302"><td class="name">Latin small letter i with circumflex<br /></td><td>#238</td><td class="unicode">î<br /></td>
<td>#xee</td><td class="unicode">î<br /></td>
<td>icirc</td><td id="icirc" class="unicode">î<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 239, Category: Ll, Decomposition: 0069 0308"><td class="name">Latin small letter i with diaeresis<br /></td><td>#239</td><td class="unicode">ï<br /></td>
<td>#xef</td><td class="unicode">ï<br /></td>
<td>iuml</td><td id="iuml" class="unicode">ï<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 240, Category: Ll"><td class="name">Latin small letter eth<br /></td><td>#240</td><td class="unicode">ð<br /></td>
<td>#xf0</td><td class="unicode">ð<br /></td>
<td>eth</td><td id="eth" class="unicode">ð<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 241, Category: Ll, Decomposition: 006E 0303"><td class="name">Latin small letter n with tilde<br /></td><td>#241</td><td class="unicode">ñ<br /></td>
<td>#xf1</td><td class="unicode">ñ<br /></td>
<td>ntilde</td><td id="ntilde" class="unicode">ñ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 242, Category: Ll, Decomposition: 006F 0300"><td class="name">Latin small letter o with grave<br /></td><td>#242</td><td class="unicode">ò<br /></td>
<td>#xf2</td><td class="unicode">ò<br /></td>
<td>ograve</td><td id="ograve" class="unicode">ò<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 243, Category: Ll, Decomposition: 006F 0301"><td class="name">Latin small letter o with acute<br /></td><td>#243</td><td class="unicode">ó<br /></td>
<td>#xf3</td><td class="unicode">ó<br /></td>
<td>oacute</td><td id="oacute" class="unicode">ó<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 244, Category: Ll, Decomposition: 006F 0302"><td class="name">Latin small letter o with circumflex<br /></td><td>#244</td><td class="unicode">ô<br /></td>
<td>#xf4</td><td class="unicode">ô<br /></td>
<td>ocirc</td><td id="ocirc" class="unicode">ô<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 245, Category: Ll, Decomposition: 006F 0303"><td class="name">Latin small letter o with tilde<br /></td><td>#245</td><td class="unicode">õ<br /></td>
<td>#xf5</td><td class="unicode">õ<br /></td>
<td>otilde</td><td id="otilde" class="unicode">õ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 246, Category: Ll, Decomposition: 006F 0308"><td class="name">Latin small letter o with diaeresis<br /></td><td>#246</td><td class="unicode">ö<br /></td>
<td>#xf6</td><td class="unicode">ö<br /></td>
<td>ouml</td><td id="ouml" class="unicode">ö<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 247, Category: Sm"><td class="name">division sign<br /></td><td>#247</td><td class="unicode">÷<br /></td>
<td>#xf7</td><td class="unicode">÷<br /></td>
<td>divide</td><td id="divide" class="unicode">÷<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 248, Category: Ll"><td class="name">Latin small letter o with stroke<br /></td><td>#248</td><td class="unicode">ø<br /></td>
<td>#xf8</td><td class="unicode">ø<br /></td>
<td>oslash</td><td id="oslash" class="unicode">ø<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 249, Category: Ll, Decomposition: 0075 0300"><td class="name">Latin small letter u with grave<br /></td><td>#249</td><td class="unicode">ù<br /></td>
<td>#xf9</td><td class="unicode">ù<br /></td>
<td>ugrave</td><td id="ugrave" class="unicode">ù<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 250, Category: Ll, Decomposition: 0075 0301"><td class="name">Latin small letter u with acute<br /></td><td>#250</td><td class="unicode">ú<br /></td>
<td>#xfa</td><td class="unicode">ú<br /></td>
<td>uacute</td><td id="uacute" class="unicode">ú<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 251, Category: Ll, Decomposition: 0075 0302"><td class="name">Latin small letter u with circumflex<br /></td><td>#251</td><td class="unicode">û<br /></td>
<td>#xfb</td><td class="unicode">û<br /></td>
<td>ucirc</td><td id="ucirc" class="unicode">û<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 252, Category: Ll, Decomposition: 0075 0308"><td class="name">Latin small letter u with diaeresis<br /></td><td>#252</td><td class="unicode">ü<br /></td>
<td>#xfc</td><td class="unicode">ü<br /></td>
<td>uuml</td><td id="uuml" class="unicode">ü<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 253, Category: Ll, Decomposition: 0079 0301"><td class="name">Latin small letter y with acute<br /></td><td>#253</td><td class="unicode">ý<br /></td>
<td>#xfd</td><td class="unicode">ý<br /></td>
<td>yacute</td><td id="yacute" class="unicode">ý<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 254, Category: Ll"><td class="name">Latin small letter thorn<br /></td><td>#254</td><td class="unicode">þ<br /></td>
<td>#xfe</td><td class="unicode">þ<br /></td>
<td>thorn</td><td id="thorn" class="unicode">þ<br /></td>
</tr>
<tr class="HTMLlat1 ISO8879 " title="Num: 255, Category: Ll, Decomposition: 0079 0308"><td class="name">Latin small letter y with diaeresis<br /></td><td>#255</td><td class="unicode">ÿ<br /></td>
<td>#xff</td><td class="unicode">ÿ<br /></td>
<td>yuml</td><td id="yuml" class="unicode">ÿ<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U0100.pdf" title="Unicode Code Charts: Latin Extended-A (PDF)">Latin Extended-A</a></th></tr>
<tr class="HTMLspecial " title="Num: 338, Category: Lu"><td class="name">Latin capital ligature OE<br /></td><td>#338</td><td class="unicode">Œ<br /></td>
<td>#x152</td><td class="unicode">Œ<br /></td>
<td>OElig</td><td id="OElig" class="unicode">Œ<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 339, Category: Ll"><td class="name">Latin small ligature oe<br /></td><td>#339</td><td class="unicode">œ<br /></td>
<td>#x153</td><td class="unicode">œ<br /></td>
<td>oelig</td><td id="oelig" class="unicode">œ<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 352, Category: Lu, Decomposition: 0053 030C"><td class="name">Latin capital letter S with caron<br /></td><td>#352</td><td class="unicode">Š<br /></td>
<td>#x160</td><td class="unicode">Š<br /></td>
<td>Scaron</td><td id="Scaron" class="unicode">Š<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 353, Category: Ll, Decomposition: 0073 030C"><td class="name">Latin small letter s with caron<br /></td><td>#353</td><td class="unicode">š<br /></td>
<td>#x161</td><td class="unicode">š<br /></td>
<td>scaron</td><td id="scaron" class="unicode">š<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 376, Category: Lu, Decomposition: 0059 0308"><td class="name">Latin capital letter Y with diaeresis<br /></td><td>#376</td><td class="unicode">Ÿ<br /></td>
<td>#x178</td><td class="unicode">Ÿ<br /></td>
<td>Yuml</td><td id="Yuml" class="unicode">Ÿ<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U0180.pdf" title="Unicode Code Charts: Latin Extended-B (PDF)">Latin Extended-B</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 402, Category: Ll"><td class="name">Latin small letter f with hook<br /></td><td>#402</td><td class="unicode">ƒ<br /></td>
<td>#x192</td><td class="unicode">ƒ<br /></td>
<td>fnof</td><td id="fnof" class="unicode">ƒ<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U02B0.pdf" title="Unicode Code Charts: Spacing Modifier Letters (PDF)">Spacing Modifier Letters</a></th></tr>
<tr class="HTMLspecial ISO8879 " title="Num: 710, Category: Lm"><td class="name">modifier letter circumflex accent<br /></td><td>#710</td><td class="unicode">ˆ<br /></td>
<td>#x2c6</td><td class="unicode">ˆ<br /></td>
<td>circ</td><td id="circ" class="unicode">ˆ<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 732, Category: Sk, Decomposition: <compat> 0020 0303"><td class="name">small tilde<br /></td><td>#732</td><td class="unicode">˜<br /></td>
<td>#x2dc</td><td class="unicode">˜<br /></td>
<td>tilde</td><td id="tilde" class="unicode">˜<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U0370.pdf" title="Unicode Code Charts: Greek and Coptic (PDF)">Greek and Coptic</a></th></tr>
<tr class="HTMLsymbol " title="Num: 913, Category: Lu"><td class="name">Greek capital letter Alpha<br /></td><td>#913</td><td class="unicode">Α<br /></td>
<td>#x391</td><td class="unicode">Α<br /></td>
<td>Alpha</td><td id="Alpha" class="unicode">Α<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 914, Category: Lu"><td class="name">Greek capital letter Beta<br /></td><td>#914</td><td class="unicode">Β<br /></td>
<td>#x392</td><td class="unicode">Β<br /></td>
<td>Beta</td><td id="Beta" class="unicode">Β<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 915, Category: Lu"><td class="name">Greek capital letter Gamma<br /></td><td>#915</td><td class="unicode">Γ<br /></td>
<td>#x393</td><td class="unicode">Γ<br /></td>
<td>Gamma</td><td id="Gamma" class="unicode">Γ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 916, Category: Lu"><td class="name">Greek capital letter Delta<br /></td><td>#916</td><td class="unicode">Δ<br /></td>
<td>#x394</td><td class="unicode">Δ<br /></td>
<td>Delta</td><td id="Delta" class="unicode">Δ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 917, Category: Lu"><td class="name">Greek capital letter Epsilon<br /></td><td>#917</td><td class="unicode">Ε<br /></td>
<td>#x395</td><td class="unicode">Ε<br /></td>
<td>Epsilon</td><td id="Epsilon" class="unicode">Ε<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 918, Category: Lu"><td class="name">Greek capital letter Zeta<br /></td><td>#918</td><td class="unicode">Ζ<br /></td>
<td>#x396</td><td class="unicode">Ζ<br /></td>
<td>Zeta</td><td id="Zeta" class="unicode">Ζ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 919, Category: Lu"><td class="name">Greek capital letter Eta<br /></td><td>#919</td><td class="unicode">Η<br /></td>
<td>#x397</td><td class="unicode">Η<br /></td>
<td>Eta</td><td id="Eta" class="unicode">Η<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 920, Category: Lu"><td class="name">Greek capital letter Theta<br /></td><td>#920</td><td class="unicode">Θ<br /></td>
<td>#x398</td><td class="unicode">Θ<br /></td>
<td>Theta</td><td id="Theta" class="unicode">Θ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 921, Category: Lu"><td class="name">Greek capital letter Iota<br /></td><td>#921</td><td class="unicode">Ι<br /></td>
<td>#x399</td><td class="unicode">Ι<br /></td>
<td>Iota</td><td id="Iota" class="unicode">Ι<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 922, Category: Lu"><td class="name">Greek capital letter Kappa<br /></td><td>#922</td><td class="unicode">Κ<br /></td>
<td>#x39a</td><td class="unicode">Κ<br /></td>
<td>Kappa</td><td id="Kappa" class="unicode">Κ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 923, Category: Lu"><td class="name">Greek capital letter Lamda<br /></td><td>#923</td><td class="unicode">Λ<br /></td>
<td>#x39b</td><td class="unicode">Λ<br /></td>
<td>Lambda</td><td id="Lambda" class="unicode">Λ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 924, Category: Lu"><td class="name">Greek capital letter Mu<br /></td><td>#924</td><td class="unicode">Μ<br /></td>
<td>#x39c</td><td class="unicode">Μ<br /></td>
<td>Mu</td><td id="Mu" class="unicode">Μ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 925, Category: Lu"><td class="name">Greek capital letter Nu<br /></td><td>#925</td><td class="unicode">Ν<br /></td>
<td>#x39d</td><td class="unicode">Ν<br /></td>
<td>Nu</td><td id="Nu" class="unicode">Ν<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 926, Category: Lu"><td class="name">Greek capital letter Xi<br /></td><td>#926</td><td class="unicode">Ξ<br /></td>
<td>#x39e</td><td class="unicode">Ξ<br /></td>
<td>Xi</td><td id="Xi" class="unicode">Ξ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 927, Category: Lu"><td class="name">Greek capital letter Omicron<br /></td><td>#927</td><td class="unicode">Ο<br /></td>
<td>#x39f</td><td class="unicode">Ο<br /></td>
<td>Omicron</td><td id="Omicron" class="unicode">Ο<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 928, Category: Lu"><td class="name">Greek capital letter Pi<br /></td><td>#928</td><td class="unicode">Π<br /></td>
<td>#x3a0</td><td class="unicode">Π<br /></td>
<td>Pi</td><td id="Pi" class="unicode">Π<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 929, Category: Lu"><td class="name">Greek capital letter Rho<br /></td><td>#929</td><td class="unicode">Ρ<br /></td>
<td>#x3a1</td><td class="unicode">Ρ<br /></td>
<td>Rho</td><td id="Rho" class="unicode">Ρ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 931, Category: Lu"><td class="name">Greek capital letter Sigma<br /></td><td>#931</td><td class="unicode">Σ<br /></td>
<td>#x3a3</td><td class="unicode">Σ<br /></td>
<td>Sigma</td><td id="Sigma" class="unicode">Σ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 932, Category: Lu"><td class="name">Greek capital letter Tau<br /></td><td>#932</td><td class="unicode">Τ<br /></td>
<td>#x3a4</td><td class="unicode">Τ<br /></td>
<td>Tau</td><td id="Tau" class="unicode">Τ<br /></td>
</tr>
<tr class="HTMLsymbol MMLExtra " title="Num: 933, Category: Lu"><td class="name">Greek capital letter Upsilon<br /></td><td>#933</td><td class="unicode">Υ<br /></td>
<td>#x3a5</td><td class="unicode">Υ<br /></td>
<td>Upsilon</td><td id="Upsilon" class="unicode">Υ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 934, Category: Lu"><td class="name">Greek capital letter Phi<br /></td><td>#934</td><td class="unicode">Φ<br /></td>
<td>#x3a6</td><td class="unicode">Φ<br /></td>
<td>Phi</td><td id="Phi" class="unicode">Φ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 935, Category: Lu"><td class="name">Greek capital letter Chi<br /></td><td>#935</td><td class="unicode">Χ<br /></td>
<td>#x3a7</td><td class="unicode">Χ<br /></td>
<td>Chi</td><td id="Chi" class="unicode">Χ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 936, Category: Lu"><td class="name">Greek capital letter Psi<br /></td><td>#936</td><td class="unicode">Ψ<br /></td>
<td>#x3a8</td><td class="unicode">Ψ<br /></td>
<td>Psi</td><td id="Psi" class="unicode">Ψ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 937, Category: Lu"><td class="name">Greek capital letter Omega<br /></td><td>#937</td><td class="unicode">Ω<br /></td>
<td>#x3a9</td><td class="unicode">Ω<br /></td>
<td>Omega</td><td id="Omega" class="unicode">Ω<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 945, Category: Ll"><td class="name">Greek small letter alpha<br /></td><td>#945</td><td class="unicode">α<br /></td>
<td>#x3b1</td><td class="unicode">α<br /></td>
<td>alpha</td><td id="alpha" class="unicode">α<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 946, Category: Ll"><td class="name">Greek small letter beta<br /></td><td>#946</td><td class="unicode">β<br /></td>
<td>#x3b2</td><td class="unicode">β<br /></td>
<td>beta</td><td id="beta" class="unicode">β<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 947, Category: Ll"><td class="name">Greek small letter gamma<br /></td><td>#947</td><td class="unicode">γ<br /></td>
<td>#x3b3</td><td class="unicode">γ<br /></td>
<td>gamma</td><td id="gamma" class="unicode">γ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 948, Category: Ll"><td class="name">Greek small letter delta<br /></td><td>#948</td><td class="unicode">δ<br /></td>
<td>#x3b4</td><td class="unicode">δ<br /></td>
<td>delta</td><td id="delta" class="unicode">δ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 949, Category: Ll"><td class="name">Greek small letter epsilon<br /></td><td>#949</td><td class="unicode">ε<br /></td>
<td>#x3b5</td><td class="unicode">ε<br /></td>
<td>epsilon</td><td id="epsilon" class="unicode">ε<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 950, Category: Ll"><td class="name">Greek small letter zeta<br /></td><td>#950</td><td class="unicode">ζ<br /></td>
<td>#x3b6</td><td class="unicode">ζ<br /></td>
<td>zeta</td><td id="zeta" class="unicode">ζ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 951, Category: Ll"><td class="name">Greek small letter eta<br /></td><td>#951</td><td class="unicode">η<br /></td>
<td>#x3b7</td><td class="unicode">η<br /></td>
<td>eta</td><td id="eta" class="unicode">η<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 952, Category: Ll"><td class="name">Greek small letter theta<br /></td><td>#952</td><td class="unicode">θ<br /></td>
<td>#x3b8</td><td class="unicode">θ<br /></td>
<td>theta</td><td id="theta" class="unicode">θ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 953, Category: Ll"><td class="name">Greek small letter iota<br /></td><td>#953</td><td class="unicode">ι<br /></td>
<td>#x3b9</td><td class="unicode">ι<br /></td>
<td>iota</td><td id="iota" class="unicode">ι<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 954, Category: Ll"><td class="name">Greek small letter kappa<br /></td><td>#954</td><td class="unicode">κ<br /></td>
<td>#x3ba</td><td class="unicode">κ<br /></td>
<td>kappa</td><td id="kappa" class="unicode">κ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 955, Category: Ll"><td class="name">Greek small letter lamda<br /></td><td>#955</td><td class="unicode">λ<br /></td>
<td>#x3bb</td><td class="unicode">λ<br /></td>
<td>lambda</td><td id="lambda" class="unicode">λ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 956, Category: Ll"><td class="name">Greek small letter mu<br /></td><td>#956</td><td class="unicode">μ<br /></td>
<td>#x3bc</td><td class="unicode">μ<br /></td>
<td>mu</td><td id="mu" class="unicode">μ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 957, Category: Ll"><td class="name">Greek small letter nu<br /></td><td>#957</td><td class="unicode">ν<br /></td>
<td>#x3bd</td><td class="unicode">ν<br /></td>
<td>nu</td><td id="nu" class="unicode">ν<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 958, Category: Ll"><td class="name">Greek small letter xi<br /></td><td>#958</td><td class="unicode">ξ<br /></td>
<td>#x3be</td><td class="unicode">ξ<br /></td>
<td>xi</td><td id="xi" class="unicode">ξ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 959, Category: Ll"><td class="name">Greek small letter omicron<br /></td><td>#959</td><td class="unicode">ο<br /></td>
<td>#x3bf</td><td class="unicode">ο<br /></td>
<td>omicron</td><td id="omicron" class="unicode">ο<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 960, Category: Ll"><td class="name">Greek small letter pi<br /></td><td>#960</td><td class="unicode">π<br /></td>
<td>#x3c0</td><td class="unicode">π<br /></td>
<td>pi</td><td id="pi" class="unicode">π<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 961, Category: Ll"><td class="name">Greek small letter rho<br /></td><td>#961</td><td class="unicode">ρ<br /></td>
<td>#x3c1</td><td class="unicode">ρ<br /></td>
<td>rho</td><td id="rho" class="unicode">ρ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 962, Category: Ll"><td class="name">Greek small letter final sigma<br /></td><td>#962</td><td class="unicode">ς<br /></td>
<td>#x3c2</td><td class="unicode">ς<br /></td>
<td>sigmaf</td><td id="sigmaf" class="unicode">ς<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 963, Category: Ll"><td class="name">Greek small letter sigma<br /></td><td>#963</td><td class="unicode">σ<br /></td>
<td>#x3c3</td><td class="unicode">σ<br /></td>
<td>sigma</td><td id="sigma" class="unicode">σ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 964, Category: Ll"><td class="name">Greek small letter tau<br /></td><td>#964</td><td class="unicode">τ<br /></td>
<td>#x3c4</td><td class="unicode">τ<br /></td>
<td>tau</td><td id="tau" class="unicode">τ<br /></td>
</tr>
<tr class="HTMLsymbol MMLExtra " title="Num: 965, Category: Ll"><td class="name">Greek small letter upsilon<br /></td><td>#965</td><td class="unicode">υ<br /></td>
<td>#x3c5</td><td class="unicode">υ<br /></td>
<td>upsilon</td><td id="upsilon" class="unicode">υ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 966, Category: Ll"><td class="name">Greek small letter phi<br /></td><td>#966</td><td class="unicode">φ<br /></td>
<td>#x3c6</td><td class="unicode">φ<br /></td>
<td>phi</td><td id="phi" class="unicode">φ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 967, Category: Ll"><td class="name">Greek small letter chi<br /></td><td>#967</td><td class="unicode">χ<br /></td>
<td>#x3c7</td><td class="unicode">χ<br /></td>
<td>chi</td><td id="chi" class="unicode">χ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 968, Category: Ll"><td class="name">Greek small letter psi<br /></td><td>#968</td><td class="unicode">ψ<br /></td>
<td>#x3c8</td><td class="unicode">ψ<br /></td>
<td>psi</td><td id="psi" class="unicode">ψ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 969, Category: Ll"><td class="name">Greek small letter omega<br /></td><td>#969</td><td class="unicode">ω<br /></td>
<td>#x3c9</td><td class="unicode">ω<br /></td>
<td>omega</td><td id="omega" class="unicode">ω<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 977, Category: Ll, Decomposition: <compat> 03B8"><td class="name">Greek theta symbol<br /></td><td>#977</td><td class="unicode">ϑ<br /></td>
<td>#x3d1</td><td class="unicode">ϑ<br /></td>
<td>thetasym</td><td id="thetasym" class="unicode">ϑ<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 978, Category: Lu, Decomposition: <compat> 03A5"><td class="name">Greek upsilon with hook symbol<br /></td><td>#978</td><td class="unicode">ϒ<br /></td>
<td>#x3d2</td><td class="unicode">ϒ<br /></td>
<td>upsih</td><td id="upsih" class="unicode">ϒ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 982, Category: Ll, Decomposition: <compat> 03C0"><td class="name">Greek pi symbol<br /></td><td>#982</td><td class="unicode">ϖ<br /></td>
<td>#x3d6</td><td class="unicode">ϖ<br /></td>
<td>piv</td><td id="piv" class="unicode">ϖ<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U2000.pdf" title="Unicode Code Charts: General Punctuation (PDF)">General Punctuation</a></th></tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8194, Category: Zs, Decomposition: <compat> 0020"><td class="name">en space<br /></td><td>#8194</td><td class="unicode"><span class="space"> </span><br /></td>
<td>#x2002</td><td class="unicode"><span class="space"> </span><br /></td>
<td>ensp</td><td id="ensp" class="unicode"><span class="space"> </span><br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8195, Category: Zs, Decomposition: <compat> 0020"><td class="name">em space<br /></td><td>#8195</td><td class="unicode"><span class="space"> </span><br /></td>
<td>#x2003</td><td class="unicode"><span class="space"> </span><br /></td>
<td>emsp</td><td id="emsp" class="unicode"><span class="space"> </span><br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8201, Category: Zs, Decomposition: <compat> 0020"><td class="name">thin space<br /></td><td>#8201</td><td class="unicode"><span class="space"> </span><br /></td>
<td>#x2009</td><td class="unicode"><span class="space"> </span><br /></td>
<td>thinsp</td><td id="thinsp" class="unicode"><span class="space"> </span><br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 8204, Category: Cf"><td class="name">zero width non-joiner<br /></td><td>#8204</td><td class="unprintable"></td>
<td>#x200c</td><td class="unprintable"></td>
<td>zwnj</td><td class="unprintable"></td>
</tr>
<tr class="HTMLspecial " title="Num: 8205, Category: Cf"><td class="name">zero width joiner<br /></td><td>#8205</td><td class="unprintable"></td>
<td>#x200d</td><td class="unprintable"></td>
<td>zwj</td><td class="unprintable"></td>
</tr>
<tr class="HTMLspecial " title="Num: 8206, Category: Cf"><td class="name">left-to-right mark<br /></td><td>#8206</td><td class="unprintable"></td>
<td>#x200e</td><td class="unprintable"></td>
<td>lrm</td><td class="unprintable"></td>
</tr>
<tr class="HTMLspecial " title="Num: 8207, Category: Cf"><td class="name">right-to-left mark<br /></td><td>#8207</td><td class="unprintable"></td>
<td>#x200f</td><td class="unprintable"></td>
<td>rlm</td><td class="unprintable"></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8211, Category: Pd"><td class="name">en dash<br /></td><td>#8211</td><td class="unicode">–<br /></td>
<td>#x2013</td><td class="unicode">–<br /></td>
<td>ndash</td><td id="ndash" class="unicode">–<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8212, Category: Pd"><td class="name">em dash<br /></td><td>#8212</td><td class="unicode">—<br /></td>
<td>#x2014</td><td class="unicode">—<br /></td>
<td>mdash</td><td id="mdash" class="unicode">—<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8216, Category: Pi"><td class="name">left single quotation mark<br /></td><td>#8216</td><td class="unicode">‘<br /></td>
<td>#x2018</td><td class="unicode">‘<br /></td>
<td>lsquo</td><td id="lsquo" class="unicode">‘<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8217, Category: Pf"><td class="name">right single quotation mark<br /></td><td>#8217</td><td class="unicode">’<br /></td>
<td>#x2019</td><td class="unicode">’<br /></td>
<td>rsquo</td><td id="rsquo" class="unicode">’<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 8218, Category: Ps"><td class="name">single low-9 quotation mark<br /></td><td>#8218</td><td class="unicode">‚<br /></td>
<td>#x201a</td><td class="unicode">‚<br /></td>
<td>sbquo</td><td id="sbquo" class="unicode">‚<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8220, Category: Pi"><td class="name">left double quotation mark<br /></td><td>#8220</td><td class="unicode">“<br /></td>
<td>#x201c</td><td class="unicode">“<br /></td>
<td>ldquo</td><td id="ldquo" class="unicode">“<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8221, Category: Pf"><td class="name">right double quotation mark<br /></td><td>#8221</td><td class="unicode">”<br /></td>
<td>#x201d</td><td class="unicode">”<br /></td>
<td>rdquo</td><td id="rdquo" class="unicode">”<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 8222, Category: Ps"><td class="name">double low-9 quotation mark<br /></td><td>#8222</td><td class="unicode">„<br /></td>
<td>#x201e</td><td class="unicode">„<br /></td>
<td>bdquo</td><td id="bdquo" class="unicode">„<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8224, Category: Po"><td class="name">dagger<br /></td><td>#8224</td><td class="unicode">†<br /></td>
<td>#x2020</td><td class="unicode">†<br /></td>
<td>dagger</td><td id="dagger" class="unicode">†<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8225, Category: Po"><td class="name">double dagger<br /></td><td>#8225</td><td class="unicode">‡<br /></td>
<td>#x2021</td><td class="unicode">‡<br /></td>
<td>Dagger</td><td id="Dagger" class="unicode">‡<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8226, Category: Po"><td class="name">bullet<br /></td><td>#8226</td><td class="unicode">•<br /></td>
<td>#x2022</td><td class="unicode">•<br /></td>
<td>bull</td><td id="bull" class="unicode">•<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8230, Category: Po, Decomposition: <compat> 002E 002E 002E"><td class="name">horizontal ellipsis<br /></td><td>#8230</td><td class="unicode">…<br /></td>
<td>#x2026</td><td class="unicode">…<br /></td>
<td>hellip</td><td id="hellip" class="unicode">…<br /></td>
</tr>
<tr class="HTMLspecial ISO8879 " title="Num: 8240, Category: Po"><td class="name">per mille sign<br /></td><td>#8240</td><td class="unicode">‰<br /></td>
<td>#x2030</td><td class="unicode">‰<br /></td>
<td>permil</td><td id="permil" class="unicode">‰<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8242, Category: Po"><td class="name">prime<br /></td><td>#8242</td><td class="unicode">′<br /></td>
<td>#x2032</td><td class="unicode">′<br /></td>
<td>prime</td><td id="prime" class="unicode">′<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8243, Category: Po, Decomposition: <compat> 2032 2032"><td class="name">double prime<br /></td><td>#8243</td><td class="unicode">″<br /></td>
<td>#x2033</td><td class="unicode">″<br /></td>
<td>Prime</td><td id="Prime" class="unicode">″<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 8249, Category: Pi"><td class="name">single left-pointing angle quotation mark<br /></td><td>#8249</td><td class="unicode">‹<br /></td>
<td>#x2039</td><td class="unicode">‹<br /></td>
<td>lsaquo</td><td id="lsaquo" class="unicode">‹<br /></td>
</tr>
<tr class="HTMLspecial " title="Num: 8250, Category: Pf"><td class="name">single right-pointing angle quotation mark<br /></td><td>#8250</td><td class="unicode">›<br /></td>
<td>#x203a</td><td class="unicode">›<br /></td>
<td>rsaquo</td><td id="rsaquo" class="unicode">›<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 8254, Category: Po, Decomposition: <compat> 0020 0305"><td class="name">overline<br /></td><td>#8254</td><td class="unicode">‾<br /></td>
<td>#x203e</td><td class="unicode">‾<br /></td>
<td>oline</td><td id="oline" class="unicode">‾<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 8260, Category: Sm"><td class="name">fraction slash<br /></td><td>#8260</td><td class="unicode">⁄<br /></td>
<td>#x2044</td><td class="unicode">⁄<br /></td>
<td>frasl</td><td id="frasl" class="unicode">⁄<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U20A0.pdf" title="Unicode Code Charts: Currency Symbols (PDF)">Currency Symbols</a></th></tr>
<tr class="HTMLspecial " title="Num: 8364, Category: Sc"><td class="name">euro sign<br /></td><td>#8364</td><td class="unicode">€<br /></td>
<td>#x20ac</td><td class="unicode">€<br /></td>
<td>euro</td><td id="euro" class="unicode">€<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U2100.pdf" title="Unicode Code Charts: Letterlike Symbols (PDF)">Letterlike Symbols</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8465, Category: Lu, Decomposition: <font> 0049"><td class="name">black-letter capital I<br /></td><td>#8465</td><td class="unicode">ℑ<br /></td>
<td>#x2111</td><td class="unicode">ℑ<br /></td>
<td>image</td><td id="image" class="unicode">ℑ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8472, Category: So"><td class="name">script capital P<br /></td><td>#8472</td><td class="unicode">℘<br /></td>
<td>#x2118</td><td class="unicode">℘<br /></td>
<td>weierp</td><td id="weierp" class="unicode">℘<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8476, Category: Lu, Decomposition: <font> 0052"><td class="name">black-letter capital R<br /></td><td>#8476</td><td class="unicode">ℜ<br /></td>
<td>#x211c</td><td class="unicode">ℜ<br /></td>
<td>real</td><td id="real" class="unicode">ℜ<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8482, Category: So, Decomposition: <super> 0054 004D"><td class="name">trade mark sign<br /></td><td>#8482</td><td class="unicode">™<br /></td>
<td>#x2122</td><td class="unicode">™<br /></td>
<td>trade</td><td id="trade" class="unicode">™<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 8501, Category: Lo, Decomposition: <compat> 05D0"><td class="name">alef symbol<br /></td><td>#8501</td><td class="unicode">ℵ<br /></td>
<td>#x2135</td><td class="unicode">ℵ<br /></td>
<td>alefsym</td><td id="alefsym" class="unicode">ℵ<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U2190.pdf" title="Unicode Code Charts: Arrows (PDF)">Arrows</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8592, Category: Sm"><td class="name">leftwards arrow<br /></td><td>#8592</td><td class="unicode">←<br /></td>
<td>#x2190</td><td class="unicode">←<br /></td>
<td>larr</td><td id="larr" class="unicode">←<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8593, Category: Sm"><td class="name">upwards arrow<br /></td><td>#8593</td><td class="unicode">↑<br /></td>
<td>#x2191</td><td class="unicode">↑<br /></td>
<td>uarr</td><td id="uarr" class="unicode">↑<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8594, Category: Sm"><td class="name">rightwards arrow<br /></td><td>#8594</td><td class="unicode">→<br /></td>
<td>#x2192</td><td class="unicode">→<br /></td>
<td>rarr</td><td id="rarr" class="unicode">→<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8595, Category: Sm"><td class="name">downwards arrow<br /></td><td>#8595</td><td class="unicode">↓<br /></td>
<td>#x2193</td><td class="unicode">↓<br /></td>
<td>darr</td><td id="darr" class="unicode">↓<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8596, Category: Sm"><td class="name">left right arrow<br /></td><td>#8596</td><td class="unicode">↔<br /></td>
<td>#x2194</td><td class="unicode">↔<br /></td>
<td>harr</td><td id="harr" class="unicode">↔<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 8629, Category: So"><td class="name">downwards arrow with corner leftwards<br /></td><td>#8629</td><td class="unicode">↵<br /></td>
<td>#x21b5</td><td class="unicode">↵<br /></td>
<td>crarr</td><td id="crarr" class="unicode">↵<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8656, Category: So"><td class="name">leftwards double arrow<br /></td><td>#8656</td><td class="unicode">⇐<br /></td>
<td>#x21d0</td><td class="unicode">⇐<br /></td>
<td>lArr</td><td id="lArr" class="unicode">⇐<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8657, Category: So"><td class="name">upwards double arrow<br /></td><td>#8657</td><td class="unicode">⇑<br /></td>
<td>#x21d1</td><td class="unicode">⇑<br /></td>
<td>uArr</td><td id="uArr" class="unicode">⇑<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8658, Category: Sm"><td class="name">rightwards double arrow<br /></td><td>#8658</td><td class="unicode">⇒<br /></td>
<td>#x21d2</td><td class="unicode">⇒<br /></td>
<td>rArr</td><td id="rArr" class="unicode">⇒<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8659, Category: So"><td class="name">downwards double arrow<br /></td><td>#8659</td><td class="unicode">⇓<br /></td>
<td>#x21d3</td><td class="unicode">⇓<br /></td>
<td>dArr</td><td id="dArr" class="unicode">⇓<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8660, Category: Sm"><td class="name">left right double arrow<br /></td><td>#8660</td><td class="unicode">⇔<br /></td>
<td>#x21d4</td><td class="unicode">⇔<br /></td>
<td>hArr</td><td id="hArr" class="unicode">⇔<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U2200.pdf" title="Unicode Code Charts: Mathematical Operators (PDF)">Mathematical Operators</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8704, Category: Sm"><td class="name">for all<br /></td><td>#8704</td><td class="unicode">∀<br /></td>
<td>#x2200</td><td class="unicode">∀<br /></td>
<td>forall</td><td id="forall" class="unicode">∀<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8706, Category: Sm"><td class="name">partial differential<br /></td><td>#8706</td><td class="unicode">∂<br /></td>
<td>#x2202</td><td class="unicode">∂<br /></td>
<td>part</td><td id="part" class="unicode">∂<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8707, Category: Sm"><td class="name">there exists<br /></td><td>#8707</td><td class="unicode">∃<br /></td>
<td>#x2203</td><td class="unicode">∃<br /></td>
<td>exist</td><td id="exist" class="unicode">∃<br /></td>
</tr>
<tr class="HTMLsymbol ISO9573 " title="Num: 8709, Category: Sm"><td class="name">empty set<br /></td><td>#8709</td><td class="unicode">∅<br /></td>
<td>#x2205</td><td class="unicode">∅<br /></td>
<td>empty</td><td id="empty" class="unicode">∅<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8711, Category: Sm"><td class="name">nabla<br /></td><td>#8711</td><td class="unicode">∇<br /></td>
<td>#x2207</td><td class="unicode">∇<br /></td>
<td>nabla</td><td id="nabla" class="unicode">∇<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8712, Category: Sm"><td class="name">element of<br /></td><td>#8712</td><td class="unicode">∈<br /></td>
<td>#x2208</td><td class="unicode">∈<br /></td>
<td>isin</td><td id="isin" class="unicode">∈<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8713, Category: Sm, Decomposition: 2208 0338"><td class="name">not an element of<br /></td><td>#8713</td><td class="unicode">∉<br /></td>
<td>#x2209</td><td class="unicode">∉<br /></td>
<td>notin</td><td id="notin" class="unicode">∉<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8715, Category: Sm"><td class="name">contains as member<br /></td><td>#8715</td><td class="unicode">∋<br /></td>
<td>#x220b</td><td class="unicode">∋<br /></td>
<td>ni</td><td id="ni" class="unicode">∋<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8719, Category: Sm"><td class="name">n-ary product<br /></td><td>#8719</td><td class="unicode">∏<br /></td>
<td>#x220f</td><td class="unicode">∏<br /></td>
<td>prod</td><td id="prod" class="unicode">∏<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8721, Category: Sm"><td class="name">n-ary summation<br /></td><td>#8721</td><td class="unicode">∑<br /></td>
<td>#x2211</td><td class="unicode">∑<br /></td>
<td>sum</td><td id="sum" class="unicode">∑<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8722, Category: Sm"><td class="name">minus sign<br /></td><td>#8722</td><td class="unicode">−<br /></td>
<td>#x2212</td><td class="unicode">−<br /></td>
<td>minus</td><td id="minus" class="unicode">−<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8727, Category: Sm"><td class="name">asterisk operator<br /></td><td>#8727</td><td class="unicode">∗<br /></td>
<td>#x2217</td><td class="unicode">∗<br /></td>
<td>lowast</td><td id="lowast" class="unicode">∗<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8730, Category: Sm"><td class="name">square root<br /></td><td>#8730</td><td class="unicode">√<br /></td>
<td>#x221a</td><td class="unicode">√<br /></td>
<td>radic</td><td id="radic" class="unicode">√<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8733, Category: Sm"><td class="name">proportional to<br /></td><td>#8733</td><td class="unicode">∝<br /></td>
<td>#x221d</td><td class="unicode">∝<br /></td>
<td>prop</td><td id="prop" class="unicode">∝<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8734, Category: Sm"><td class="name">infinity<br /></td><td>#8734</td><td class="unicode">∞<br /></td>
<td>#x221e</td><td class="unicode">∞<br /></td>
<td>infin</td><td id="infin" class="unicode">∞<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8736, Category: Sm"><td class="name">angle<br /></td><td>#8736</td><td class="unicode">∠<br /></td>
<td>#x2220</td><td class="unicode">∠<br /></td>
<td>ang</td><td id="ang" class="unicode">∠<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8743, Category: Sm"><td class="name">logical and<br /></td><td>#8743</td><td class="unicode">∧<br /></td>
<td>#x2227</td><td class="unicode">∧<br /></td>
<td>and</td><td id="and" class="unicode">∧<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8744, Category: Sm"><td class="name">logical or<br /></td><td>#8744</td><td class="unicode">∨<br /></td>
<td>#x2228</td><td class="unicode">∨<br /></td>
<td>or</td><td id="or" class="unicode">∨<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8745, Category: Sm"><td class="name">intersection<br /></td><td>#8745</td><td class="unicode">∩<br /></td>
<td>#x2229</td><td class="unicode">∩<br /></td>
<td>cap</td><td id="cap" class="unicode">∩<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8746, Category: Sm"><td class="name">union<br /></td><td>#8746</td><td class="unicode">∪<br /></td>
<td>#x222a</td><td class="unicode">∪<br /></td>
<td>cup</td><td id="cup" class="unicode">∪<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8747, Category: Sm"><td class="name">integral<br /></td><td>#8747</td><td class="unicode">∫<br /></td>
<td>#x222b</td><td class="unicode">∫<br /></td>
<td>int</td><td id="int" class="unicode">∫<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8756, Category: Sm"><td class="name">therefore<br /></td><td>#8756</td><td class="unicode">∴<br /></td>
<td>#x2234</td><td class="unicode">∴<br /></td>
<td>there4</td><td id="there4" class="unicode">∴<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8764, Category: Sm"><td class="name">tilde operator<br /></td><td>#8764</td><td class="unicode">∼<br /></td>
<td>#x223c</td><td class="unicode">∼<br /></td>
<td>sim</td><td id="sim" class="unicode">∼<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8773, Category: Sm"><td class="name">approximately equal to<br /></td><td>#8773</td><td class="unicode">≅<br /></td>
<td>#x2245</td><td class="unicode">≅<br /></td>
<td>cong</td><td id="cong" class="unicode">≅<br /></td>
</tr>
<tr class="HTMLsymbol " title="Num: 8776, Category: Sm"><td class="name">almost equal to<br /></td><td>#8776</td><td class="unicode">≈<br /></td>
<td>#x2248</td><td class="unicode">≈<br /></td>
<td>asymp</td><td id="asymp" class="unicode">≈<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8800, Category: Sm, Decomposition: 003D 0338"><td class="name">not equal to<br /></td><td>#8800</td><td class="unicode">≠<br /></td>
<td>#x2260</td><td class="unicode">≠<br /></td>
<td>ne</td><td id="ne" class="unicode">≠<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8801, Category: Sm"><td class="name">identical to<br /></td><td>#8801</td><td class="unicode">≡<br /></td>
<td>#x2261</td><td class="unicode">≡<br /></td>
<td>equiv</td><td id="equiv" class="unicode">≡<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8804, Category: Sm"><td class="name">less-than or equal to<br /></td><td>#8804</td><td class="unicode">≤<br /></td>
<td>#x2264</td><td class="unicode">≤<br /></td>
<td>le</td><td id="le" class="unicode">≤<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8805, Category: Sm"><td class="name">greater-than or equal to<br /></td><td>#8805</td><td class="unicode">≥<br /></td>
<td>#x2265</td><td class="unicode">≥<br /></td>
<td>ge</td><td id="ge" class="unicode">≥<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8834, Category: Sm"><td class="name">subset of<br /></td><td>#8834</td><td class="unicode">⊂<br /></td>
<td>#x2282</td><td class="unicode">⊂<br /></td>
<td>sub</td><td id="sub" class="unicode">⊂<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8835, Category: Sm"><td class="name">superset of<br /></td><td>#8835</td><td class="unicode">⊃<br /></td>
<td>#x2283</td><td class="unicode">⊃<br /></td>
<td>sup</td><td id="sup" class="unicode">⊃<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8836, Category: Sm, Decomposition: 2282 0338"><td class="name">not a subset of<br /></td><td>#8836</td><td class="unicode">⊄<br /></td>
<td>#x2284</td><td class="unicode">⊄<br /></td>
<td>nsub</td><td id="nsub" class="unicode">⊄<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8838, Category: Sm"><td class="name">subset of or equal to<br /></td><td>#8838</td><td class="unicode">⊆<br /></td>
<td>#x2286</td><td class="unicode">⊆<br /></td>
<td>sube</td><td id="sube" class="unicode">⊆<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8839, Category: Sm"><td class="name">superset of or equal to<br /></td><td>#8839</td><td class="unicode">⊇<br /></td>
<td>#x2287</td><td class="unicode">⊇<br /></td>
<td>supe</td><td id="supe" class="unicode">⊇<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8853, Category: Sm"><td class="name">circled plus<br /></td><td>#8853</td><td class="unicode">⊕<br /></td>
<td>#x2295</td><td class="unicode">⊕<br /></td>
<td>oplus</td><td id="oplus" class="unicode">⊕<br /></td>
</tr>
<tr class="HTMLsymbol ISO9573 " title="Num: 8855, Category: Sm"><td class="name">circled times<br /></td><td>#8855</td><td class="unicode">⊗<br /></td>
<td>#x2297</td><td class="unicode">⊗<br /></td>
<td>otimes</td><td id="otimes" class="unicode">⊗<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8869, Category: Sm"><td class="name">up tack<br /></td><td>#8869</td><td class="unicode">⊥<br /></td>
<td>#x22a5</td><td class="unicode">⊥<br /></td>
<td>perp</td><td id="perp" class="unicode">⊥<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8901, Category: Sm"><td class="name">dot operator<br /></td><td>#8901</td><td class="unicode">⋅<br /></td>
<td>#x22c5</td><td class="unicode">⋅<br /></td>
<td>sdot</td><td id="sdot" class="unicode">⋅<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U2300.pdf" title="Unicode Code Charts: Miscellaneous Technical (PDF)">Miscellaneous Technical</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8968, Category: Sm"><td class="name">left ceiling<br /></td><td>#8968</td><td class="unicode">⌈<br /></td>
<td>#x2308</td><td class="unicode">⌈<br /></td>
<td>lceil</td><td id="lceil" class="unicode">⌈<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8969, Category: Sm"><td class="name">right ceiling<br /></td><td>#8969</td><td class="unicode">⌉<br /></td>
<td>#x2309</td><td class="unicode">⌉<br /></td>
<td>rceil</td><td id="rceil" class="unicode">⌉<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8970, Category: Sm"><td class="name">left floor<br /></td><td>#8970</td><td class="unicode">⌊<br /></td>
<td>#x230a</td><td class="unicode">⌊<br /></td>
<td>lfloor</td><td id="lfloor" class="unicode">⌊<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 8971, Category: Sm"><td class="name">right floor<br /></td><td>#8971</td><td class="unicode">⌋<br /></td>
<td>#x230b</td><td class="unicode">⌋<br /></td>
<td>rfloor</td><td id="rfloor" class="unicode">⌋<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9001, Category: Ps, Decomposition: 3008"><td class="name">left-pointing angle bracket<br /></td><td>#9001</td><td class="unicode">〈<br /></td>
<td>#x2329</td><td class="unicode">〈<br /></td>
<td>lang</td><td id="lang" class="unicode">⟨<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9002, Category: Pe, Decomposition: 3009"><td class="name">right-pointing angle bracket<br /></td><td>#9002</td><td class="unicode">〉<br /></td>
<td>#x232a</td><td class="unicode">〉<br /></td>
<td>rang</td><td id="rang" class="unicode">⟩<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U25A0.pdf" title="Unicode Code Charts: Geometric Shapes (PDF)">Geometric Shapes</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9674, Category: So"><td class="name">lozenge<br /></td><td>#9674</td><td class="unicode">◊<br /></td>
<td>#x25ca</td><td class="unicode">◊<br /></td>
<td>loz</td><td id="loz" class="unicode">◊<br /></td>
</tr>
</tbody>
<tbody><tr><th colspan="7" scope="rowgroup"><a href="http://www.unicode.org/charts/PDF/U2600.pdf" title="Unicode Code Charts: Miscellaneous Symbols (PDF)">Miscellaneous Symbols</a></th></tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9824, Category: So"><td class="name">black spade suit<br /></td><td>#9824</td><td class="unicode">♠<br /></td>
<td>#x2660</td><td class="unicode">♠<br /></td>
<td>spades</td><td id="spades" class="unicode">♠<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9827, Category: So"><td class="name">black club suit<br /></td><td>#9827</td><td class="unicode">♣<br /></td>
<td>#x2663</td><td class="unicode">♣<br /></td>
<td>clubs</td><td id="clubs" class="unicode">♣<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9829, Category: So"><td class="name">black heart suit<br /></td><td>#9829</td><td class="unicode">♥<br /></td>
<td>#x2665</td><td class="unicode">♥<br /></td>
<td>hearts</td><td id="hearts" class="unicode">♥<br /></td>
</tr>
<tr class="HTMLsymbol ISO8879 " title="Num: 9830, Category: So"><td class="name">black diamond suit<br /></td><td>#9830</td><td class="unicode">♦<br /></td>
<td>#x2666</td><td class="unicode">♦<br /></td>
<td>diams</td><td id="diams" class="unicode">♦<br /></td>
</tr>
</tbody>
</table>
<div id="browserver">
<h2>Your Browser</h2>
<p>Your Web browser identified itself as <strong><code id="useragent">Wget/1.11.4</code></strong> when it requested this page.</p>
<script type="text/javascript" src="browserid.js"></script>
<noscript><p>Your Web browser did not run a script to reveal how it identifies itself to scripts.</p></noscript>
</div>
<div id="footer">
<div id="buttons">
<a href="http://www.mozilla.com/firefox/" title="Mozilla Firefox"><object type="image/png" width="80" height="15" id="firefox_button" data="/images/buttons/firefox.png">Get Firefox</object></a>
<a href="http://my.opera.com/rlionheart/affiliate/" title="Opera"><object type="image/png" width="80" height="15" id="opera_button" data="/images/buttons/opera.png">Get Opera</object></a>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/" title="Creative Commons Deed"><object type="image/png" width="80" height="15" id="cc_button" data="/images/buttons/cc.png">Some rights reserved.</object></a>
<a href="http://www.htmlhelp.com/cgi-bin/validate.cgi?url=referer" title="WDG HTML Validation Service"><object type="image/png" width="80" height="15" id="xhtml11_button" data="/images/buttons/xhtml11.png">Valid XHTML 1.1</object></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" title="W3C CSS Validation Service"><object type="image/png" width="80" height="15" id="css_button" data="/images/buttons/css.png">Valid CSS</object></a>
</div>
<p><a rel="copyright" href="/copyright" class="local">©</a> 1998 <span class="vcard"><a rel="home" href="/" class="local fn">Robin Lionheart</a> (<a rev="made" href="mailto:lionheart@robinlionheart.com" class="email local">lionheart@robin­lionheart.com</a>) [<a href="/robin/pubkey" class="local">public key</a>]</span></p>
<div id="dehanced">
<p>Best read with a browser that supports <abbr title="Extensible Hypertext Markup Language">XHTML</abbr>, <abbr title="Cascading Style Sheets level 2">CSS 2</abbr>, and <abbr title="Portable Network Graphics">PNG</abbr> images. I recommend <a href="http://www.mozilla.org/products/firefox/">Firefox</a>.</p>
<p>Degraded to fit your browser (JavaScript MIME type).</p>
</div> </div>
</body>
</html>
|