blob: 5b4a325881463bbd68d6f451a28f458049e6919a (
plain) (
blame)
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
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
|
%%
AElig 0xC6
AMP 0x26
Aacute 0xC1
Abreve 0x102
Acirc 0xC2
Acy 0x410
Afr 0x1D504
Agrave 0xC0
Alpha 0x391
Amacr 0x100
And 0x2A53
Aogon 0x104
Aopf 0x1D538
ApplyFunction 0x2061
Aring 0xC5
Ascr 0x1D49C
Assign 0x2254
Atilde 0xC3
Auml 0xC4
Backslash 0x2216
Barv 0x2AE7
Barwed 0x2306
Bcy 0x411
Because 0x2235
Bernoullis 0x212C
Beta 0x392
Bfr 0x1D505
Bopf 0x1D539
Breve 0x2D8
Bscr 0x212C
Bumpeq 0x224E
CHcy 0x427
COPY 0xA9
Cacute 0x106
Cap 0x22D2
CapitalDifferentialD 0x2145
Cayleys 0x212D
Ccaron 0x10C
Ccedil 0xC7
Ccirc 0x108
Cconint 0x2230
Cdot 0x10A
Cedilla 0xB8
CenterDot 0xB7
Cfr 0x212D
Chi 0x3A7
CircleDot 0x2299
CircleMinus 0x2296
CirclePlus 0x2295
CircleTimes 0x2297
ClockwiseContourIntegral 0x2232
CloseCurlyDoubleQuote 0x201D
CloseCurlyQuote 0x2019
Colon 0x2237
Colone 0x2A74
Congruent 0x2261
Conint 0x222F
ContourIntegral 0x222E
Copf 0x2102
Coproduct 0x2210
CounterClockwiseContourIntegral 0x2233
Cross 0x2A2F
Cscr 0x1D49E
Cup 0x22D3
CupCap 0x224D
DD 0x2145
DDotrahd 0x2911
DJcy 0x402
DScy 0x405
DZcy 0x40F
Dagger 0x2021
Darr 0x21A1
Dashv 0x2AE4
Dcaron 0x10E
Dcy 0x414
Del 0x2207
Delta 0x394
Dfr 0x1D507
DiacriticalAcute 0xB4
DiacriticalDot 0x2D9
DiacriticalDoubleAcute 0x2DD
DiacriticalGrave 0x60
DiacriticalTilde 0x2DC
Diamond 0x22C4
DifferentialD 0x2146
Dopf 0x1D53B
Dot 0xA8
DotDot 0x20DC
DotEqual 0x2250
DoubleContourIntegral 0x222F
DoubleDot 0xA8
DoubleDownArrow 0x21D3
DoubleLeftArrow 0x21D0
DoubleLeftRightArrow 0x21D4
DoubleLeftTee 0x2AE4
DoubleLongLeftArrow 0x27F8
DoubleLongLeftRightArrow 0x27FA
DoubleLongRightArrow 0x27F9
DoubleRightArrow 0x21D2
DoubleRightTee 0x22A8
DoubleUpArrow 0x21D1
DoubleUpDownArrow 0x21D5
DoubleVerticalBar 0x2225
DownArrow 0x2193
DownArrowBar 0x2913
DownArrowUpArrow 0x21F5
DownBreve 0x311
DownLeftRightVector 0x2950
DownLeftTeeVector 0x295E
DownLeftVector 0x21BD
DownLeftVectorBar 0x2956
DownRightTeeVector 0x295F
DownRightVector 0x21C1
DownRightVectorBar 0x2957
DownTee 0x22A4
DownTeeArrow 0x21A7
Downarrow 0x21D3
Dscr 0x1D49F
Dstrok 0x110
ENG 0x14A
ETH 0xD0
Eacute 0xC9
Ecaron 0x11A
Ecirc 0xCA
Ecy 0x42D
Edot 0x116
Efr 0x1D508
Egrave 0xC8
Element 0x2208
Emacr 0x112
EmptySmallSquare 0x25FB
EmptyVerySmallSquare 0x25AB
Eogon 0x118
Eopf 0x1D53C
Epsilon 0x395
Equal 0x2A75
EqualTilde 0x2242
Equilibrium 0x21CC
Escr 0x2130
Esim 0x2A73
Eta 0x397
Euml 0xCB
Exists 0x2203
ExponentialE 0x2147
Fcy 0x424
Ffr 0x1D509
FilledSmallSquare 0x25FC
FilledVerySmallSquare 0x25AA
Fopf 0x1D53D
ForAll 0x2200
Fouriertrf 0x2131
Fscr 0x2131
GJcy 0x403
GT 0x3E
Gamma 0x393
Gammad 0x3DC
Gbreve 0x11E
Gcedil 0x122
Gcirc 0x11C
Gcy 0x413
Gdot 0x120
Gfr 0x1D50A
Gg 0x22D9
Gopf 0x1D53E
GreaterEqual 0x2265
GreaterEqualLess 0x22DB
GreaterFullEqual 0x2267
GreaterGreater 0x2AA2
GreaterLess 0x2277
GreaterSlantEqual 0x2A7E
GreaterTilde 0x2273
Gscr 0x1D4A2
Gt 0x226B
HARDcy 0x42A
Hacek 0x2C7
Hat 0x5E
Hcirc 0x124
Hfr 0x210C
HilbertSpace 0x210B
Hopf 0x210D
HorizontalLine 0x2500
Hscr 0x210B
Hstrok 0x126
HumpDownHump 0x224E
HumpEqual 0x224F
IEcy 0x415
IJlig 0x132
IOcy 0x401
Iacute 0xCD
Icirc 0xCE
Icy 0x418
Idot 0x130
Ifr 0x2111
Igrave 0xCC
Im 0x2111
Imacr 0x12A
ImaginaryI 0x2148
Implies 0x21D2
Int 0x222C
Integral 0x222B
Intersection 0x22C2
InvisibleComma 0x2063
InvisibleTimes 0x2062
Iogon 0x12E
Iopf 0x1D540
Iota 0x399
Iscr 0x2110
Itilde 0x128
Iukcy 0x406
Iuml 0xCF
Jcirc 0x134
Jcy 0x419
Jfr 0x1D50D
Jopf 0x1D541
Jscr 0x1D4A5
Jsercy 0x408
Jukcy 0x404
KHcy 0x425
KJcy 0x40C
Kappa 0x39A
Kcedil 0x136
Kcy 0x41A
Kfr 0x1D50E
Kopf 0x1D542
Kscr 0x1D4A6
LJcy 0x409
LT 0x3C
Lacute 0x139
Lambda 0x39B
Lang 0x27EA
Laplacetrf 0x2112
Larr 0x219E
Lcaron 0x13D
Lcedil 0x13B
Lcy 0x41B
LeftAngleBracket 0x27E8
LeftArrow 0x2190
LeftArrowBar 0x21E4
LeftArrowRightArrow 0x21C6
LeftCeiling 0x2308
LeftDoubleBracket 0x27E6
LeftDownTeeVector 0x2961
LeftDownVector 0x21C3
LeftDownVectorBar 0x2959
LeftFloor 0x230A
LeftRightArrow 0x2194
LeftRightVector 0x294E
LeftTee 0x22A3
LeftTeeArrow 0x21A4
LeftTeeVector 0x295A
LeftTriangle 0x22B2
LeftTriangleBar 0x29CF
LeftTriangleEqual 0x22B4
LeftUpDownVector 0x2951
LeftUpTeeVector 0x2960
LeftUpVector 0x21BF
LeftUpVectorBar 0x2958
LeftVector 0x21BC
LeftVectorBar 0x2952
Leftarrow 0x21D0
Leftrightarrow 0x21D4
LessEqualGreater 0x22DA
LessFullEqual 0x2266
LessGreater 0x2276
LessLess 0x2AA1
LessSlantEqual 0x2A7D
LessTilde 0x2272
Lfr 0x1D50F
Ll 0x22D8
Lleftarrow 0x21DA
Lmidot 0x13F
LongLeftArrow 0x27F5
LongLeftRightArrow 0x27F7
LongRightArrow 0x27F6
Longleftarrow 0x27F8
Longleftrightarrow 0x27FA
Longrightarrow 0x27F9
Lopf 0x1D543
LowerLeftArrow 0x2199
LowerRightArrow 0x2198
Lscr 0x2112
Lsh 0x21B0
Lstrok 0x141
Lt 0x226A
Map 0x2905
Mcy 0x41C
MediumSpace 0x205F
Mellintrf 0x2133
Mfr 0x1D510
MinusPlus 0x2213
Mopf 0x1D544
Mscr 0x2133
Mu 0x39C
NJcy 0x40A
Nacute 0x143
Ncaron 0x147
Ncedil 0x145
Ncy 0x41D
NegativeMediumSpace 0x200B
NegativeThickSpace 0x200B
NegativeThinSpace 0x200B
NegativeVeryThinSpace 0x200B
NestedGreaterGreater 0x226B
NestedLessLess 0x226A
NewLine 0xA
Nfr 0x1D511
NoBreak 0x2060
NonBreakingSpace 0xA0
Nopf 0x2115
Not 0x2AEC
NotCongruent 0x2262
NotCupCap 0x226D
NotDoubleVerticalBar 0x2226
NotElement 0x2209
NotEqual 0x2260
NotExists 0x2204
NotGreater 0x226F
NotGreaterEqual 0x2271
NotGreaterLess 0x2279
NotGreaterTilde 0x2275
NotLeftTriangle 0x22EA
NotLeftTriangleEqual 0x22EC
NotLess 0x226E
NotLessEqual 0x2270
NotLessGreater 0x2278
NotLessTilde 0x2274
NotPrecedes 0x2280
NotPrecedesSlantEqual 0x22E0
NotReverseElement 0x220C
NotRightTriangle 0x22EB
NotRightTriangleEqual 0x22ED
NotSquareSubsetEqual 0x22E2
NotSquareSupersetEqual 0x22E3
NotSubsetEqual 0x2288
NotSucceeds 0x2281
NotSucceedsSlantEqual 0x22E1
NotSupersetEqual 0x2289
NotTilde 0x2241
NotTildeEqual 0x2244
NotTildeFullEqual 0x2247
NotTildeTilde 0x2249
NotVerticalBar 0x2224
Nscr 0x1D4A9
Ntilde 0xD1
Nu 0x39D
OElig 0x152
Oacute 0xD3
Ocirc 0xD4
Ocy 0x41E
Odblac 0x150
Ofr 0x1D512
Ograve 0xD2
Omacr 0x14C
Omega 0x3A9
Omicron 0x39F
Oopf 0x1D546
OpenCurlyDoubleQuote 0x201C
OpenCurlyQuote 0x2018
Or 0x2A54
Oscr 0x1D4AA
Oslash 0xD8
Otilde 0xD5
Otimes 0x2A37
Ouml 0xD6
OverBar 0x203E
OverBrace 0x23DE
OverBracket 0x23B4
OverParenthesis 0x23DC
PartialD 0x2202
Pcy 0x41F
Pfr 0x1D513
Phi 0x3A6
Pi 0x3A0
PlusMinus 0xB1
Poincareplane 0x210C
Popf 0x2119
Pr 0x2ABB
Precedes 0x227A
PrecedesEqual 0x2AAF
PrecedesSlantEqual 0x227C
PrecedesTilde 0x227E
Prime 0x2033
Product 0x220F
Proportion 0x2237
Proportional 0x221D
Pscr 0x1D4AB
Psi 0x3A8
QUOT 0x22
Qfr 0x1D514
Qopf 0x211A
Qscr 0x1D4AC
RBarr 0x2910
REG 0xAE
Racute 0x154
Rang 0x27EB
Rarr 0x21A0
Rarrtl 0x2916
Rcaron 0x158
Rcedil 0x156
Rcy 0x420
Re 0x211C
ReverseElement 0x220B
ReverseEquilibrium 0x21CB
ReverseUpEquilibrium 0x296F
Rfr 0x211C
Rho 0x3A1
RightAngleBracket 0x27E9
RightArrow 0x2192
RightArrowBar 0x21E5
RightArrowLeftArrow 0x21C4
RightCeiling 0x2309
RightDoubleBracket 0x27E7
RightDownTeeVector 0x295D
RightDownVector 0x21C2
RightDownVectorBar 0x2955
RightFloor 0x230B
RightTee 0x22A2
RightTeeArrow 0x21A6
RightTeeVector 0x295B
RightTriangle 0x22B3
RightTriangleBar 0x29D0
RightTriangleEqual 0x22B5
RightUpDownVector 0x294F
RightUpTeeVector 0x295C
RightUpVector 0x21BE
RightUpVectorBar 0x2954
RightVector 0x21C0
RightVectorBar 0x2953
Rightarrow 0x21D2
Ropf 0x211D
RoundImplies 0x2970
Rrightarrow 0x21DB
Rscr 0x211B
Rsh 0x21B1
RuleDelayed 0x29F4
SHCHcy 0x429
SHcy 0x428
SOFTcy 0x42C
Sacute 0x15A
Sc 0x2ABC
Scaron 0x160
Scedil 0x15E
Scirc 0x15C
Scy 0x421
Sfr 0x1D516
ShortDownArrow 0x2193
ShortLeftArrow 0x2190
ShortRightArrow 0x2192
ShortUpArrow 0x2191
Sigma 0x3A3
SmallCircle 0x2218
Sopf 0x1D54A
Sqrt 0x221A
Square 0x25A1
SquareIntersection 0x2293
SquareSubset 0x228F
SquareSubsetEqual 0x2291
SquareSuperset 0x2290
SquareSupersetEqual 0x2292
SquareUnion 0x2294
Sscr 0x1D4AE
Star 0x22C6
Sub 0x22D0
Subset 0x22D0
SubsetEqual 0x2286
Succeeds 0x227B
SucceedsEqual 0x2AB0
SucceedsSlantEqual 0x227D
SucceedsTilde 0x227F
SuchThat 0x220B
Sum 0x2211
Sup 0x22D1
Superset 0x2283
SupersetEqual 0x2287
Supset 0x22D1
THORN 0xDE
TRADE 0x2122
TSHcy 0x40B
TScy 0x426
Tab 0x9
Tau 0x3A4
Tcaron 0x164
Tcedil 0x162
Tcy 0x422
Tfr 0x1D517
Therefore 0x2234
Theta 0x398
ThinSpace 0x2009
Tilde 0x223C
TildeEqual 0x2243
TildeFullEqual 0x2245
TildeTilde 0x2248
Topf 0x1D54B
TripleDot 0x20DB
Tscr 0x1D4AF
Tstrok 0x166
Uacute 0xDA
Uarr 0x219F
Uarrocir 0x2949
Ubrcy 0x40E
Ubreve 0x16C
Ucirc 0xDB
Ucy 0x423
Udblac 0x170
Ufr 0x1D518
Ugrave 0xD9
Umacr 0x16A
UnderBar 0x5F
UnderBrace 0x23DF
UnderBracket 0x23B5
UnderParenthesis 0x23DD
Union 0x22C3
UnionPlus 0x228E
Uogon 0x172
Uopf 0x1D54C
UpArrow 0x2191
UpArrowBar 0x2912
UpArrowDownArrow 0x21C5
UpDownArrow 0x2195
UpEquilibrium 0x296E
UpTee 0x22A5
UpTeeArrow 0x21A5
Uparrow 0x21D1
Updownarrow 0x21D5
UpperLeftArrow 0x2196
UpperRightArrow 0x2197
Upsi 0x3D2
Upsilon 0x3A5
Uring 0x16E
Uscr 0x1D4B0
Utilde 0x168
Uuml 0xDC
VDash 0x22AB
Vbar 0x2AEB
Vcy 0x412
Vdash 0x22A9
Vdashl 0x2AE6
Vee 0x22C1
Verbar 0x2016
Vert 0x2016
VerticalBar 0x2223
VerticalLine 0x7C
VerticalSeparator 0x2758
VerticalTilde 0x2240
VeryThinSpace 0x200A
Vfr 0x1D519
Vopf 0x1D54D
Vscr 0x1D4B1
Vvdash 0x22AA
Wcirc 0x174
Wedge 0x22C0
Wfr 0x1D51A
Wopf 0x1D54E
Wscr 0x1D4B2
Xfr 0x1D51B
Xi 0x39E
Xopf 0x1D54F
Xscr 0x1D4B3
YAcy 0x42F
YIcy 0x407
YUcy 0x42E
Yacute 0xDD
Ycirc 0x176
Ycy 0x42B
Yfr 0x1D51C
Yopf 0x1D550
Yscr 0x1D4B4
Yuml 0x178
ZHcy 0x416
Zacute 0x179
Zcaron 0x17D
Zcy 0x417
Zdot 0x17B
ZeroWidthSpace 0x200B
Zeta 0x396
Zfr 0x2128
Zopf 0x2124
Zscr 0x1D4B5
aacute 0xE1
abreve 0x103
ac 0x223E
acd 0x223F
acirc 0xE2
acute 0xB4
acy 0x430
aelig 0xE6
af 0x2061
afr 0x1D51E
agrave 0xE0
alefsym 0x2135
aleph 0x2135
alpha 0x3B1
amacr 0x101
amalg 0x2A3F
amp 0x26
and 0x2227
andand 0x2A55
andd 0x2A5C
andslope 0x2A58
andv 0x2A5A
ang 0x2220
ange 0x29A4
angle 0x2220
angmsd 0x2221
angmsdaa 0x29A8
angmsdab 0x29A9
angmsdac 0x29AA
angmsdad 0x29AB
angmsdae 0x29AC
angmsdaf 0x29AD
angmsdag 0x29AE
angmsdah 0x29AF
angrt 0x221F
angrtvb 0x22BE
angrtvbd 0x299D
angsph 0x2222
angst 0xC5
angzarr 0x237C
aogon 0x105
aopf 0x1D552
ap 0x2248
apE 0x2A70
apacir 0x2A6F
ape 0x224A
apid 0x224B
apos 0x27
approx 0x2248
approxeq 0x224A
aring 0xE5
ascr 0x1D4B6
ast 0x2A
asymp 0x2248
asympeq 0x224D
atilde 0xE3
auml 0xE4
awconint 0x2233
awint 0x2A11
bNot 0x2AED
backcong 0x224C
backepsilon 0x3F6
backprime 0x2035
backsim 0x223D
backsimeq 0x22CD
barvee 0x22BD
barwed 0x2305
barwedge 0x2305
bbrk 0x23B5
bbrktbrk 0x23B6
bcong 0x224C
bcy 0x431
bdquo 0x201E
becaus 0x2235
because 0x2235
bemptyv 0x29B0
bepsi 0x3F6
bernou 0x212C
beta 0x3B2
beth 0x2136
between 0x226C
bfr 0x1D51F
bigcap 0x22C2
bigcirc 0x25EF
bigcup 0x22C3
bigodot 0x2A00
bigoplus 0x2A01
bigotimes 0x2A02
bigsqcup 0x2A06
bigstar 0x2605
bigtriangledown 0x25BD
bigtriangleup 0x25B3
biguplus 0x2A04
bigvee 0x22C1
bigwedge 0x22C0
bkarow 0x290D
blacklozenge 0x29EB
blacksquare 0x25AA
blacktriangle 0x25B4
blacktriangledown 0x25BE
blacktriangleleft 0x25C2
blacktriangleright 0x25B8
blank 0x2423
blk12 0x2592
blk14 0x2591
blk34 0x2593
block 0x2588
bnot 0x2310
bopf 0x1D553
bot 0x22A5
bottom 0x22A5
bowtie 0x22C8
boxDL 0x2557
boxDR 0x2554
boxDl 0x2556
boxDr 0x2553
boxH 0x2550
boxHD 0x2566
boxHU 0x2569
boxHd 0x2564
boxHu 0x2567
boxUL 0x255D
boxUR 0x255A
boxUl 0x255C
boxUr 0x2559
boxV 0x2551
boxVH 0x256C
boxVL 0x2563
boxVR 0x2560
boxVh 0x256B
boxVl 0x2562
boxVr 0x255F
boxbox 0x29C9
boxdL 0x2555
boxdR 0x2552
boxdl 0x2510
boxdr 0x250C
boxh 0x2500
boxhD 0x2565
boxhU 0x2568
boxhd 0x252C
boxhu 0x2534
boxminus 0x229F
boxplus 0x229E
boxtimes 0x22A0
boxuL 0x255B
boxuR 0x2558
boxul 0x2518
boxur 0x2514
boxv 0x2502
boxvH 0x256A
boxvL 0x2561
boxvR 0x255E
boxvh 0x253C
boxvl 0x2524
boxvr 0x251C
bprime 0x2035
breve 0x2D8
brvbar 0xA6
bscr 0x1D4B7
bsemi 0x204F
bsim 0x223D
bsime 0x22CD
bsol 0x5C
bsolb 0x29C5
bsolhsub 0x27C8
bull 0x2022
bullet 0x2022
bump 0x224E
bumpE 0x2AAE
bumpe 0x224F
bumpeq 0x224F
cacute 0x107
cap 0x2229
capand 0x2A44
capbrcup 0x2A49
capcap 0x2A4B
capcup 0x2A47
capdot 0x2A40
caret 0x2041
caron 0x2C7
ccaps 0x2A4D
ccaron 0x10D
ccedil 0xE7
ccirc 0x109
ccups 0x2A4C
ccupssm 0x2A50
cdot 0x10B
cedil 0xB8
cemptyv 0x29B2
cent 0xA2
centerdot 0xB7
cfr 0x1D520
chcy 0x447
check 0x2713
checkmark 0x2713
chi 0x3C7
cir 0x25CB
cirE 0x29C3
circ 0x2C6
circeq 0x2257
circlearrowleft 0x21BA
circlearrowright 0x21BB
circledR 0xAE
circledS 0x24C8
circledast 0x229B
circledcirc 0x229A
circleddash 0x229D
cire 0x2257
cirfnint 0x2A10
cirmid 0x2AEF
cirscir 0x29C2
clubs 0x2663
clubsuit 0x2663
colon 0x3A
colone 0x2254
coloneq 0x2254
comma 0x2C
commat 0x40
comp 0x2201
compfn 0x2218
complement 0x2201
complexes 0x2102
cong 0x2245
congdot 0x2A6D
conint 0x222E
copf 0x1D554
coprod 0x2210
copy 0xA9
copysr 0x2117
crarr 0x21B5
cross 0x2717
cscr 0x1D4B8
csub 0x2ACF
csube 0x2AD1
csup 0x2AD0
csupe 0x2AD2
ctdot 0x22EF
cudarrl 0x2938
cudarrr 0x2935
cuepr 0x22DE
cuesc 0x22DF
cularr 0x21B6
cularrp 0x293D
cup 0x222A
cupbrcap 0x2A48
cupcap 0x2A46
cupcup 0x2A4A
cupdot 0x228D
cupor 0x2A45
curarr 0x21B7
curarrm 0x293C
curlyeqprec 0x22DE
curlyeqsucc 0x22DF
curlyvee 0x22CE
curlywedge 0x22CF
curren 0xA4
curvearrowleft 0x21B6
curvearrowright 0x21B7
cuvee 0x22CE
cuwed 0x22CF
cwconint 0x2232
cwint 0x2231
cylcty 0x232D
dArr 0x21D3
dHar 0x2965
dagger 0x2020
daleth 0x2138
darr 0x2193
dash 0x2010
dashv 0x22A3
dbkarow 0x290F
dblac 0x2DD
dcaron 0x10F
dcy 0x434
dd 0x2146
ddagger 0x2021
ddarr 0x21CA
ddotseq 0x2A77
deg 0xB0
delta 0x3B4
demptyv 0x29B1
dfisht 0x297F
dfr 0x1D521
dharl 0x21C3
dharr 0x21C2
diam 0x22C4
diamond 0x22C4
diamondsuit 0x2666
diams 0x2666
die 0xA8
digamma 0x3DD
disin 0x22F2
div 0xF7
divide 0xF7
divideontimes 0x22C7
divonx 0x22C7
djcy 0x452
dlcorn 0x231E
dlcrop 0x230D
dollar 0x24
dopf 0x1D555
dot 0x2D9
doteq 0x2250
doteqdot 0x2251
dotminus 0x2238
dotplus 0x2214
dotsquare 0x22A1
doublebarwedge 0x2306
downarrow 0x2193
downdownarrows 0x21CA
downharpoonleft 0x21C3
downharpoonright 0x21C2
drbkarow 0x2910
drcorn 0x231F
drcrop 0x230C
dscr 0x1D4B9
dscy 0x455
dsol 0x29F6
dstrok 0x111
dtdot 0x22F1
dtri 0x25BF
dtrif 0x25BE
duarr 0x21F5
duhar 0x296F
dwangle 0x29A6
dzcy 0x45F
dzigrarr 0x27FF
eDDot 0x2A77
eDot 0x2251
eacute 0xE9
easter 0x2A6E
ecaron 0x11B
ecir 0x2256
ecirc 0xEA
ecolon 0x2255
ecy 0x44D
edot 0x117
ee 0x2147
efDot 0x2252
efr 0x1D522
eg 0x2A9A
egrave 0xE8
egs 0x2A96
egsdot 0x2A98
el 0x2A99
elinters 0x23E7
ell 0x2113
els 0x2A95
elsdot 0x2A97
emacr 0x113
empty 0x2205
emptyset 0x2205
emptyv 0x2205
emsp13 0x2004
emsp14 0x2005
emsp 0x2003
eng 0x14B
ensp 0x2002
eogon 0x119
eopf 0x1D556
epar 0x22D5
eparsl 0x29E3
eplus 0x2A71
epsi 0x3B5
epsilon 0x3B5
epsiv 0x3F5
eqcirc 0x2256
eqcolon 0x2255
eqsim 0x2242
eqslantgtr 0x2A96
eqslantless 0x2A95
equals 0x3D
equest 0x225F
equiv 0x2261
equivDD 0x2A78
eqvparsl 0x29E5
erDot 0x2253
erarr 0x2971
escr 0x212F
esdot 0x2250
esim 0x2242
eta 0x3B7
eth 0xF0
euml 0xEB
euro 0x20AC
excl 0x21
exist 0x2203
expectation 0x2130
exponentiale 0x2147
fallingdotseq 0x2252
fcy 0x444
female 0x2640
ffilig 0xFB03
fflig 0xFB00
ffllig 0xFB04
ffr 0x1D523
filig 0xFB01
flat 0x266D
fllig 0xFB02
fltns 0x25B1
fnof 0x192
fopf 0x1D557
forall 0x2200
fork 0x22D4
forkv 0x2AD9
fpartint 0x2A0D
frac12 0xBD
frac13 0x2153
frac14 0xBC
frac15 0x2155
frac16 0x2159
frac18 0x215B
frac23 0x2154
frac25 0x2156
frac34 0xBE
frac35 0x2157
frac38 0x215C
frac45 0x2158
frac56 0x215A
frac58 0x215D
frac78 0x215E
frasl 0x2044
frown 0x2322
fscr 0x1D4BB
gE 0x2267
gEl 0x2A8C
gacute 0x1F5
gamma 0x3B3
gammad 0x3DD
gap 0x2A86
gbreve 0x11F
gcirc 0x11D
gcy 0x433
gdot 0x121
ge 0x2265
gel 0x22DB
geq 0x2265
geqq 0x2267
geqslant 0x2A7E
ges 0x2A7E
gescc 0x2AA9
gesdot 0x2A80
gesdoto 0x2A82
gesdotol 0x2A84
gesles 0x2A94
gfr 0x1D524
gg 0x226B
ggg 0x22D9
gimel 0x2137
gjcy 0x453
gl 0x2277
glE 0x2A92
gla 0x2AA5
glj 0x2AA4
gnE 0x2269
gnap 0x2A8A
gnapprox 0x2A8A
gne 0x2A88
gneq 0x2A88
gneqq 0x2269
gnsim 0x22E7
gopf 0x1D558
grave 0x60
gscr 0x210A
gsim 0x2273
gsime 0x2A8E
gsiml 0x2A90
gt 0x3E
gtcc 0x2AA7
gtcir 0x2A7A
gtdot 0x22D7
gtlPar 0x2995
gtquest 0x2A7C
gtrapprox 0x2A86
gtrarr 0x2978
gtrdot 0x22D7
gtreqless 0x22DB
gtreqqless 0x2A8C
gtrless 0x2277
gtrsim 0x2273
hArr 0x21D4
hairsp 0x200A
half 0xBD
hamilt 0x210B
hardcy 0x44A
harr 0x2194
harrcir 0x2948
harrw 0x21AD
hbar 0x210F
hcirc 0x125
hearts 0x2665
heartsuit 0x2665
hellip 0x2026
hercon 0x22B9
hfr 0x1D525
hksearow 0x2925
hkswarow 0x2926
hoarr 0x21FF
homtht 0x223B
hookleftarrow 0x21A9
hookrightarrow 0x21AA
hopf 0x1D559
horbar 0x2015
hscr 0x1D4BD
hslash 0x210F
hstrok 0x127
hybull 0x2043
hyphen 0x2010
iacute 0xED
ic 0x2063
icirc 0xEE
icy 0x438
iecy 0x435
iexcl 0xA1
iff 0x21D4
ifr 0x1D526
igrave 0xEC
ii 0x2148
iiiint 0x2A0C
iiint 0x222D
iinfin 0x29DC
iiota 0x2129
ijlig 0x133
imacr 0x12B
image 0x2111
imagline 0x2110
imagpart 0x2111
imath 0x131
imof 0x22B7
imped 0x1B5
in 0x2208
incare 0x2105
infin 0x221E
infintie 0x29DD
inodot 0x131
int 0x222B
intcal 0x22BA
integers 0x2124
intercal 0x22BA
intlarhk 0x2A17
intprod 0x2A3C
iocy 0x451
iogon 0x12F
iopf 0x1D55A
iota 0x3B9
iprod 0x2A3C
iquest 0xBF
iscr 0x1D4BE
isin 0x2208
isinE 0x22F9
isindot 0x22F5
isins 0x22F4
isinsv 0x22F3
isinv 0x2208
it 0x2062
itilde 0x129
iukcy 0x456
iuml 0xEF
jcirc 0x135
jcy 0x439
jfr 0x1D527
jmath 0x237
jopf 0x1D55B
jscr 0x1D4BF
jsercy 0x458
jukcy 0x454
kappa 0x3BA
kappav 0x3F0
kcedil 0x137
kcy 0x43A
kfr 0x1D528
kgreen 0x138
khcy 0x445
kjcy 0x45C
kopf 0x1D55C
kscr 0x1D4C0
lAarr 0x21DA
lArr 0x21D0
lAtail 0x291B
lBarr 0x290E
lE 0x2266
lEg 0x2A8B
lHar 0x2962
lacute 0x13A
laemptyv 0x29B4
lagran 0x2112
lambda 0x3BB
lang 0x27E8
langd 0x2991
langle 0x27E8
lap 0x2A85
laquo 0xAB
larr 0x2190
larrb 0x21E4
larrbfs 0x291F
larrfs 0x291D
larrhk 0x21A9
larrlp 0x21AB
larrpl 0x2939
larrsim 0x2973
larrtl 0x21A2
lat 0x2AAB
latail 0x2919
late 0x2AAD
lbarr 0x290C
lbbrk 0x2772
lbrace 0x7B
lbrack 0x5B
lbrke 0x298B
lbrksld 0x298F
lbrkslu 0x298D
lcaron 0x13E
lcedil 0x13C
lceil 0x2308
lcub 0x7B
lcy 0x43B
ldca 0x2936
ldquo 0x201C
ldquor 0x201E
ldrdhar 0x2967
ldrushar 0x294B
ldsh 0x21B2
le 0x2264
leftarrow 0x2190
leftarrowtail 0x21A2
leftharpoondown 0x21BD
leftharpoonup 0x21BC
leftleftarrows 0x21C7
leftrightarrow 0x2194
leftrightarrows 0x21C6
leftrightharpoons 0x21CB
leftrightsquigarrow 0x21AD
leftthreetimes 0x22CB
leg 0x22DA
leq 0x2264
leqq 0x2266
leqslant 0x2A7D
les 0x2A7D
lescc 0x2AA8
lesdot 0x2A7F
lesdoto 0x2A81
lesdotor 0x2A83
lesges 0x2A93
lessapprox 0x2A85
lessdot 0x22D6
lesseqgtr 0x22DA
lesseqqgtr 0x2A8B
lessgtr 0x2276
lesssim 0x2272
lfisht 0x297C
lfloor 0x230A
lfr 0x1D529
lg 0x2276
lgE 0x2A91
lhard 0x21BD
lharu 0x21BC
lharul 0x296A
lhblk 0x2584
ljcy 0x459
ll 0x226A
llarr 0x21C7
llcorner 0x231E
llhard 0x296B
lltri 0x25FA
lmidot 0x140
lmoust 0x23B0
lmoustache 0x23B0
lnE 0x2268
lnap 0x2A89
lnapprox 0x2A89
lne 0x2A87
lneq 0x2A87
lneqq 0x2268
lnsim 0x22E6
loang 0x27EC
loarr 0x21FD
lobrk 0x27E6
longleftarrow 0x27F5
longleftrightarrow 0x27F7
longmapsto 0x27FC
longrightarrow 0x27F6
looparrowleft 0x21AB
looparrowright 0x21AC
lopar 0x2985
lopf 0x1D55D
loplus 0x2A2D
lotimes 0x2A34
lowast 0x2217
lowbar 0x5F
loz 0x25CA
lozenge 0x25CA
lozf 0x29EB
lpar 0x28
lparlt 0x2993
lrarr 0x21C6
lrcorner 0x231F
lrhar 0x21CB
lrhard 0x296D
lrm 0x200E
lrtri 0x22BF
lsaquo 0x2039
lscr 0x1D4C1
lsh 0x21B0
lsim 0x2272
lsime 0x2A8D
lsimg 0x2A8F
lsqb 0x5B
lsquo 0x2018
lsquor 0x201A
lstrok 0x142
lt 0x3C
ltcc 0x2AA6
ltcir 0x2A79
ltdot 0x22D6
lthree 0x22CB
ltimes 0x22C9
ltlarr 0x2976
ltquest 0x2A7B
ltrPar 0x2996
ltri 0x25C3
ltrie 0x22B4
ltrif 0x25C2
lurdshar 0x294A
luruhar 0x2966
mDDot 0x223A
macr 0xAF
male 0x2642
malt 0x2720
maltese 0x2720
map 0x21A6
mapsto 0x21A6
mapstodown 0x21A7
mapstoleft 0x21A4
mapstoup 0x21A5
marker 0x25AE
mcomma 0x2A29
mcy 0x43C
mdash 0x2014
measuredangle 0x2221
mfr 0x1D52A
mho 0x2127
micro 0xB5
mid 0x2223
midast 0x2A
midcir 0x2AF0
middot 0xB7
minus 0x2212
minusb 0x229F
minusd 0x2238
minusdu 0x2A2A
mlcp 0x2ADB
mldr 0x2026
mnplus 0x2213
models 0x22A7
mopf 0x1D55E
mp 0x2213
mscr 0x1D4C2
mstpos 0x223E
mu 0x3BC
multimap 0x22B8
mumap 0x22B8
nLeftarrow 0x21CD
nLeftrightarrow 0x21CE
nRightarrow 0x21CF
nVDash 0x22AF
nVdash 0x22AE
nabla 0x2207
nacute 0x144
nap 0x2249
napos 0x149
napprox 0x2249
natur 0x266E
natural 0x266E
naturals 0x2115
nbsp 0xA0
ncap 0x2A43
ncaron 0x148
ncedil 0x146
ncong 0x2247
ncup 0x2A42
ncy 0x43D
ndash 0x2013
ne 0x2260
neArr 0x21D7
nearhk 0x2924
nearr 0x2197
nearrow 0x2197
nequiv 0x2262
nesear 0x2928
nexist 0x2204
nexists 0x2204
nfr 0x1D52B
nge 0x2271
ngeq 0x2271
ngsim 0x2275
ngt 0x226F
ngtr 0x226F
nhArr 0x21CE
nharr 0x21AE
nhpar 0x2AF2
ni 0x220B
nis 0x22FC
nisd 0x22FA
niv 0x220B
njcy 0x45A
nlArr 0x21CD
nlarr 0x219A
nldr 0x2025
nle 0x2270
nleftarrow 0x219A
nleftrightarrow 0x21AE
nleq 0x2270
nless 0x226E
nlsim 0x2274
nlt 0x226E
nltri 0x22EA
nltrie 0x22EC
nmid 0x2224
nopf 0x1D55F
not 0xAC
notin 0x2209
notinva 0x2209
notinvb 0x22F7
notinvc 0x22F6
notni 0x220C
notniva 0x220C
notnivb 0x22FE
notnivc 0x22FD
npar 0x2226
nparallel 0x2226
npolint 0x2A14
npr 0x2280
nprcue 0x22E0
nprec 0x2280
nrArr 0x21CF
nrarr 0x219B
nrightarrow 0x219B
nrtri 0x22EB
nrtrie 0x22ED
nsc 0x2281
nsccue 0x22E1
nscr 0x1D4C3
nshortmid 0x2224
nshortparallel 0x2226
nsim 0x2241
nsime 0x2244
nsimeq 0x2244
nsmid 0x2224
nspar 0x2226
nsqsube 0x22E2
nsqsupe 0x22E3
nsub 0x2284
nsube 0x2288
nsubseteq 0x2288
nsucc 0x2281
nsup 0x2285
nsupe 0x2289
nsupseteq 0x2289
ntgl 0x2279
ntilde 0xF1
ntlg 0x2278
ntriangleleft 0x22EA
ntrianglelefteq 0x22EC
ntriangleright 0x22EB
ntrianglerighteq 0x22ED
nu 0x3BD
num 0x23
numero 0x2116
numsp 0x2007
nvDash 0x22AD
nvHarr 0x2904
nvdash 0x22AC
nvinfin 0x29DE
nvlArr 0x2902
nvrArr 0x2903
nwArr 0x21D6
nwarhk 0x2923
nwarr 0x2196
nwarrow 0x2196
nwnear 0x2927
oS 0x24C8
oacute 0xF3
oast 0x229B
ocir 0x229A
ocirc 0xF4
ocy 0x43E
odash 0x229D
odblac 0x151
odiv 0x2A38
odot 0x2299
odsold 0x29BC
oelig 0x153
ofcir 0x29BF
ofr 0x1D52C
ogon 0x2DB
ograve 0xF2
ogt 0x29C1
ohbar 0x29B5
ohm 0x3A9
oint 0x222E
olarr 0x21BA
olcir 0x29BE
olcross 0x29BB
oline 0x203E
olt 0x29C0
omacr 0x14D
omega 0x3C9
omicron 0x3BF
omid 0x29B6
ominus 0x2296
oopf 0x1D560
opar 0x29B7
operp 0x29B9
oplus 0x2295
or 0x2228
orarr 0x21BB
ord 0x2A5D
order 0x2134
orderof 0x2134
ordf 0xAA
ordm 0xBA
origof 0x22B6
oror 0x2A56
orslope 0x2A57
orv 0x2A5B
oscr 0x2134
oslash 0xF8
osol 0x2298
otilde 0xF5
otimes 0x2297
otimesas 0x2A36
ouml 0xF6
ovbar 0x233D
par 0x2225
para 0xB6
parallel 0x2225
parsim 0x2AF3
parsl 0x2AFD
part 0x2202
pcy 0x43F
percnt 0x25
period 0x2E
permil 0x2030
perp 0x22A5
pertenk 0x2031
pfr 0x1D52D
phi 0x3C6
phiv 0x3D5
phmmat 0x2133
phone 0x260E
pi 0x3C0
pitchfork 0x22D4
piv 0x3D6
planck 0x210F
planckh 0x210E
plankv 0x210F
plus 0x2B
plusacir 0x2A23
plusb 0x229E
pluscir 0x2A22
plusdo 0x2214
plusdu 0x2A25
pluse 0x2A72
plusmn 0xB1
plussim 0x2A26
plustwo 0x2A27
pm 0xB1
pointint 0x2A15
popf 0x1D561
pound 0xA3
pr 0x227A
prE 0x2AB3
prap 0x2AB7
prcue 0x227C
pre 0x2AAF
prec 0x227A
precapprox 0x2AB7
preccurlyeq 0x227C
preceq 0x2AAF
precnapprox 0x2AB9
precneqq 0x2AB5
precnsim 0x22E8
precsim 0x227E
prime 0x2032
primes 0x2119
prnE 0x2AB5
prnap 0x2AB9
prnsim 0x22E8
prod 0x220F
profalar 0x232E
profline 0x2312
profsurf 0x2313
prop 0x221D
propto 0x221D
prsim 0x227E
prurel 0x22B0
pscr 0x1D4C5
psi 0x3C8
puncsp 0x2008
qfr 0x1D52E
qint 0x2A0C
qopf 0x1D562
qprime 0x2057
qscr 0x1D4C6
quaternions 0x210D
quatint 0x2A16
quest 0x3F
questeq 0x225F
quot 0x22
rAarr 0x21DB
rArr 0x21D2
rAtail 0x291C
rBarr 0x290F
rHar 0x2964
racute 0x155
radic 0x221A
raemptyv 0x29B3
rang 0x27E9
rangd 0x2992
range 0x29A5
rangle 0x27E9
raquo 0xBB
rarr 0x2192
rarrap 0x2975
rarrb 0x21E5
rarrbfs 0x2920
rarrc 0x2933
rarrfs 0x291E
rarrhk 0x21AA
rarrlp 0x21AC
rarrpl 0x2945
rarrsim 0x2974
rarrtl 0x21A3
rarrw 0x219D
ratail 0x291A
ratio 0x2236
rationals 0x211A
rbarr 0x290D
rbbrk 0x2773
rbrace 0x7D
rbrack 0x5D
rbrke 0x298C
rbrksld 0x298E
rbrkslu 0x2990
rcaron 0x159
rcedil 0x157
rceil 0x2309
rcub 0x7D
rcy 0x440
rdca 0x2937
rdldhar 0x2969
rdquo 0x201D
rdquor 0x201D
rdsh 0x21B3
real 0x211C
realine 0x211B
realpart 0x211C
reals 0x211D
rect 0x25AD
reg 0xAE
rfisht 0x297D
rfloor 0x230B
rfr 0x1D52F
rhard 0x21C1
rharu 0x21C0
rharul 0x296C
rho 0x3C1
rhov 0x3F1
rightarrow 0x2192
rightarrowtail 0x21A3
rightharpoondown 0x21C1
rightharpoonup 0x21C0
rightleftarrows 0x21C4
rightleftharpoons 0x21CC
rightrightarrows 0x21C9
rightsquigarrow 0x219D
rightthreetimes 0x22CC
ring 0x2DA
risingdotseq 0x2253
rlarr 0x21C4
rlhar 0x21CC
rlm 0x200F
rmoust 0x23B1
rmoustache 0x23B1
rnmid 0x2AEE
roang 0x27ED
roarr 0x21FE
robrk 0x27E7
ropar 0x2986
ropf 0x1D563
roplus 0x2A2E
rotimes 0x2A35
rpar 0x29
rpargt 0x2994
rppolint 0x2A12
rrarr 0x21C9
rsaquo 0x203A
rscr 0x1D4C7
rsh 0x21B1
rsqb 0x5D
rsquo 0x2019
rsquor 0x2019
rthree 0x22CC
rtimes 0x22CA
rtri 0x25B9
rtrie 0x22B5
rtrif 0x25B8
rtriltri 0x29CE
ruluhar 0x2968
rx 0x211E
sacute 0x15B
sbquo 0x201A
sc 0x227B
scE 0x2AB4
scap 0x2AB8
scaron 0x161
sccue 0x227D
sce 0x2AB0
scedil 0x15F
scirc 0x15D
scnE 0x2AB6
scnap 0x2ABA
scnsim 0x22E9
scpolint 0x2A13
scsim 0x227F
scy 0x441
sdot 0x22C5
sdotb 0x22A1
sdote 0x2A66
seArr 0x21D8
searhk 0x2925
searr 0x2198
searrow 0x2198
sect 0xA7
semi 0x3B
seswar 0x2929
setminus 0x2216
setmn 0x2216
sext 0x2736
sfr 0x1D530
sfrown 0x2322
sharp 0x266F
shchcy 0x449
shcy 0x448
shortmid 0x2223
shortparallel 0x2225
shy 0xAD
sigma 0x3C3
sigmaf 0x3C2
sigmav 0x3C2
sim 0x223C
simdot 0x2A6A
sime 0x2243
simeq 0x2243
simg 0x2A9E
simgE 0x2AA0
siml 0x2A9D
simlE 0x2A9F
simne 0x2246
simplus 0x2A24
simrarr 0x2972
slarr 0x2190
smallsetminus 0x2216
smashp 0x2A33
smeparsl 0x29E4
smid 0x2223
smile 0x2323
smt 0x2AAA
smte 0x2AAC
softcy 0x44C
sol 0x2F
solb 0x29C4
solbar 0x233F
sopf 0x1D564
spades 0x2660
spadesuit 0x2660
spar 0x2225
sqcap 0x2293
sqcup 0x2294
sqsub 0x228F
sqsube 0x2291
sqsubset 0x228F
sqsubseteq 0x2291
sqsup 0x2290
sqsupe 0x2292
sqsupset 0x2290
sqsupseteq 0x2292
squ 0x25A1
square 0x25A1
squarf 0x25AA
squf 0x25AA
srarr 0x2192
sscr 0x1D4C8
ssetmn 0x2216
ssmile 0x2323
sstarf 0x22C6
star 0x2606
starf 0x2605
straightepsilon 0x3F5
straightphi 0x3D5
strns 0xAF
sub 0x2282
subE 0x2AC5
subdot 0x2ABD
sube 0x2286
subedot 0x2AC3
submult 0x2AC1
subnE 0x2ACB
subne 0x228A
subplus 0x2ABF
subrarr 0x2979
subset 0x2282
subseteq 0x2286
subseteqq 0x2AC5
subsetneq 0x228A
subsetneqq 0x2ACB
subsim 0x2AC7
subsub 0x2AD5
subsup 0x2AD3
succ 0x227B
succapprox 0x2AB8
succcurlyeq 0x227D
succeq 0x2AB0
succnapprox 0x2ABA
succneqq 0x2AB6
succnsim 0x22E9
succsim 0x227F
sum 0x2211
sung 0x266A
sup1 0xB9
sup2 0xB2
sup3 0xB3
sup 0x2283
supE 0x2AC6
supdot 0x2ABE
supdsub 0x2AD8
supe 0x2287
supedot 0x2AC4
suphsol 0x27C9
suphsub 0x2AD7
suplarr 0x297B
supmult 0x2AC2
supnE 0x2ACC
supne 0x228B
supplus 0x2AC0
supset 0x2283
supseteq 0x2287
supseteqq 0x2AC6
supsetneq 0x228B
supsetneqq 0x2ACC
supsim 0x2AC8
supsub 0x2AD4
supsup 0x2AD6
swArr 0x21D9
swarhk 0x2926
swarr 0x2199
swarrow 0x2199
swnwar 0x292A
szlig 0xDF
target 0x2316
tau 0x3C4
tbrk 0x23B4
tcaron 0x165
tcedil 0x163
tcy 0x442
tdot 0x20DB
telrec 0x2315
tfr 0x1D531
there4 0x2234
therefore 0x2234
theta 0x3B8
thetasym 0x3D1
thetav 0x3D1
thickapprox 0x2248
thicksim 0x223C
thinsp 0x2009
thkap 0x2248
thksim 0x223C
thorn 0xFE
tilde 0x2DC
times 0xD7
timesb 0x22A0
timesbar 0x2A31
timesd 0x2A30
tint 0x222D
toea 0x2928
top 0x22A4
topbot 0x2336
topcir 0x2AF1
topf 0x1D565
topfork 0x2ADA
tosa 0x2929
tprime 0x2034
trade 0x2122
triangle 0x25B5
triangledown 0x25BF
triangleleft 0x25C3
trianglelefteq 0x22B4
triangleq 0x225C
triangleright 0x25B9
trianglerighteq 0x22B5
tridot 0x25EC
trie 0x225C
triminus 0x2A3A
triplus 0x2A39
trisb 0x29CD
tritime 0x2A3B
trpezium 0x23E2
tscr 0x1D4C9
tscy 0x446
tshcy 0x45B
tstrok 0x167
twixt 0x226C
twoheadleftarrow 0x219E
twoheadrightarrow 0x21A0
uArr 0x21D1
uHar 0x2963
uacute 0xFA
uarr 0x2191
ubrcy 0x45E
ubreve 0x16D
ucirc 0xFB
ucy 0x443
udarr 0x21C5
udblac 0x171
udhar 0x296E
ufisht 0x297E
ufr 0x1D532
ugrave 0xF9
uharl 0x21BF
uharr 0x21BE
uhblk 0x2580
ulcorn 0x231C
ulcorner 0x231C
ulcrop 0x230F
ultri 0x25F8
umacr 0x16B
uml 0xA8
uogon 0x173
uopf 0x1D566
uparrow 0x2191
updownarrow 0x2195
upharpoonleft 0x21BF
upharpoonright 0x21BE
uplus 0x228E
upsi 0x3C5
upsih 0x3D2
upsilon 0x3C5
upuparrows 0x21C8
urcorn 0x231D
urcorner 0x231D
urcrop 0x230E
uring 0x16F
urtri 0x25F9
uscr 0x1D4CA
utdot 0x22F0
utilde 0x169
utri 0x25B5
utrif 0x25B4
uuarr 0x21C8
uuml 0xFC
uwangle 0x29A7
vArr 0x21D5
vBar 0x2AE8
vBarv 0x2AE9
vDash 0x22A8
vangrt 0x299C
varepsilon 0x3F5
varkappa 0x3F0
varnothing 0x2205
varphi 0x3D5
varpi 0x3D6
varpropto 0x221D
varr 0x2195
varrho 0x3F1
varsigma 0x3C2
vartheta 0x3D1
vartriangleleft 0x22B2
vartriangleright 0x22B3
vcy 0x432
vdash 0x22A2
vee 0x2228
veebar 0x22BB
veeeq 0x225A
vellip 0x22EE
verbar 0x7C
vert 0x7C
vfr 0x1D533
vltri 0x22B2
vopf 0x1D567
vprop 0x221D
vrtri 0x22B3
vscr 0x1D4CB
vzigzag 0x299A
wcirc 0x175
wedbar 0x2A5F
wedge 0x2227
wedgeq 0x2259
weierp 0x2118
wfr 0x1D534
wopf 0x1D568
wp 0x2118
wr 0x2240
wreath 0x2240
wscr 0x1D4CC
xcap 0x22C2
xcirc 0x25EF
xcup 0x22C3
xdtri 0x25BD
xfr 0x1D535
xhArr 0x27FA
xharr 0x27F7
xi 0x3BE
xlArr 0x27F8
xlarr 0x27F5
xmap 0x27FC
xnis 0x22FB
xodot 0x2A00
xopf 0x1D569
xoplus 0x2A01
xotime 0x2A02
xrArr 0x27F9
xrarr 0x27F6
xscr 0x1D4CD
xsqcup 0x2A06
xuplus 0x2A04
xutri 0x25B3
xvee 0x22C1
xwedge 0x22C0
yacute 0xFD
yacy 0x44F
ycirc 0x177
ycy 0x44B
yen 0xA5
yfr 0x1D536
yicy 0x457
yopf 0x1D56A
yscr 0x1D4CE
yucy 0x44E
yuml 0xFF
zacute 0x17A
zcaron 0x17E
zcy 0x437
zdot 0x17C
zeetrf 0x2128
zeta 0x3B6
zfr 0x1D537
zhcy 0x436
zigrarr 0x21DD
zopf 0x1D56B
zscr 0x1D4CF
zwj 0x200D
zwnj 0x200C
|