-
Notifications
You must be signed in to change notification settings - Fork 29
/
unicode-math-table.tex
2469 lines (2466 loc) · 236 KB
/
unicode-math-table.tex
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
%%^^A%% unicode-math-table.tex -- part of UNICODE-MATH <wspr.io/unicode-math>
%%^^A%% Source file of the math symbols.
\UnicodeMathSymbol{"00021}{\mathexclam }{\mathclose}{exclamation mark}%
\UnicodeMathSymbol{"00023}{\mathoctothorpe }{\mathord}{number sign}%
\UnicodeMathSymbol{"00024}{\mathdollar }{\mathord}{dollar sign}%
\UnicodeMathSymbol{"00025}{\mathpercent }{\mathord}{percent sign}%
\UnicodeMathSymbol{"00026}{\mathampersand }{\mathord}{ampersand}%
\UnicodeMathSymbol{"00028}{\lparen }{\mathopen}{left parenthesis}%
\UnicodeMathSymbol{"00029}{\rparen }{\mathclose}{right parenthesis}%
\UnicodeMathSymbol{"0002B}{\mathplus }{\mathbin}{plus sign b:}%
\UnicodeMathSymbol{"0002C}{\mathcomma }{\mathpunct}{comma}%
\UnicodeMathSymbol{"0002E}{\mathperiod }{\mathord}{full stop, period}%
\UnicodeMathSymbol{"0002F}{\mathslash }{\mathord}{solidus}%
\UnicodeMathSymbol{"0003A}{\mathcolon }{\mathpunct}{colon}%
\UnicodeMathSymbol{"0003B}{\mathsemicolon }{\mathpunct}{semicolon p:}%
\UnicodeMathSymbol{"0003C}{\less }{\mathrel}{less-than sign r:}%
\UnicodeMathSymbol{"0003D}{\equal }{\mathrel}{equals sign r:}%
\UnicodeMathSymbol{"0003E}{\greater }{\mathrel}{greater-than sign r:}%
\UnicodeMathSymbol{"0003F}{\mathquestion }{\mathord}{question mark}%
\UnicodeMathSymbol{"00040}{\mathatsign }{\mathord}{commercial at}%
\UnicodeMathSymbol{"0005B}{\lbrack }{\mathopen}{left square bracket}%
\UnicodeMathSymbol{"0005C}{\backslash }{\mathord}{reverse solidus}%
\UnicodeMathSymbol{"0005D}{\rbrack }{\mathclose}{right square bracket}%
\UnicodeMathSymbol{"0007B}{\lbrace }{\mathopen}{left curly bracket}%
\UnicodeMathSymbol{"0007C}{\vert }{\mathfence}{vertical bar}%
\UnicodeMathSymbol{"0007D}{\rbrace }{\mathclose}{right curly bracket}%
\UnicodeMathSymbol{"000A3}{\mathsterling }{\mathord}{pound sign}%
\UnicodeMathSymbol{"000A5}{\mathyen }{\mathord}{yen sign}%
\UnicodeMathSymbol{"000A7}{\mathsection }{\mathord}{section symbol}%
\UnicodeMathSymbol{"000AC}{\neg }{\mathord}{/neg /lnot not sign}%
\UnicodeMathSymbol{"000B1}{\pm }{\mathbin}{plus-or-minus sign}%
\UnicodeMathSymbol{"000B6}{\mathparagraph }{\mathord}{paragraph symbol}%
\UnicodeMathSymbol{"000B7}{\cdotp }{\mathbin}{/centerdot b: middle dot}%
\UnicodeMathSymbol{"000D7}{\times }{\mathbin}{multiply sign}%
\UnicodeMathSymbol{"000F0}{\matheth }{\mathalpha}{eth}%
\UnicodeMathSymbol{"000F7}{\div }{\mathbin}{divide sign}%
\UnicodeMathSymbol{"001B5}{\Zbar }{\mathord}{impedance (latin capital letter z with stroke)}%
\UnicodeMathSymbol{"00300}{\grave }{\mathaccent}{grave accent}%
\UnicodeMathSymbol{"00301}{\acute }{\mathaccent}{acute accent}%
\UnicodeMathSymbol{"00302}{\hat }{\mathaccent}{circumflex accent}%
\UnicodeMathSymbol{"00302}{\widehat }{\mathaccentwide}{circumflex accent}%
\UnicodeMathSymbol{"00303}{\tilde }{\mathaccent}{tilde}%
\UnicodeMathSymbol{"00303}{\widetilde }{\mathaccentwide}{tilde}%
\UnicodeMathSymbol{"00304}{\bar }{\mathaccent}{macron}%
\UnicodeMathSymbol{"00305}{\overbar }{\mathaccent}{overbar embellishment}%
\UnicodeMathSymbol{"00305}{\wideoverbar }{\mathaccentwide}{stretchy overbar embellishment}%
\UnicodeMathSymbol{"00306}{\breve }{\mathaccent}{breve}%
\UnicodeMathSymbol{"00306}{\widebreve }{\mathaccentwide}{stretchy breve}%
\UnicodeMathSymbol{"00307}{\dot }{\mathaccent}{dot above}%
\UnicodeMathSymbol{"00308}{\ddot }{\mathaccent}{dieresis}%
\UnicodeMathSymbol{"00309}{\ovhook }{\mathaccent}{combining hook above}%
\UnicodeMathSymbol{"0030A}{\ocirc }{\mathaccent}{ring}%
\UnicodeMathSymbol{"0030C}{\check }{\mathaccent}{caron}%
\UnicodeMathSymbol{"0030C}{\widecheck }{\mathaccentwide}{stretchy caron}%
\UnicodeMathSymbol{"00310}{\candra }{\mathaccent}{candrabindu (non-spacing)}%
\UnicodeMathSymbol{"00312}{\oturnedcomma }{\mathaccent}{combining turned comma above}%
\UnicodeMathSymbol{"00315}{\ocommatopright }{\mathaccent}{combining comma above right}%
\UnicodeMathSymbol{"0031A}{\droang }{\mathaccent}{left angle above (non-spacing)}%
\UnicodeMathSymbol{"00330}{\wideutilde }{\mathbotaccentwide}{under tilde accent (multiple characters and non-spacing)}%
\UnicodeMathSymbol{"00332}{\mathunderbar }{\mathbotaccentwide}{combining low line}%
\UnicodeMathSymbol{"00338}{\notaccent }{\mathaccentoverlay}{combining long solidus overlay}%
\UnicodeMathSymbol{"0034D}{\underleftrightarrow }{\mathbotaccentwide}{underleftrightarrow accent}%
\UnicodeMathSymbol{"00391}{\mupAlpha }{\mathalpha}{capital alpha, greek}%
\UnicodeMathSymbol{"00392}{\mupBeta }{\mathalpha}{capital beta, greek}%
\UnicodeMathSymbol{"00393}{\mupGamma }{\mathalpha}{capital gamma, greek}%
\UnicodeMathSymbol{"00394}{\mupDelta }{\mathalpha}{capital delta, greek}%
\UnicodeMathSymbol{"00395}{\mupEpsilon }{\mathalpha}{capital epsilon, greek}%
\UnicodeMathSymbol{"00396}{\mupZeta }{\mathalpha}{capital zeta, greek}%
\UnicodeMathSymbol{"00397}{\mupEta }{\mathalpha}{capital eta, greek}%
\UnicodeMathSymbol{"00398}{\mupTheta }{\mathalpha}{capital theta, greek}%
\UnicodeMathSymbol{"00399}{\mupIota }{\mathalpha}{capital iota, greek}%
\UnicodeMathSymbol{"0039A}{\mupKappa }{\mathalpha}{capital kappa, greek}%
\UnicodeMathSymbol{"0039B}{\mupLambda }{\mathalpha}{capital lambda, greek}%
\UnicodeMathSymbol{"0039C}{\mupMu }{\mathalpha}{capital mu, greek}%
\UnicodeMathSymbol{"0039D}{\mupNu }{\mathalpha}{capital nu, greek}%
\UnicodeMathSymbol{"0039E}{\mupXi }{\mathalpha}{capital xi, greek}%
\UnicodeMathSymbol{"0039F}{\mupOmicron }{\mathalpha}{capital omicron, greek}%
\UnicodeMathSymbol{"003A0}{\mupPi }{\mathalpha}{capital pi, greek}%
\UnicodeMathSymbol{"003A1}{\mupRho }{\mathalpha}{capital rho, greek}%
\UnicodeMathSymbol{"003A3}{\mupSigma }{\mathalpha}{capital sigma, greek}%
\UnicodeMathSymbol{"003A4}{\mupTau }{\mathalpha}{capital tau, greek}%
\UnicodeMathSymbol{"003A5}{\mupUpsilon }{\mathalpha}{capital upsilon, greek}%
\UnicodeMathSymbol{"003A6}{\mupPhi }{\mathalpha}{capital phi, greek}%
\UnicodeMathSymbol{"003A7}{\mupChi }{\mathalpha}{capital chi, greek}%
\UnicodeMathSymbol{"003A8}{\mupPsi }{\mathalpha}{capital psi, greek}%
\UnicodeMathSymbol{"003A9}{\mupOmega }{\mathalpha}{capital omega, greek}%
\UnicodeMathSymbol{"003B1}{\mupalpha }{\mathalpha}{small alpha, greek}%
\UnicodeMathSymbol{"003B2}{\mupbeta }{\mathalpha}{small beta, greek}%
\UnicodeMathSymbol{"003B3}{\mupgamma }{\mathalpha}{small gamma, greek}%
\UnicodeMathSymbol{"003B4}{\mupdelta }{\mathalpha}{small delta, greek}%
\UnicodeMathSymbol{"003B5}{\mupvarepsilon }{\mathalpha}{rounded small varepsilon, greek}%
\UnicodeMathSymbol{"003B6}{\mupzeta }{\mathalpha}{small zeta, greek}%
\UnicodeMathSymbol{"003B7}{\mupeta }{\mathalpha}{small eta, greek}%
\UnicodeMathSymbol{"003B8}{\muptheta }{\mathalpha}{straight theta, small theta, greek}%
\UnicodeMathSymbol{"003B9}{\mupiota }{\mathalpha}{small iota, greek}%
\UnicodeMathSymbol{"003BA}{\mupkappa }{\mathalpha}{small kappa, greek}%
\UnicodeMathSymbol{"003BB}{\muplambda }{\mathalpha}{small lambda, greek}%
\UnicodeMathSymbol{"003BC}{\mupmu }{\mathalpha}{small mu, greek}%
\UnicodeMathSymbol{"003BD}{\mupnu }{\mathalpha}{small nu, greek}%
\UnicodeMathSymbol{"003BE}{\mupxi }{\mathalpha}{small xi, greek}%
\UnicodeMathSymbol{"003BF}{\mupomicron }{\mathalpha}{small omicron, greek}%
\UnicodeMathSymbol{"003C0}{\muppi }{\mathalpha}{small pi, greek}%
\UnicodeMathSymbol{"003C1}{\muprho }{\mathalpha}{small rho, greek}%
\UnicodeMathSymbol{"003C2}{\mupvarsigma }{\mathalpha}{terminal sigma, greek}%
\UnicodeMathSymbol{"003C3}{\mupsigma }{\mathalpha}{small sigma, greek}%
\UnicodeMathSymbol{"003C4}{\muptau }{\mathalpha}{small tau, greek}%
\UnicodeMathSymbol{"003C5}{\mupupsilon }{\mathalpha}{small upsilon, greek}%
\UnicodeMathSymbol{"003C6}{\mupvarphi }{\mathalpha}{curly or open small phi, greek}%
\UnicodeMathSymbol{"003C7}{\mupchi }{\mathalpha}{small chi, greek}%
\UnicodeMathSymbol{"003C8}{\muppsi }{\mathalpha}{small psi, greek}%
\UnicodeMathSymbol{"003C9}{\mupomega }{\mathalpha}{small omega, greek}%
\UnicodeMathSymbol{"003D1}{\mupvartheta }{\mathalpha}{/vartheta - curly or open theta}%
\UnicodeMathSymbol{"003D5}{\mupphi }{\mathalpha}{/straightphi - small phi, greek}%
\UnicodeMathSymbol{"003D6}{\mupvarpi }{\mathalpha}{rounded small pi (pomega), greek}%
\UnicodeMathSymbol{"003DC}{\upDigamma }{\mathalpha}{capital digamma}%
\UnicodeMathSymbol{"003DD}{\updigamma }{\mathalpha}{old greek small letter digamma}%
\UnicodeMathSymbol{"003F0}{\mupvarkappa }{\mathalpha}{rounded small kappa, greek}%
\UnicodeMathSymbol{"003F1}{\mupvarrho }{\mathalpha}{rounded small rho, greek}%
\UnicodeMathSymbol{"003F4}{\mupvarTheta }{\mathalpha}{greek capital theta symbol}%
\UnicodeMathSymbol{"003F5}{\mupepsilon }{\mathalpha}{greek lunate varepsilon symbol}%
\UnicodeMathSymbol{"003F6}{\upbackepsilon }{\mathord}{greek reversed lunate epsilon symbol}%
\UnicodeMathSymbol{"02010}{\mathhyphen }{\mathalpha}{hyphen}%
\UnicodeMathSymbol{"02015}{\horizbar }{\mathord}{horizontal bar}%
\UnicodeMathSymbol{"02016}{\Vert }{\mathfence}{double vertical bar}%
\UnicodeMathSymbol{"02017}{\twolowline }{\mathord}{double low line (spacing)}%
\UnicodeMathSymbol{"02020}{\dagger }{\mathbin}{dagger relation}%
\UnicodeMathSymbol{"02021}{\ddagger }{\mathbin}{double dagger relation}%
\UnicodeMathSymbol{"02022}{\smblkcircle }{\mathbin}{/bullet b: round bullet, filled}%
\UnicodeMathSymbol{"02025}{\enleadertwodots }{\mathord}{double baseline dot (en leader)}%
\UnicodeMathSymbol{"02026}{\unicodeellipsis }{\mathord}{ellipsis (horizontal)}%
\UnicodeMathSymbol{"02032}{\prime }{\mathord}{prime or minute, not superscripted}%
\UnicodeMathSymbol{"02033}{\dprime }{\mathord}{double prime or second, not superscripted}%
\UnicodeMathSymbol{"02034}{\trprime }{\mathord}{triple prime (not superscripted)}%
\UnicodeMathSymbol{"02035}{\backprime }{\mathord}{reverse prime, not superscripted}%
\UnicodeMathSymbol{"02036}{\backdprime }{\mathord}{double reverse prime, not superscripted}%
\UnicodeMathSymbol{"02037}{\backtrprime }{\mathord}{triple reverse prime, not superscripted}%
\UnicodeMathSymbol{"02038}{\caretinsert }{\mathord}{caret (insertion mark)}%
\UnicodeMathSymbol{"0203C}{\Exclam }{\mathord}{double exclamation mark}%
\UnicodeMathSymbol{"02040}{\tieconcat }{\mathbin}{character tie, z notation sequence concatenation}%
\UnicodeMathSymbol{"02043}{\hyphenbullet }{\mathord}{rectangle, filled (hyphen bullet)}%
\UnicodeMathSymbol{"02044}{\fracslash }{\mathbin}{fraction slash}%
\UnicodeMathSymbol{"02047}{\Question }{\mathord}{double question mark}%
\UnicodeMathSymbol{"02050}{\closure }{\mathrel}{close up}%
\UnicodeMathSymbol{"02057}{\qprime }{\mathord}{quadruple prime, not superscripted}%
\UnicodeMathSymbol{"020AC}{\euro }{\mathord}{euro sign}%
\UnicodeMathSymbol{"020D0}{\leftharpoonaccent }{\mathaccent}{combining left harpoon above}%
\UnicodeMathSymbol{"020D0}{\overleftharpoon }{\mathaccentwide}{combining left harpoon above}%
\UnicodeMathSymbol{"020D1}{\rightharpoonaccent }{\mathaccent}{combining right harpoon above}%
\UnicodeMathSymbol{"020D1}{\overrightharpoon }{\mathaccentwide}{combining right harpoon above}%
\UnicodeMathSymbol{"020D2}{\vertoverlay }{\mathaccent}{combining long vertical line overlay}%
\UnicodeMathSymbol{"020D6}{\overleftarrow }{\mathaccentwide}{combining left arrow above}%
\UnicodeMathSymbol{"020D7}{\overrightarrow }{\mathaccentwide}{combining left arrow above}%
\UnicodeMathSymbol{"020D7}{\vec }{\mathaccent}{combining right arrow above}%
\UnicodeMathSymbol{"020DB}{\dddot }{\mathaccent}{combining three dots above}%
\UnicodeMathSymbol{"020DC}{\ddddot }{\mathaccent}{combining four dots above}%
\UnicodeMathSymbol{"020DD}{\enclosecircle }{\mathord}{combining enclosing circle}%
\UnicodeMathSymbol{"020DE}{\enclosesquare }{\mathord}{combining enclosing square}%
\UnicodeMathSymbol{"020DF}{\enclosediamond }{\mathord}{combining enclosing diamond}%
\UnicodeMathSymbol{"020E1}{\overleftrightarrow }{\mathaccentwide}{combining left right arrow above}%
\UnicodeMathSymbol{"020E4}{\enclosetriangle }{\mathord}{combining enclosing upward pointing triangle}%
\UnicodeMathSymbol{"020E7}{\annuity }{\mathaccent}{combining annuity symbol}%
\UnicodeMathSymbol{"020E8}{\threeunderdot }{\mathbotaccent}{combining triple underdot}%
\UnicodeMathSymbol{"020E9}{\widebridgeabove }{\mathaccent}{combining wide bridge above}%
\UnicodeMathSymbol{"020EC}{\underrightharpoondown }{\mathbotaccentwide}{combining rightwards harpoon with barb downwards}%
\UnicodeMathSymbol{"020ED}{\underleftharpoondown }{\mathbotaccentwide}{combining leftwards harpoon with barb downwards}%
\UnicodeMathSymbol{"020EE}{\underleftarrow }{\mathbotaccentwide}{combining left arrow below}%
\UnicodeMathSymbol{"020EF}{\underrightarrow }{\mathbotaccentwide}{combining right arrow below}%
\UnicodeMathSymbol{"020F0}{\asteraccent }{\mathaccent}{combining asterisk above}%
\UnicodeMathSymbol{"02102}{\BbbC }{\mathalpha}{/bbb c, open face c}%
\UnicodeMathSymbol{"02107}{\Eulerconst }{\mathord}{euler constant}%
\UnicodeMathSymbol{"0210A}{\mscrg }{\mathalpha}{/scr g, script letter g}%
\UnicodeMathSymbol{"0210B}{\mscrH }{\mathalpha}{hamiltonian (script capital h)}%
\UnicodeMathSymbol{"0210C}{\mfrakH }{\mathalpha}{/frak h, upper case h}%
\UnicodeMathSymbol{"0210D}{\BbbH }{\mathalpha}{/bbb h, open face h}%
\UnicodeMathSymbol{"0210E}{\Planckconst }{\mathord}{planck constant}%
\UnicodeMathSymbol{"0210F}{\hslash }{\mathalpha}{/hslash - variant planck's over 2pi}%
\UnicodeMathSymbol{"02110}{\mscrI }{\mathalpha}{/scr i, script letter i}%
\UnicodeMathSymbol{"02111}{\Im }{\mathalpha}{imaginary part}%
\UnicodeMathSymbol{"02112}{\mscrL }{\mathalpha}{lagrangian (script capital l)}%
\UnicodeMathSymbol{"02113}{\ell }{\mathalpha}{cursive small l}%
\UnicodeMathSymbol{"02115}{\BbbN }{\mathalpha}{/bbb n, open face n}%
\UnicodeMathSymbol{"02118}{\wp }{\mathalpha}{weierstrass p}%
\UnicodeMathSymbol{"02119}{\BbbP }{\mathalpha}{/bbb p, open face p}%
\UnicodeMathSymbol{"0211A}{\BbbQ }{\mathalpha}{/bbb q, open face q}%
\UnicodeMathSymbol{"0211B}{\mscrR }{\mathalpha}{/scr r, script letter r}%
\UnicodeMathSymbol{"0211C}{\Re }{\mathalpha}{real part}%
\UnicodeMathSymbol{"0211D}{\BbbR }{\mathalpha}{/bbb r, open face r}%
\UnicodeMathSymbol{"02124}{\BbbZ }{\mathalpha}{/bbb z, open face z}%
\UnicodeMathSymbol{"02127}{\mho }{\mathord}{conductance}%
\UnicodeMathSymbol{"02128}{\mfrakZ }{\mathalpha}{/frak z, upper case z}%
\UnicodeMathSymbol{"02129}{\turnediota }{\mathalpha}{turned iota}%
\UnicodeMathSymbol{"0212B}{\Angstrom }{\mathalpha}{angstrom capital a, ring}%
\UnicodeMathSymbol{"0212C}{\mscrB }{\mathalpha}{bernoulli function (script capital b)}%
\UnicodeMathSymbol{"0212D}{\mfrakC }{\mathalpha}{black-letter capital c}%
\UnicodeMathSymbol{"0212F}{\mscre }{\mathalpha}{/scr e, script letter e}%
\UnicodeMathSymbol{"02130}{\mscrE }{\mathalpha}{/scr e, script letter e}%
\UnicodeMathSymbol{"02131}{\mscrF }{\mathalpha}{/scr f, script letter f}%
\UnicodeMathSymbol{"02132}{\Finv }{\mathord}{turned capital f}%
\UnicodeMathSymbol{"02133}{\mscrM }{\mathalpha}{physics m-matrix (script capital m)}%
\UnicodeMathSymbol{"02134}{\mscro }{\mathalpha}{order of (script small o)}%
\UnicodeMathSymbol{"02135}{\aleph }{\mathalpha}{aleph, hebrew}%
\UnicodeMathSymbol{"02136}{\beth }{\mathalpha}{beth, hebrew}%
\UnicodeMathSymbol{"02137}{\gimel }{\mathalpha}{gimel, hebrew}%
\UnicodeMathSymbol{"02138}{\daleth }{\mathalpha}{daleth, hebrew}%
\UnicodeMathSymbol{"0213C}{\Bbbpi }{\mathord}{double-struck small pi}%
\UnicodeMathSymbol{"0213D}{\Bbbgamma }{\mathalpha}{double-struck small gamma}%
\UnicodeMathSymbol{"0213E}{\BbbGamma }{\mathalpha}{double-struck capital gamma}%
\UnicodeMathSymbol{"0213F}{\BbbPi }{\mathalpha}{double-struck capital pi}%
\UnicodeMathSymbol{"02140}{\Bbbsum }{\mathop}{double-struck n-ary summation}%
\UnicodeMathSymbol{"02141}{\Game }{\mathord}{turned sans-serif capital g}%
\UnicodeMathSymbol{"02142}{\sansLturned }{\mathord}{turned sans-serif capital l}%
\UnicodeMathSymbol{"02143}{\sansLmirrored }{\mathord}{reversed sans-serif capital l}%
\UnicodeMathSymbol{"02144}{\Yup }{\mathord}{turned sans-serif capital y}%
\UnicodeMathSymbol{"02145}{\mitBbbD }{\mathord}{double-struck italic capital d}%
\UnicodeMathSymbol{"02146}{\mitBbbd }{\mathord}{double-struck italic small d}%
\UnicodeMathSymbol{"02147}{\mitBbbe }{\mathord}{double-struck italic small e}%
\UnicodeMathSymbol{"02148}{\mitBbbi }{\mathord}{double-struck italic small i}%
\UnicodeMathSymbol{"02149}{\mitBbbj }{\mathord}{double-struck italic small j}%
\UnicodeMathSymbol{"0214A}{\PropertyLine }{\mathord}{property line}%
\UnicodeMathSymbol{"0214B}{\upand }{\mathbin}{turned ampersand}%
\UnicodeMathSymbol{"02190}{\leftarrow }{\mathrel}{/leftarrow /gets a: leftward arrow}%
\UnicodeMathSymbol{"02191}{\uparrow }{\mathrel}{upward arrow}%
\UnicodeMathSymbol{"02192}{\rightarrow }{\mathrel}{/rightarrow /to a: rightward arrow}%
\UnicodeMathSymbol{"02193}{\downarrow }{\mathrel}{downward arrow}%
\UnicodeMathSymbol{"02194}{\leftrightarrow }{\mathrel}{left and right arrow}%
\UnicodeMathSymbol{"02195}{\updownarrow }{\mathrel}{up and down arrow}%
\UnicodeMathSymbol{"02196}{\nwarrow }{\mathrel}{nw pointing arrow}%
\UnicodeMathSymbol{"02197}{\nearrow }{\mathrel}{ne pointing arrow}%
\UnicodeMathSymbol{"02198}{\searrow }{\mathrel}{se pointing arrow}%
\UnicodeMathSymbol{"02199}{\swarrow }{\mathrel}{sw pointing arrow}%
\UnicodeMathSymbol{"0219A}{\nleftarrow }{\mathrel}{not left arrow}%
\UnicodeMathSymbol{"0219B}{\nrightarrow }{\mathrel}{not right arrow}%
\UnicodeMathSymbol{"0219C}{\leftwavearrow }{\mathrel}{left arrow-wavy}%
\UnicodeMathSymbol{"0219D}{\rightwavearrow }{\mathrel}{right arrow-wavy}%
\UnicodeMathSymbol{"0219E}{\twoheadleftarrow }{\mathrel}{left two-headed arrow}%
\UnicodeMathSymbol{"0219F}{\twoheaduparrow }{\mathrel}{up two-headed arrow}%
\UnicodeMathSymbol{"021A0}{\twoheadrightarrow }{\mathrel}{right two-headed arrow}%
\UnicodeMathSymbol{"021A1}{\twoheaddownarrow }{\mathrel}{down two-headed arrow}%
\UnicodeMathSymbol{"021A2}{\leftarrowtail }{\mathrel}{left arrow-tailed}%
\UnicodeMathSymbol{"021A3}{\rightarrowtail }{\mathrel}{right arrow-tailed}%
\UnicodeMathSymbol{"021A4}{\mapsfrom }{\mathrel}{maps to, leftward}%
\UnicodeMathSymbol{"021A5}{\mapsup }{\mathrel}{maps to, upward}%
\UnicodeMathSymbol{"021A6}{\mapsto }{\mathrel}{maps to, rightward}%
\UnicodeMathSymbol{"021A7}{\mapsdown }{\mathrel}{maps to, downward}%
\UnicodeMathSymbol{"021A8}{\updownarrowbar }{\mathord}{up down arrow with base (perpendicular)}%
\UnicodeMathSymbol{"021A9}{\hookleftarrow }{\mathrel}{left arrow-hooked}%
\UnicodeMathSymbol{"021AA}{\hookrightarrow }{\mathrel}{right arrow-hooked}%
\UnicodeMathSymbol{"021AB}{\looparrowleft }{\mathrel}{left arrow-looped}%
\UnicodeMathSymbol{"021AC}{\looparrowright }{\mathrel}{right arrow-looped}%
\UnicodeMathSymbol{"021AD}{\leftrightsquigarrow }{\mathrel}{left and right arr-wavy}%
\UnicodeMathSymbol{"021AE}{\nleftrightarrow }{\mathrel}{not left and right arrow}%
\UnicodeMathSymbol{"021AF}{\downzigzagarrow }{\mathrel}{downwards zigzag arrow}%
\UnicodeMathSymbol{"021B0}{\Lsh }{\mathrel}{/lsh a:}%
\UnicodeMathSymbol{"021B1}{\Rsh }{\mathrel}{/rsh a:}%
\UnicodeMathSymbol{"021B2}{\Ldsh }{\mathrel}{left down angled arrow}%
\UnicodeMathSymbol{"021B3}{\Rdsh }{\mathrel}{right down angled arrow}%
\UnicodeMathSymbol{"021B4}{\linefeed }{\mathord}{rightwards arrow with corner downwards}%
\UnicodeMathSymbol{"021B5}{\carriagereturn }{\mathord}{downwards arrow with corner leftward = carriage return}%
\UnicodeMathSymbol{"021B6}{\curvearrowleft }{\mathrel}{left curved arrow}%
\UnicodeMathSymbol{"021B7}{\curvearrowright }{\mathrel}{right curved arrow}%
\UnicodeMathSymbol{"021B8}{\barovernorthwestarrow }{\mathord}{north west arrow to long bar}%
\UnicodeMathSymbol{"021B9}{\barleftarrowrightarrowbar}{\mathord}{leftwards arrow to bar over rightwards arrow to bar}%
\UnicodeMathSymbol{"021BA}{\acwopencirclearrow }{\mathord}{anticlockwise open circle arrow}%
\UnicodeMathSymbol{"021BB}{\cwopencirclearrow }{\mathord}{clockwise open circle arrow}%
\UnicodeMathSymbol{"021BC}{\leftharpoonup }{\mathrel}{left harpoon-up}%
\UnicodeMathSymbol{"021BD}{\leftharpoondown }{\mathrel}{left harpoon-down}%
\UnicodeMathSymbol{"021BE}{\upharpoonright }{\mathrel}{/upharpoonright /restriction a: up harpoon-right}%
\UnicodeMathSymbol{"021BF}{\upharpoonleft }{\mathrel}{up harpoon-left}%
\UnicodeMathSymbol{"021C0}{\rightharpoonup }{\mathrel}{right harpoon-up}%
\UnicodeMathSymbol{"021C1}{\rightharpoondown }{\mathrel}{right harpoon-down}%
\UnicodeMathSymbol{"021C2}{\downharpoonright }{\mathrel}{down harpoon-right}%
\UnicodeMathSymbol{"021C3}{\downharpoonleft }{\mathrel}{down harpoon-left}%
\UnicodeMathSymbol{"021C4}{\rightleftarrows }{\mathrel}{right arrow over left arrow}%
\UnicodeMathSymbol{"021C5}{\updownarrows }{\mathrel}{up arrow, down arrow}%
\UnicodeMathSymbol{"021C6}{\leftrightarrows }{\mathrel}{left arrow over right arrow}%
\UnicodeMathSymbol{"021C7}{\leftleftarrows }{\mathrel}{two left arrows}%
\UnicodeMathSymbol{"021C8}{\upuparrows }{\mathrel}{two up arrows}%
\UnicodeMathSymbol{"021C9}{\rightrightarrows }{\mathrel}{two right arrows}%
\UnicodeMathSymbol{"021CA}{\downdownarrows }{\mathrel}{two down arrows}%
\UnicodeMathSymbol{"021CB}{\leftrightharpoons }{\mathrel}{left harpoon over right}%
\UnicodeMathSymbol{"021CC}{\rightleftharpoons }{\mathrel}{right harpoon over left}%
\UnicodeMathSymbol{"021CD}{\nLeftarrow }{\mathrel}{not implied by}%
\UnicodeMathSymbol{"021CE}{\nLeftrightarrow }{\mathrel}{not left and right double arrows}%
\UnicodeMathSymbol{"021CF}{\nRightarrow }{\mathrel}{not implies}%
\UnicodeMathSymbol{"021D0}{\Leftarrow }{\mathrel}{is implied by}%
\UnicodeMathSymbol{"021D1}{\Uparrow }{\mathrel}{up double arrow}%
\UnicodeMathSymbol{"021D2}{\Rightarrow }{\mathrel}{implies}%
\UnicodeMathSymbol{"021D3}{\Downarrow }{\mathrel}{down double arrow}%
\UnicodeMathSymbol{"021D4}{\Leftrightarrow }{\mathrel}{left and right double arrow}%
\UnicodeMathSymbol{"021D5}{\Updownarrow }{\mathrel}{up and down double arrow}%
\UnicodeMathSymbol{"021D6}{\Nwarrow }{\mathrel}{nw pointing double arrow}%
\UnicodeMathSymbol{"021D7}{\Nearrow }{\mathrel}{ne pointing double arrow}%
\UnicodeMathSymbol{"021D8}{\Searrow }{\mathrel}{se pointing double arrow}%
\UnicodeMathSymbol{"021D9}{\Swarrow }{\mathrel}{sw pointing double arrow}%
\UnicodeMathSymbol{"021DA}{\Lleftarrow }{\mathrel}{left triple arrow}%
\UnicodeMathSymbol{"021DB}{\Rrightarrow }{\mathrel}{right triple arrow}%
\UnicodeMathSymbol{"021DC}{\leftsquigarrow }{\mathrel}{leftwards squiggle arrow}%
\UnicodeMathSymbol{"021DD}{\rightsquigarrow }{\mathrel}{rightwards squiggle arrow}%
\UnicodeMathSymbol{"021DE}{\nHuparrow }{\mathord}{upwards arrow with double stroke}%
\UnicodeMathSymbol{"021DF}{\nHdownarrow }{\mathord}{downwards arrow with double stroke}%
\UnicodeMathSymbol{"021E0}{\leftdasharrow }{\mathord}{leftwards dashed arrow}%
\UnicodeMathSymbol{"021E1}{\updasharrow }{\mathord}{upwards dashed arrow}%
\UnicodeMathSymbol{"021E2}{\rightdasharrow }{\mathord}{rightwards dashed arrow}%
\UnicodeMathSymbol{"021E3}{\downdasharrow }{\mathord}{downwards dashed arrow}%
\UnicodeMathSymbol{"021E4}{\barleftarrow }{\mathrel}{leftwards arrow to bar}%
\UnicodeMathSymbol{"021E5}{\rightarrowbar }{\mathrel}{rightwards arrow to bar}%
\UnicodeMathSymbol{"021E6}{\leftwhitearrow }{\mathord}{leftwards white arrow}%
\UnicodeMathSymbol{"021E7}{\upwhitearrow }{\mathord}{upwards white arrow}%
\UnicodeMathSymbol{"021E8}{\rightwhitearrow }{\mathord}{rightwards white arrow}%
\UnicodeMathSymbol{"021E9}{\downwhitearrow }{\mathord}{downwards white arrow}%
\UnicodeMathSymbol{"021EA}{\whitearrowupfrombar }{\mathord}{upwards white arrow from bar}%
\UnicodeMathSymbol{"021F4}{\circleonrightarrow }{\mathrel}{right arrow with small circle}%
\UnicodeMathSymbol{"021F5}{\downuparrows }{\mathrel}{downwards arrow leftwards of upwards arrow}%
\UnicodeMathSymbol{"021F6}{\rightthreearrows }{\mathrel}{three rightwards arrows}%
\UnicodeMathSymbol{"021F7}{\nvleftarrow }{\mathrel}{leftwards arrow with vertical stroke}%
\UnicodeMathSymbol{"021F8}{\nvrightarrow }{\mathrel}{rightwards arrow with vertical stroke}%
\UnicodeMathSymbol{"021F9}{\nvleftrightarrow }{\mathrel}{left right arrow with vertical stroke}%
\UnicodeMathSymbol{"021FA}{\nVleftarrow }{\mathrel}{leftwards arrow with double vertical stroke}%
\UnicodeMathSymbol{"021FB}{\nVrightarrow }{\mathrel}{rightwards arrow with double vertical stroke}%
\UnicodeMathSymbol{"021FC}{\nVleftrightarrow }{\mathrel}{left right arrow with double vertical stroke}%
\UnicodeMathSymbol{"021FD}{\leftarrowtriangle }{\mathrel}{leftwards open-headed arrow}%
\UnicodeMathSymbol{"021FE}{\rightarrowtriangle }{\mathrel}{rightwards open-headed arrow}%
\UnicodeMathSymbol{"021FF}{\leftrightarrowtriangle }{\mathrel}{left right open-headed arrow}%
\UnicodeMathSymbol{"02200}{\forall }{\mathord}{for all}%
\UnicodeMathSymbol{"02201}{\complement }{\mathord}{complement sign}%
\UnicodeMathSymbol{"02202}{\partial }{\mathalpha}{partial differential}%
\UnicodeMathSymbol{"02203}{\exists }{\mathord}{at least one exists}%
\UnicodeMathSymbol{"02204}{\nexists }{\mathord}{negated exists}%
\UnicodeMathSymbol{"02205}{\varnothing }{\mathord}{circle, slash}%
\UnicodeMathSymbol{"02206}{\increment }{\mathord}{laplacian (delta; nabla\string^2)}%
\UnicodeMathSymbol{"02207}{\nabla }{\mathalpha}{nabla, del, hamilton operator}%
\UnicodeMathSymbol{"02208}{\in }{\mathrel}{set membership, variant}%
\UnicodeMathSymbol{"02209}{\notin }{\mathrel}{negated set membership}%
\UnicodeMathSymbol{"0220A}{\smallin }{\mathrel}{set membership (small set membership)}%
\UnicodeMathSymbol{"0220B}{\ni }{\mathrel}{contains, variant}%
\UnicodeMathSymbol{"0220C}{\nni }{\mathrel}{negated contains, variant}%
\UnicodeMathSymbol{"0220D}{\smallni }{\mathrel}{/ni /owns r: contains (small contains as member)}%
\UnicodeMathSymbol{"0220E}{\QED }{\mathord}{end of proof}%
\UnicodeMathSymbol{"0220F}{\prod }{\mathop}{product operator}%
\UnicodeMathSymbol{"02210}{\coprod }{\mathop}{coproduct operator}%
\UnicodeMathSymbol{"02211}{\sum }{\mathop}{summation operator}%
\UnicodeMathSymbol{"02212}{\minus }{\mathbin}{minus sign}%
\UnicodeMathSymbol{"02213}{\mp }{\mathbin}{minus-or-plus sign}%
\UnicodeMathSymbol{"02214}{\dotplus }{\mathbin}{plus sign, dot above}%
\UnicodeMathSymbol{"02215}{\divslash }{\mathbin}{division slash}%
\UnicodeMathSymbol{"02216}{\setminus }{\mathbin}{set minus (cf. reverse solidus)}%
\UnicodeMathSymbol{"02217}{\ast }{\mathbin}{centered asterisk}%
\UnicodeMathSymbol{"02218}{\vysmwhtcircle }{\mathbin}{composite function (small circle)}%
\UnicodeMathSymbol{"02219}{\vysmblkcircle }{\mathbin}{bullet operator}%
\UnicodeMathSymbol{"0221A}{\sqrt }{\mathopen}{radical}%
\UnicodeMathSymbol{"0221A}{\surd }{\mathord}{radical}%
\UnicodeMathSymbol{"0221B}{\cuberoot }{\mathopen}{cube root}%
\UnicodeMathSymbol{"0221C}{\fourthroot }{\mathopen}{fourth root}%
\UnicodeMathSymbol{"0221D}{\propto }{\mathrel}{is proportional to}%
\UnicodeMathSymbol{"0221E}{\infty }{\mathord}{infinity}%
\UnicodeMathSymbol{"0221F}{\rightangle }{\mathord}{right (90 degree) angle}%
\UnicodeMathSymbol{"02220}{\angle }{\mathord}{angle}%
\UnicodeMathSymbol{"02221}{\measuredangle }{\mathord}{angle-measured}%
\UnicodeMathSymbol{"02222}{\sphericalangle }{\mathord}{angle-spherical}%
\UnicodeMathSymbol{"02223}{\mid }{\mathrel}{/mid r:}%
\UnicodeMathSymbol{"02224}{\nmid }{\mathrel}{negated mid}%
\UnicodeMathSymbol{"02225}{\parallel }{\mathrel}{parallel}%
\UnicodeMathSymbol{"02226}{\nparallel }{\mathrel}{not parallel}%
\UnicodeMathSymbol{"02227}{\wedge }{\mathbin}{/wedge /land b: logical and}%
\UnicodeMathSymbol{"02228}{\vee }{\mathbin}{/vee /lor b: logical or}%
\UnicodeMathSymbol{"02229}{\cap }{\mathbin}{intersection}%
\UnicodeMathSymbol{"0222A}{\cup }{\mathbin}{union or logical sum}%
\UnicodeMathSymbol{"0222B}{\int }{\mathop}{integral operator}%
\UnicodeMathSymbol{"0222C}{\iint }{\mathop}{double integral operator}%
\UnicodeMathSymbol{"0222D}{\iiint }{\mathop}{triple integral operator}%
\UnicodeMathSymbol{"0222E}{\oint }{\mathop}{contour integral operator}%
\UnicodeMathSymbol{"0222F}{\oiint }{\mathop}{double contour integral operator}%
\UnicodeMathSymbol{"02230}{\oiiint }{\mathop}{triple contour integral operator}%
\UnicodeMathSymbol{"02231}{\intclockwise }{\mathop}{clockwise integral}%
\UnicodeMathSymbol{"02232}{\varointclockwise }{\mathop}{contour integral, clockwise}%
\UnicodeMathSymbol{"02233}{\ointctrclockwise }{\mathop}{contour integral, anticlockwise}%
\UnicodeMathSymbol{"02234}{\therefore }{\mathord}{therefore}%
\UnicodeMathSymbol{"02235}{\because }{\mathord}{because}%
\UnicodeMathSymbol{"02236}{\mathratio }{\mathrel}{ratio}%
\UnicodeMathSymbol{"02237}{\Colon }{\mathrel}{two colons}%
\UnicodeMathSymbol{"02238}{\dotminus }{\mathbin}{minus sign, dot above}%
\UnicodeMathSymbol{"02239}{\dashcolon }{\mathrel}{excess (-:)}%
\UnicodeMathSymbol{"0223A}{\dotsminusdots }{\mathrel}{minus with four dots, geometric properties}%
\UnicodeMathSymbol{"0223B}{\kernelcontraction }{\mathrel}{homothetic}%
\UnicodeMathSymbol{"0223C}{\sim }{\mathrel}{similar}%
\UnicodeMathSymbol{"0223D}{\backsim }{\mathrel}{reverse similar}%
\UnicodeMathSymbol{"0223E}{\invlazys }{\mathbin}{most positive [inverted lazy s]}%
\UnicodeMathSymbol{"0223F}{\sinewave }{\mathord}{sine wave}%
\UnicodeMathSymbol{"02240}{\wr }{\mathbin}{wreath product}%
\UnicodeMathSymbol{"02241}{\nsim }{\mathrel}{not similar}%
\UnicodeMathSymbol{"02242}{\eqsim }{\mathrel}{equals, similar}%
\UnicodeMathSymbol{"02243}{\simeq }{\mathrel}{similar, equals}%
\UnicodeMathSymbol{"02244}{\nsime }{\mathrel}{not similar, equals}%
\UnicodeMathSymbol{"02243}{\sime }{\mathrel}{similar, equals (alias)}%
\UnicodeMathSymbol{"02244}{\nsimeq }{\mathrel}{not similar, equals (alias)}%
\UnicodeMathSymbol{"02245}{\cong }{\mathrel}{congruent with}%
\UnicodeMathSymbol{"02246}{\simneqq }{\mathrel}{similar, not equals [vert only for 9573 entity]}%
\UnicodeMathSymbol{"02247}{\ncong }{\mathrel}{not congruent with}%
\UnicodeMathSymbol{"02248}{\approx }{\mathrel}{approximate}%
\UnicodeMathSymbol{"02249}{\napprox }{\mathrel}{not approximate}%
\UnicodeMathSymbol{"0224A}{\approxeq }{\mathrel}{approximate, equals}%
\UnicodeMathSymbol{"0224B}{\approxident }{\mathrel}{approximately identical to}%
\UnicodeMathSymbol{"0224C}{\backcong }{\mathrel}{all equal to}%
\UnicodeMathSymbol{"0224D}{\asymp }{\mathrel}{asymptotically equal to}%
\UnicodeMathSymbol{"0224E}{\Bumpeq }{\mathrel}{bumpy equals}%
\UnicodeMathSymbol{"0224F}{\bumpeq }{\mathrel}{bumpy equals, equals}%
\UnicodeMathSymbol{"02250}{\doteq }{\mathrel}{equals, single dot above}%
\UnicodeMathSymbol{"02251}{\Doteq }{\mathrel}{/doteqdot /doteq r: equals, even dots}%
\UnicodeMathSymbol{"02252}{\fallingdotseq }{\mathrel}{equals, falling dots}%
\UnicodeMathSymbol{"02253}{\risingdotseq }{\mathrel}{equals, rising dots}%
\UnicodeMathSymbol{"02254}{\coloneq }{\mathrel}{colon, equals}%
\UnicodeMathSymbol{"02255}{\eqcolon }{\mathrel}{equals, colon}%
\UnicodeMathSymbol{"02256}{\eqcirc }{\mathrel}{circle on equals sign}%
\UnicodeMathSymbol{"02257}{\circeq }{\mathrel}{circle, equals}%
\UnicodeMathSymbol{"02258}{\arceq }{\mathrel}{arc, equals; corresponds to}%
\UnicodeMathSymbol{"02259}{\wedgeq }{\mathrel}{corresponds to (wedge, equals)}%
\UnicodeMathSymbol{"0225A}{\veeeq }{\mathrel}{logical or, equals}%
\UnicodeMathSymbol{"0225B}{\stareq }{\mathrel}{star equals}%
\UnicodeMathSymbol{"0225C}{\triangleq }{\mathrel}{triangle, equals}%
\UnicodeMathSymbol{"0225D}{\eqdef }{\mathrel}{equals by definition}%
\UnicodeMathSymbol{"0225E}{\measeq }{\mathrel}{measured by (m over equals)}%
\UnicodeMathSymbol{"0225F}{\questeq }{\mathrel}{equal with questionmark}%
\UnicodeMathSymbol{"02260}{\ne }{\mathrel}{/ne /neq r: not equal}%
\UnicodeMathSymbol{"02261}{\equiv }{\mathrel}{identical with}%
\UnicodeMathSymbol{"02262}{\nequiv }{\mathrel}{not identical with}%
\UnicodeMathSymbol{"02263}{\Equiv }{\mathrel}{strict equivalence (4 lines)}%
\UnicodeMathSymbol{"02264}{\leq }{\mathrel}{/leq /le r: less-than-or-equal}%
\UnicodeMathSymbol{"02265}{\geq }{\mathrel}{/geq /ge r: greater-than-or-equal}%
\UnicodeMathSymbol{"02266}{\leqq }{\mathrel}{less, double equals}%
\UnicodeMathSymbol{"02267}{\geqq }{\mathrel}{greater, double equals}%
\UnicodeMathSymbol{"02268}{\lneqq }{\mathrel}{less, not double equals}%
\UnicodeMathSymbol{"02269}{\gneqq }{\mathrel}{greater, not double equals}%
\UnicodeMathSymbol{"0226A}{\ll }{\mathrel}{much less than, type 2}%
\UnicodeMathSymbol{"0226B}{\gg }{\mathrel}{much greater than, type 2}%
\UnicodeMathSymbol{"0226C}{\between }{\mathrel}{between}%
\UnicodeMathSymbol{"0226D}{\nasymp }{\mathrel}{not asymptotically equal to}%
\UnicodeMathSymbol{"0226E}{\nless }{\mathrel}{not less-than}%
\UnicodeMathSymbol{"0226F}{\ngtr }{\mathrel}{not greater-than}%
\UnicodeMathSymbol{"02270}{\nleq }{\mathrel}{not less-than-or-equal}%
\UnicodeMathSymbol{"02271}{\ngeq }{\mathrel}{not greater-than-or-equal}%
\UnicodeMathSymbol{"02272}{\lesssim }{\mathrel}{less, similar}%
\UnicodeMathSymbol{"02273}{\gtrsim }{\mathrel}{greater, similar}%
\UnicodeMathSymbol{"02274}{\nlesssim }{\mathrel}{not less, similar}%
\UnicodeMathSymbol{"02275}{\ngtrsim }{\mathrel}{not greater, similar}%
\UnicodeMathSymbol{"02276}{\lessgtr }{\mathrel}{less, greater}%
\UnicodeMathSymbol{"02277}{\gtrless }{\mathrel}{greater, less}%
\UnicodeMathSymbol{"02278}{\nlessgtr }{\mathrel}{not less, greater}%
\UnicodeMathSymbol{"02279}{\ngtrless }{\mathrel}{not greater, less}%
\UnicodeMathSymbol{"0227A}{\prec }{\mathrel}{precedes}%
\UnicodeMathSymbol{"0227B}{\succ }{\mathrel}{succeeds}%
\UnicodeMathSymbol{"0227C}{\preccurlyeq }{\mathrel}{precedes, curly equals}%
\UnicodeMathSymbol{"0227D}{\succcurlyeq }{\mathrel}{succeeds, curly equals}%
\UnicodeMathSymbol{"0227E}{\precsim }{\mathrel}{precedes, similar}%
\UnicodeMathSymbol{"0227F}{\succsim }{\mathrel}{succeeds, similar}%
\UnicodeMathSymbol{"02280}{\nprec }{\mathrel}{not precedes}%
\UnicodeMathSymbol{"02281}{\nsucc }{\mathrel}{not succeeds}%
\UnicodeMathSymbol{"02282}{\subset }{\mathrel}{subset or is implied by}%
\UnicodeMathSymbol{"02283}{\supset }{\mathrel}{superset or implies}%
\UnicodeMathSymbol{"02284}{\nsubset }{\mathrel}{not subset, variant [slash negation]}%
\UnicodeMathSymbol{"02285}{\nsupset }{\mathrel}{not superset, variant [slash negation]}%
\UnicodeMathSymbol{"02286}{\subseteq }{\mathrel}{subset, equals}%
\UnicodeMathSymbol{"02287}{\supseteq }{\mathrel}{superset, equals}%
\UnicodeMathSymbol{"02288}{\nsubseteq }{\mathrel}{not subset, equals}%
\UnicodeMathSymbol{"02289}{\nsupseteq }{\mathrel}{not superset, equals}%
\UnicodeMathSymbol{"0228A}{\subsetneq }{\mathrel}{subset, not equals}%
\UnicodeMathSymbol{"0228B}{\supsetneq }{\mathrel}{superset, not equals}%
\UnicodeMathSymbol{"0228C}{\cupleftarrow }{\mathbin}{multiset}%
\UnicodeMathSymbol{"0228D}{\cupdot }{\mathbin}{union, with dot}%
\UnicodeMathSymbol{"0228E}{\uplus }{\mathbin}{plus sign in union}%
\UnicodeMathSymbol{"0228F}{\sqsubset }{\mathrel}{square subset}%
\UnicodeMathSymbol{"02290}{\sqsupset }{\mathrel}{square superset}%
\UnicodeMathSymbol{"02291}{\sqsubseteq }{\mathrel}{square subset, equals}%
\UnicodeMathSymbol{"02292}{\sqsupseteq }{\mathrel}{square superset, equals}%
\UnicodeMathSymbol{"02293}{\sqcap }{\mathbin}{square intersection}%
\UnicodeMathSymbol{"02294}{\sqcup }{\mathbin}{square union}%
\UnicodeMathSymbol{"02295}{\oplus }{\mathbin}{plus sign in circle}%
\UnicodeMathSymbol{"02296}{\ominus }{\mathbin}{minus sign in circle}%
\UnicodeMathSymbol{"02297}{\otimes }{\mathbin}{multiply sign in circle}%
\UnicodeMathSymbol{"02298}{\oslash }{\mathbin}{solidus in circle}%
\UnicodeMathSymbol{"02299}{\odot }{\mathbin}{middle dot in circle}%
\UnicodeMathSymbol{"0229A}{\circledcirc }{\mathbin}{small circle in circle}%
\UnicodeMathSymbol{"0229B}{\circledast }{\mathbin}{asterisk in circle}%
\UnicodeMathSymbol{"0229C}{\circledequal }{\mathbin}{equal in circle}%
\UnicodeMathSymbol{"0229D}{\circleddash }{\mathbin}{hyphen in circle}%
\UnicodeMathSymbol{"0229E}{\boxplus }{\mathbin}{plus sign in box}%
\UnicodeMathSymbol{"0229F}{\boxminus }{\mathbin}{minus sign in box}%
\UnicodeMathSymbol{"022A0}{\boxtimes }{\mathbin}{multiply sign in box}%
\UnicodeMathSymbol{"022A1}{\boxdot }{\mathbin}{/dotsquare /boxdot b: small dot in box}%
\UnicodeMathSymbol{"022A2}{\vdash }{\mathrel}{vertical, dash}%
\UnicodeMathSymbol{"022A3}{\dashv }{\mathrel}{dash, vertical}%
\UnicodeMathSymbol{"022A4}{\top }{\mathord}{top}%
\UnicodeMathSymbol{"022A5}{\bot }{\mathord}{bottom}%
\UnicodeMathSymbol{"022A6}{\assert }{\mathrel}{assertion (vertical, short dash)}%
\UnicodeMathSymbol{"022A7}{\models }{\mathrel}{models (vertical, short double dash)}%
\UnicodeMathSymbol{"022A8}{\vDash }{\mathrel}{vertical, double dash}%
\UnicodeMathSymbol{"022A9}{\Vdash }{\mathrel}{double vertical, dash}%
\UnicodeMathSymbol{"022AA}{\Vvdash }{\mathrel}{triple vertical, dash}%
\UnicodeMathSymbol{"022AB}{\VDash }{\mathrel}{double vert, double dash}%
\UnicodeMathSymbol{"022AC}{\nvdash }{\mathrel}{not vertical, dash}%
\UnicodeMathSymbol{"022AD}{\nvDash }{\mathrel}{not vertical, double dash}%
\UnicodeMathSymbol{"022AE}{\nVdash }{\mathrel}{not double vertical, dash}%
\UnicodeMathSymbol{"022AF}{\nVDash }{\mathrel}{not double vert, double dash}%
\UnicodeMathSymbol{"022B0}{\prurel }{\mathrel}{element precedes under relation}%
\UnicodeMathSymbol{"022B1}{\scurel }{\mathrel}{succeeds under relation}%
\UnicodeMathSymbol{"022B2}{\vartriangleleft }{\mathrel}{left triangle, open, variant}%
\UnicodeMathSymbol{"022B3}{\vartriangleright }{\mathrel}{right triangle, open, variant}%
\UnicodeMathSymbol{"022B4}{\trianglelefteq }{\mathrel}{left triangle, equals}%
\UnicodeMathSymbol{"022B5}{\trianglerighteq }{\mathrel}{right triangle, equals}%
\UnicodeMathSymbol{"022B6}{\origof }{\mathrel}{original of}%
\UnicodeMathSymbol{"022B7}{\imageof }{\mathrel}{image of}%
\UnicodeMathSymbol{"022B8}{\multimap }{\mathrel}{/multimap a:}%
\UnicodeMathSymbol{"022B9}{\hermitmatrix }{\mathord}{hermitian conjugate matrix}%
\UnicodeMathSymbol{"022BA}{\intercal }{\mathbin}{intercal}%
\UnicodeMathSymbol{"022BB}{\veebar }{\mathbin}{logical or, bar below (large vee); exclusive disjunction}%
\UnicodeMathSymbol{"022BC}{\barwedge }{\mathbin}{bar, wedge (large wedge)}%
\UnicodeMathSymbol{"022BD}{\barvee }{\mathbin}{bar, vee (large vee)}%
\UnicodeMathSymbol{"022BE}{\measuredrightangle }{\mathord}{right angle-measured [with arc]}%
\UnicodeMathSymbol{"022BF}{\varlrtriangle }{\mathord}{right triangle}%
\UnicodeMathSymbol{"022C0}{\bigwedge }{\mathop}{logical and operator}%
\UnicodeMathSymbol{"022C1}{\bigvee }{\mathop}{logical or operator}%
\UnicodeMathSymbol{"022C2}{\bigcap }{\mathop}{intersection operator}%
\UnicodeMathSymbol{"022C3}{\bigcup }{\mathop}{union operator}%
\UnicodeMathSymbol{"022C4}{\smwhtdiamond }{\mathbin}{white diamond}%
\UnicodeMathSymbol{"022C5}{\cdot }{\mathbin}{small middle dot}%
\UnicodeMathSymbol{"022C6}{\star }{\mathbin}{small star, filled, low}%
\UnicodeMathSymbol{"022C7}{\divideontimes }{\mathbin}{division on times}%
\UnicodeMathSymbol{"022C8}{\bowtie }{\mathrel}{bowtie}%
\UnicodeMathSymbol{"022C9}{\ltimes }{\mathbin}{times sign, left closed}%
\UnicodeMathSymbol{"022CA}{\rtimes }{\mathbin}{times sign, right closed}%
\UnicodeMathSymbol{"022CB}{\leftthreetimes }{\mathbin}{left semidirect product}%
\UnicodeMathSymbol{"022CC}{\rightthreetimes }{\mathbin}{right semidirect product}%
\UnicodeMathSymbol{"022CD}{\backsimeq }{\mathrel}{reverse similar, equals}%
\UnicodeMathSymbol{"022CE}{\curlyvee }{\mathbin}{curly logical or}%
\UnicodeMathSymbol{"022CF}{\curlywedge }{\mathbin}{curly logical and}%
\UnicodeMathSymbol{"022D0}{\Subset }{\mathrel}{double subset}%
\UnicodeMathSymbol{"022D1}{\Supset }{\mathrel}{double superset}%
\UnicodeMathSymbol{"022D2}{\Cap }{\mathbin}{/cap /doublecap b: double intersection}%
\UnicodeMathSymbol{"022D3}{\Cup }{\mathbin}{/cup /doublecup b: double union}%
\UnicodeMathSymbol{"022D4}{\pitchfork }{\mathrel}{pitchfork}%
\UnicodeMathSymbol{"022D5}{\equalparallel }{\mathrel}{parallel, equal; equal or parallel}%
\UnicodeMathSymbol{"022D6}{\lessdot }{\mathrel}{less than, with dot}%
\UnicodeMathSymbol{"022D7}{\gtrdot }{\mathrel}{greater than, with dot}%
\UnicodeMathSymbol{"022D8}{\lll }{\mathrel}{/ll /lll /llless r: triple less-than}%
\UnicodeMathSymbol{"022D9}{\ggg }{\mathrel}{/ggg /gg /gggtr r: triple greater-than}%
\UnicodeMathSymbol{"022DA}{\lesseqgtr }{\mathrel}{less, equals, greater}%
\UnicodeMathSymbol{"022DB}{\gtreqless }{\mathrel}{greater, equals, less}%
\UnicodeMathSymbol{"022DC}{\eqless }{\mathrel}{equal-or-less}%
\UnicodeMathSymbol{"022DD}{\eqgtr }{\mathrel}{equal-or-greater}%
\UnicodeMathSymbol{"022DE}{\curlyeqprec }{\mathrel}{curly equals, precedes}%
\UnicodeMathSymbol{"022DF}{\curlyeqsucc }{\mathrel}{curly equals, succeeds}%
\UnicodeMathSymbol{"022E0}{\npreccurlyeq }{\mathrel}{not precedes, curly equals}%
\UnicodeMathSymbol{"022E1}{\nsucccurlyeq }{\mathrel}{not succeeds, curly equals}%
\UnicodeMathSymbol{"022E2}{\nsqsubseteq }{\mathrel}{not, square subset, equals}%
\UnicodeMathSymbol{"022E3}{\nsqsupseteq }{\mathrel}{not, square superset, equals}%
\UnicodeMathSymbol{"022E4}{\sqsubsetneq }{\mathrel}{square subset, not equals}%
\UnicodeMathSymbol{"022E5}{\sqsupsetneq }{\mathrel}{square superset, not equals}%
\UnicodeMathSymbol{"022E6}{\lnsim }{\mathrel}{less, not similar}%
\UnicodeMathSymbol{"022E7}{\gnsim }{\mathrel}{greater, not similar}%
\UnicodeMathSymbol{"022E8}{\precnsim }{\mathrel}{precedes, not similar}%
\UnicodeMathSymbol{"022E9}{\succnsim }{\mathrel}{succeeds, not similar}%
\UnicodeMathSymbol{"022EA}{\nvartriangleleft }{\mathrel}{not left triangle}%
\UnicodeMathSymbol{"022EB}{\nvartriangleright }{\mathrel}{not right triangle}%
\UnicodeMathSymbol{"022EC}{\ntrianglelefteq }{\mathrel}{not left triangle, equals}%
\UnicodeMathSymbol{"022ED}{\ntrianglerighteq }{\mathrel}{not right triangle, equals}%
\UnicodeMathSymbol{"022EE}{\vdots }{\mathrel}{vertical ellipsis}%
\UnicodeMathSymbol{"022EF}{\unicodecdots }{\mathord}{three dots, centered}%
\UnicodeMathSymbol{"022F0}{\adots }{\mathrel}{three dots, ascending}%
\UnicodeMathSymbol{"022F1}{\ddots }{\mathrel}{three dots, descending}%
\UnicodeMathSymbol{"022F2}{\disin }{\mathrel}{element of with long horizontal stroke}%
\UnicodeMathSymbol{"022F3}{\varisins }{\mathrel}{element of with vertical bar at end of horizontal stroke}%
\UnicodeMathSymbol{"022F4}{\isins }{\mathrel}{small element of with vertical bar at end of horizontal stroke}%
\UnicodeMathSymbol{"022F5}{\isindot }{\mathrel}{element of with dot above}%
\UnicodeMathSymbol{"022F6}{\varisinobar }{\mathrel}{element of with overbar}%
\UnicodeMathSymbol{"022F7}{\isinobar }{\mathrel}{small element of with overbar}%
\UnicodeMathSymbol{"022F8}{\isinvb }{\mathrel}{element of with underbar}%
\UnicodeMathSymbol{"022F9}{\isinE }{\mathrel}{element of with two horizontal strokes}%
\UnicodeMathSymbol{"022FA}{\nisd }{\mathrel}{contains with long horizontal stroke}%
\UnicodeMathSymbol{"022FB}{\varnis }{\mathrel}{contains with vertical bar at end of horizontal stroke}%
\UnicodeMathSymbol{"022FC}{\nis }{\mathrel}{small contains with vertical bar at end of horizontal stroke}%
\UnicodeMathSymbol{"022FD}{\varniobar }{\mathrel}{contains with overbar}%
\UnicodeMathSymbol{"022FE}{\niobar }{\mathrel}{small contains with overbar}%
\UnicodeMathSymbol{"022FF}{\bagmember }{\mathrel}{z notation bag membership}%
\UnicodeMathSymbol{"02300}{\diameter }{\mathord}{diameter sign}%
\UnicodeMathSymbol{"02302}{\house }{\mathord}{house}%
\UnicodeMathSymbol{"02305}{\varbarwedge }{\mathbin}{/barwedge b: logical and, bar above [projective (bar over small wedge)]}%
\UnicodeMathSymbol{"02306}{\vardoublebarwedge }{\mathbin}{/doublebarwedge b: logical and, double bar above [perspective (double bar over small wedge)]}%
\UnicodeMathSymbol{"02308}{\lceil }{\mathopen}{left ceiling}%
\UnicodeMathSymbol{"02309}{\rceil }{\mathclose}{right ceiling}%
\UnicodeMathSymbol{"0230A}{\lfloor }{\mathopen}{left floor}%
\UnicodeMathSymbol{"0230B}{\rfloor }{\mathclose}{right floor}%
\UnicodeMathSymbol{"02310}{\invnot }{\mathord}{reverse not}%
\UnicodeMathSymbol{"02311}{\sqlozenge }{\mathord}{square lozenge}%
\UnicodeMathSymbol{"02312}{\profline }{\mathord}{profile of a line}%
\UnicodeMathSymbol{"02313}{\profsurf }{\mathord}{profile of a surface}%
\UnicodeMathSymbol{"02317}{\viewdata }{\mathord}{viewdata square}%
\UnicodeMathSymbol{"02319}{\turnednot }{\mathord}{turned not sign}%
\UnicodeMathSymbol{"0231C}{\ulcorner }{\mathopen}{upper left corner}%
\UnicodeMathSymbol{"0231D}{\urcorner }{\mathclose}{upper right corner}%
\UnicodeMathSymbol{"0231E}{\llcorner }{\mathopen}{lower left corner}%
\UnicodeMathSymbol{"0231F}{\lrcorner }{\mathclose}{lower right corner}%
\UnicodeMathSymbol{"02320}{\inttop }{\mathord}{top half integral}%
\UnicodeMathSymbol{"02321}{\intbottom }{\mathord}{bottom half integral}%
\UnicodeMathSymbol{"02322}{\frown }{\mathrel}{down curve}%
\UnicodeMathSymbol{"02323}{\smile }{\mathrel}{up curve}%
\UnicodeMathSymbol{"0232C}{\varhexagonlrbonds }{\mathord}{six carbon ring, corner down, double bonds lower right etc}%
\UnicodeMathSymbol{"02332}{\conictaper }{\mathord}{conical taper }%
\UnicodeMathSymbol{"02336}{\topbot }{\mathord}{top and bottom}%
\UnicodeMathSymbol{"0233D}{\obar }{\mathbin}{circle with vertical bar}%
\UnicodeMathSymbol{"0233F}{\APLnotslash }{\mathrel}{solidus, bar through (apl functional symbol slash bar)}%
\UnicodeMathSymbol{"02340}{\APLnotbackslash }{\mathord}{apl functional symbol backslash bar}%
\UnicodeMathSymbol{"02353}{\APLboxupcaret }{\mathord}{boxed up caret}%
\UnicodeMathSymbol{"02370}{\APLboxquestion }{\mathord}{boxed question mark}%
\UnicodeMathSymbol{"0237C}{\rangledownzigzagarrow }{\mathord}{right angle with downwards zigzag arrow}%
\UnicodeMathSymbol{"02394}{\hexagon }{\mathord}{horizontal benzene ring [hexagon flat open]}%
\UnicodeMathSymbol{"0239B}{\lparenuend }{\mathord}{left parenthesis upper hook}%
\UnicodeMathSymbol{"0239C}{\lparenextender }{\mathord}{left parenthesis extension}%
\UnicodeMathSymbol{"0239D}{\lparenlend }{\mathord}{left parenthesis lower hook}%
\UnicodeMathSymbol{"0239E}{\rparenuend }{\mathord}{right parenthesis upper hook}%
\UnicodeMathSymbol{"0239F}{\rparenextender }{\mathord}{right parenthesis extension}%
\UnicodeMathSymbol{"023A0}{\rparenlend }{\mathord}{right parenthesis lower hook}%
\UnicodeMathSymbol{"023A1}{\lbrackuend }{\mathord}{left square bracket upper corner}%
\UnicodeMathSymbol{"023A2}{\lbrackextender }{\mathord}{left square bracket extension}%
\UnicodeMathSymbol{"023A3}{\lbracklend }{\mathord}{left square bracket lower corner}%
\UnicodeMathSymbol{"023A4}{\rbrackuend }{\mathord}{right square bracket upper corner}%
\UnicodeMathSymbol{"023A5}{\rbrackextender }{\mathord}{right square bracket extension}%
\UnicodeMathSymbol{"023A6}{\rbracklend }{\mathord}{right square bracket lower corner}%
\UnicodeMathSymbol{"023A7}{\lbraceuend }{\mathord}{left curly bracket upper hook}%
\UnicodeMathSymbol{"023A8}{\lbracemid }{\mathord}{left curly bracket middle piece}%
\UnicodeMathSymbol{"023A9}{\lbracelend }{\mathord}{left curly bracket lower hook}%
\UnicodeMathSymbol{"023AA}{\vbraceextender }{\mathord}{curly bracket extension}%
\UnicodeMathSymbol{"023AB}{\rbraceuend }{\mathord}{right curly bracket upper hook}%
\UnicodeMathSymbol{"023AC}{\rbracemid }{\mathord}{right curly bracket middle piece}%
\UnicodeMathSymbol{"023AD}{\rbracelend }{\mathord}{right curly bracket lower hook}%
\UnicodeMathSymbol{"023AE}{\intextender }{\mathord}{integral extension}%
\UnicodeMathSymbol{"023AF}{\harrowextender }{\mathord}{horizontal line extension (used to extend arrows)}%
\UnicodeMathSymbol{"023B0}{\lmoustache }{\mathopen}{upper left or lower right curly bracket section}%
\UnicodeMathSymbol{"023B1}{\rmoustache }{\mathclose}{upper right or lower left curly bracket section}%
\UnicodeMathSymbol{"023B2}{\sumtop }{\mathord}{summation top}%
\UnicodeMathSymbol{"023B3}{\sumbottom }{\mathord}{summation bottom}%
\UnicodeMathSymbol{"023B4}{\overbracket }{\mathover}{top square bracket}%
\UnicodeMathSymbol{"023B5}{\underbracket }{\mathunder}{bottom square bracket}%
\UnicodeMathSymbol{"023B6}{\bbrktbrk }{\mathord}{bottom square bracket over top square bracket}%
\UnicodeMathSymbol{"023B7}{\sqrtbottom }{\mathord}{radical symbol bottom}%
\UnicodeMathSymbol{"023B8}{\lvboxline }{\mathord}{left vertical box line}%
\UnicodeMathSymbol{"023B9}{\rvboxline }{\mathord}{right vertical box line}%
\UnicodeMathSymbol{"023CE}{\varcarriagereturn }{\mathord}{return symbol}%
\UnicodeMathSymbol{"023DC}{\overparen }{\mathover}{top parenthesis (mathematical use)}%
\UnicodeMathSymbol{"023DD}{\underparen }{\mathunder}{bottom parenthesis (mathematical use)}%
\UnicodeMathSymbol{"023DE}{\overbrace }{\mathover}{top curly bracket (mathematical use)}%
\UnicodeMathSymbol{"023DF}{\underbrace }{\mathunder}{bottom curly bracket (mathematical use)}%
\UnicodeMathSymbol{"023E0}{\obrbrak }{\mathord}{top tortoise shell bracket (mathematical use)}%
\UnicodeMathSymbol{"023E1}{\ubrbrak }{\mathord}{bottom tortoise shell bracket (mathematical use)}%
\UnicodeMathSymbol{"023E2}{\trapezium }{\mathord}{white trapezium}%
\UnicodeMathSymbol{"023E3}{\benzenr }{\mathord}{benzene ring with circle}%
\UnicodeMathSymbol{"023E4}{\strns }{\mathord}{straightness}%
\UnicodeMathSymbol{"023E5}{\fltns }{\mathord}{flatness}%
\UnicodeMathSymbol{"023E6}{\accurrent }{\mathord}{ac current}%
\UnicodeMathSymbol{"023E7}{\elinters }{\mathord}{electrical intersection}%
\UnicodeMathSymbol{"02422}{\blanksymbol }{\mathord}{blank symbol}%
\UnicodeMathSymbol{"02423}{\mathvisiblespace }{\mathord}{open box}%
\UnicodeMathSymbol{"02506}{\bdtriplevdash }{\mathord}{doubly broken vert}%
\UnicodeMathSymbol{"02580}{\blockuphalf }{\mathord}{upper half block}%
\UnicodeMathSymbol{"02584}{\blocklowhalf }{\mathord}{lower half block}%
\UnicodeMathSymbol{"02588}{\blockfull }{\mathord}{full block}%
\UnicodeMathSymbol{"0258C}{\blocklefthalf }{\mathord}{left half block}%
\UnicodeMathSymbol{"02590}{\blockrighthalf }{\mathord}{right half block}%
\UnicodeMathSymbol{"02591}{\blockqtrshaded }{\mathord}{25\% shaded block}%
\UnicodeMathSymbol{"02592}{\blockhalfshaded }{\mathord}{50\% shaded block}%
\UnicodeMathSymbol{"02593}{\blockthreeqtrshaded }{\mathord}{75\% shaded block}%
\UnicodeMathSymbol{"025A0}{\mdlgblksquare }{\mathord}{square, filled}%
\UnicodeMathSymbol{"025A1}{\mdlgwhtsquare }{\mathord}{square, open}%
\UnicodeMathSymbol{"025A2}{\squoval }{\mathord}{white square with rounded corners}%
\UnicodeMathSymbol{"025A3}{\blackinwhitesquare }{\mathord}{white square containing black small square}%
\UnicodeMathSymbol{"025A4}{\squarehfill }{\mathord}{square, horizontal rule filled}%
\UnicodeMathSymbol{"025A5}{\squarevfill }{\mathord}{square, vertical rule filled}%
\UnicodeMathSymbol{"025A6}{\squarehvfill }{\mathord}{square with orthogonal crosshatch fill}%
\UnicodeMathSymbol{"025A7}{\squarenwsefill }{\mathord}{square, nw-to-se rule filled}%
\UnicodeMathSymbol{"025A8}{\squareneswfill }{\mathord}{square, ne-to-sw rule filled}%
\UnicodeMathSymbol{"025A9}{\squarecrossfill }{\mathord}{square with diagonal crosshatch fill}%
\UnicodeMathSymbol{"025AA}{\smblksquare }{\mathord}{/blacksquare - sq bullet, filled}%
\UnicodeMathSymbol{"025AB}{\smwhtsquare }{\mathord}{white small square}%
\UnicodeMathSymbol{"025AC}{\hrectangleblack }{\mathord}{black rectangle}%
\UnicodeMathSymbol{"025AD}{\hrectangle }{\mathord}{horizontal rectangle, open}%
\UnicodeMathSymbol{"025AE}{\vrectangleblack }{\mathord}{black vertical rectangle}%
\UnicodeMathSymbol{"025AF}{\vrectangle }{\mathord}{rectangle, white (vertical)}%
\UnicodeMathSymbol{"025B0}{\parallelogramblack }{\mathord}{black parallelogram}%
\UnicodeMathSymbol{"025B1}{\parallelogram }{\mathord}{parallelogram, open}%
\UnicodeMathSymbol{"025B2}{\bigblacktriangleup }{\mathord}{black up-pointing triangle}%
\UnicodeMathSymbol{"025B3}{\bigtriangleup }{\mathbin}{big up triangle, open}%
\UnicodeMathSymbol{"025B4}{\blacktriangle }{\mathord}{up triangle, filled}%
\UnicodeMathSymbol{"025B5}{\vartriangle }{\mathrel}{/triangle - up triangle, open}%
\UnicodeMathSymbol{"025B6}{\blacktriangleright }{\mathord}{(large) right triangle, filled}%
\UnicodeMathSymbol{"025B7}{\triangleright }{\mathbin}{(large) right triangle, open; z notation range restriction}%
\UnicodeMathSymbol{"025B8}{\smallblacktriangleright }{\mathord}{right triangle, filled}%
\UnicodeMathSymbol{"025B9}{\smalltriangleright }{\mathord}{right triangle, open}%
\UnicodeMathSymbol{"025BA}{\blackpointerright }{\mathord}{black right-pointing pointer}%
\UnicodeMathSymbol{"025BB}{\whitepointerright }{\mathord}{white right-pointing pointer}%
\UnicodeMathSymbol{"025BC}{\bigblacktriangledown }{\mathord}{big down triangle, filled}%
\UnicodeMathSymbol{"025BD}{\bigtriangledown }{\mathord}{big down triangle, open}%
\UnicodeMathSymbol{"025BE}{\blacktriangledown }{\mathord}{down triangle, filled}%
\UnicodeMathSymbol{"025BF}{\triangledown }{\mathord}{down triangle, open}%
\UnicodeMathSymbol{"025C0}{\blacktriangleleft }{\mathord}{(large) left triangle, filled}%
\UnicodeMathSymbol{"025C1}{\triangleleft }{\mathbin}{(large) left triangle, open; z notation domain restriction}%
\UnicodeMathSymbol{"025C2}{\smallblacktriangleleft }{\mathord}{left triangle, filled}%
\UnicodeMathSymbol{"025C3}{\smalltriangleleft }{\mathord}{left triangle, open}%
\UnicodeMathSymbol{"025C4}{\blackpointerleft }{\mathord}{black left-pointing pointer}%
\UnicodeMathSymbol{"025C5}{\whitepointerleft }{\mathord}{white left-pointing pointer}%
\UnicodeMathSymbol{"025C6}{\mdlgblkdiamond }{\mathord}{black diamond}%
\UnicodeMathSymbol{"025C7}{\mdlgwhtdiamond }{\mathord}{white diamond; diamond, open}%
\UnicodeMathSymbol{"025C8}{\blackinwhitediamond }{\mathord}{white diamond containing black small diamond}%
\UnicodeMathSymbol{"025C9}{\fisheye }{\mathord}{fisheye}%
\UnicodeMathSymbol{"025CA}{\mdlgwhtlozenge }{\mathord}{lozenge or total mark}%
\UnicodeMathSymbol{"025CB}{\mdlgwhtcircle }{\mathbin}{medium large circle}%
\UnicodeMathSymbol{"025CC}{\dottedcircle }{\mathord}{dotted circle}%
\UnicodeMathSymbol{"025CD}{\circlevertfill }{\mathord}{circle with vertical fill}%
\UnicodeMathSymbol{"025CE}{\bullseye }{\mathord}{bullseye}%
\UnicodeMathSymbol{"025CF}{\mdlgblkcircle }{\mathord}{circle, filled}%
\UnicodeMathSymbol{"025D0}{\circlelefthalfblack }{\mathord}{circle, filled left half [harvey ball]}%
\UnicodeMathSymbol{"025D1}{\circlerighthalfblack }{\mathord}{circle, filled right half}%
\UnicodeMathSymbol{"025D2}{\circlebottomhalfblack }{\mathord}{circle, filled bottom half}%
\UnicodeMathSymbol{"025D3}{\circletophalfblack }{\mathord}{circle, filled top half}%
\UnicodeMathSymbol{"025D4}{\circleurquadblack }{\mathord}{circle with upper right quadrant black}%
\UnicodeMathSymbol{"025D5}{\blackcircleulquadwhite }{\mathord}{circle with all but upper left quadrant black}%
\UnicodeMathSymbol{"025D6}{\blacklefthalfcircle }{\mathord}{left half black circle}%
\UnicodeMathSymbol{"025D7}{\blackrighthalfcircle }{\mathord}{right half black circle}%
\UnicodeMathSymbol{"025D8}{\inversebullet }{\mathord}{inverse bullet }%
\UnicodeMathSymbol{"025D9}{\inversewhitecircle }{\mathord}{inverse white circle}%
\UnicodeMathSymbol{"025DA}{\invwhiteupperhalfcircle }{\mathord}{upper half inverse white circle}%
\UnicodeMathSymbol{"025DB}{\invwhitelowerhalfcircle }{\mathord}{lower half inverse white circle}%
\UnicodeMathSymbol{"025DC}{\ularc }{\mathord}{upper left quadrant circular arc}%
\UnicodeMathSymbol{"025DD}{\urarc }{\mathord}{upper right quadrant circular arc}%
\UnicodeMathSymbol{"025DE}{\lrarc }{\mathord}{lower right quadrant circular arc}%
\UnicodeMathSymbol{"025DF}{\llarc }{\mathord}{lower left quadrant circular arc}%
\UnicodeMathSymbol{"025E0}{\topsemicircle }{\mathord}{upper half circle}%
\UnicodeMathSymbol{"025E1}{\botsemicircle }{\mathord}{lower half circle}%
\UnicodeMathSymbol{"025E2}{\lrblacktriangle }{\mathord}{lower right triangle, filled}%
\UnicodeMathSymbol{"025E3}{\llblacktriangle }{\mathord}{lower left triangle, filled}%
\UnicodeMathSymbol{"025E4}{\ulblacktriangle }{\mathord}{upper left triangle, filled}%
\UnicodeMathSymbol{"025E5}{\urblacktriangle }{\mathord}{upper right triangle, filled}%
\UnicodeMathSymbol{"025E6}{\smwhtcircle }{\mathord}{white bullet}%
\UnicodeMathSymbol{"025E7}{\squareleftblack }{\mathord}{square, filled left half}%
\UnicodeMathSymbol{"025E8}{\squarerightblack }{\mathord}{square, filled right half}%
\UnicodeMathSymbol{"025E9}{\squareulblack }{\mathord}{square, filled top left corner}%
\UnicodeMathSymbol{"025EA}{\squarelrblack }{\mathord}{square, filled bottom right corner}%
\UnicodeMathSymbol{"025EB}{\boxbar }{\mathbin}{vertical bar in box}%
\UnicodeMathSymbol{"025EC}{\trianglecdot }{\mathord}{triangle with centered dot}%
\UnicodeMathSymbol{"025ED}{\triangleleftblack }{\mathord}{up-pointing triangle with left half black}%
\UnicodeMathSymbol{"025EE}{\trianglerightblack }{\mathord}{up-pointing triangle with right half black}%
\UnicodeMathSymbol{"025EF}{\lgwhtcircle }{\mathord}{large circle}%
\UnicodeMathSymbol{"025F0}{\squareulquad }{\mathord}{white square with upper left quadrant}%
\UnicodeMathSymbol{"025F1}{\squarellquad }{\mathord}{white square with lower left quadrant}%
\UnicodeMathSymbol{"025F2}{\squarelrquad }{\mathord}{white square with lower right quadrant}%
\UnicodeMathSymbol{"025F3}{\squareurquad }{\mathord}{white square with upper right quadrant}%
\UnicodeMathSymbol{"025F4}{\circleulquad }{\mathord}{white circle with upper left quadrant}%
\UnicodeMathSymbol{"025F5}{\circlellquad }{\mathord}{white circle with lower left quadrant}%
\UnicodeMathSymbol{"025F6}{\circlelrquad }{\mathord}{white circle with lower right quadrant}%
\UnicodeMathSymbol{"025F7}{\circleurquad }{\mathord}{white circle with upper right quadrant}%
\UnicodeMathSymbol{"025F8}{\ultriangle }{\mathord}{upper left triangle}%
\UnicodeMathSymbol{"025F9}{\urtriangle }{\mathord}{upper right triangle}%
\UnicodeMathSymbol{"025FA}{\lltriangle }{\mathord}{lower left triangle}%
\UnicodeMathSymbol{"025FB}{\mdwhtsquare }{\mathord}{white medium square}%
\UnicodeMathSymbol{"025FC}{\mdblksquare }{\mathord}{black medium square}%
\UnicodeMathSymbol{"025FD}{\mdsmwhtsquare }{\mathord}{white medium small square}%
\UnicodeMathSymbol{"025FE}{\mdsmblksquare }{\mathord}{black medium small square}%
\UnicodeMathSymbol{"025FF}{\lrtriangle }{\mathord}{lower right triangle}%
\UnicodeMathSymbol{"02605}{\bigstar }{\mathord}{star, filled}%
\UnicodeMathSymbol{"02606}{\bigwhitestar }{\mathord}{star, open}%
\UnicodeMathSymbol{"02609}{\astrosun }{\mathord}{sun}%
\UnicodeMathSymbol{"02621}{\danger }{\mathord}{dangerous bend (caution sign)}%
\UnicodeMathSymbol{"0263B}{\blacksmiley }{\mathord}{black smiling face}%
\UnicodeMathSymbol{"0263C}{\sun }{\mathord}{white sun with rays}%
\UnicodeMathSymbol{"0263D}{\rightmoon }{\mathord}{first quarter moon}%
\UnicodeMathSymbol{"0263E}{\leftmoon }{\mathord}{last quarter moon}%
\UnicodeMathSymbol{"02640}{\female }{\mathord}{venus, female}%
\UnicodeMathSymbol{"02642}{\male }{\mathord}{mars, male}%
\UnicodeMathSymbol{"02660}{\spadesuit }{\mathord}{spades suit symbol}%
\UnicodeMathSymbol{"02661}{\heartsuit }{\mathord}{heart suit symbol}%
\UnicodeMathSymbol{"02662}{\diamondsuit }{\mathord}{diamond suit symbol}%
\UnicodeMathSymbol{"02663}{\clubsuit }{\mathord}{club suit symbol}%
\UnicodeMathSymbol{"02664}{\varspadesuit }{\mathord}{spade, white (card suit)}%
\UnicodeMathSymbol{"02665}{\varheartsuit }{\mathord}{filled heart (card suit)}%
\UnicodeMathSymbol{"02666}{\vardiamondsuit }{\mathord}{filled diamond (card suit)}%
\UnicodeMathSymbol{"02667}{\varclubsuit }{\mathord}{club, white (card suit)}%
\UnicodeMathSymbol{"02669}{\quarternote }{\mathord}{music note (sung text sign)}%
\UnicodeMathSymbol{"0266A}{\eighthnote }{\mathord}{eighth note}%
\UnicodeMathSymbol{"0266B}{\twonotes }{\mathord}{beamed eighth notes}%
\UnicodeMathSymbol{"0266D}{\flat }{\mathord}{musical flat}%
\UnicodeMathSymbol{"0266E}{\natural }{\mathord}{music natural}%
\UnicodeMathSymbol{"0266F}{\sharp }{\mathord}{musical sharp}%
\UnicodeMathSymbol{"0267E}{\acidfree }{\mathord}{permanent paper sign}%
\UnicodeMathSymbol{"02680}{\dicei }{\mathord}{die face-1}%
\UnicodeMathSymbol{"02681}{\diceii }{\mathord}{die face-2}%
\UnicodeMathSymbol{"02682}{\diceiii }{\mathord}{die face-3}%
\UnicodeMathSymbol{"02683}{\diceiv }{\mathord}{die face-4}%
\UnicodeMathSymbol{"02684}{\dicev }{\mathord}{die face-5}%
\UnicodeMathSymbol{"02685}{\dicevi }{\mathord}{die face-6}%
\UnicodeMathSymbol{"02686}{\circledrightdot }{\mathord}{white circle with dot right}%
\UnicodeMathSymbol{"02687}{\circledtwodots }{\mathord}{white circle with two dots}%
\UnicodeMathSymbol{"02688}{\blackcircledrightdot }{\mathord}{black circle with white dot right}%
\UnicodeMathSymbol{"02689}{\blackcircledtwodots }{\mathord}{black circle with two white dots}%
\UnicodeMathSymbol{"026A5}{\Hermaphrodite }{\mathord}{male and female sign}%
\UnicodeMathSymbol{"026AA}{\mdwhtcircle }{\mathord}{medium white circle}%
\UnicodeMathSymbol{"026AB}{\mdblkcircle }{\mathord}{medium black circle}%
\UnicodeMathSymbol{"026AC}{\mdsmwhtcircle }{\mathord}{medium small white circle}%
\UnicodeMathSymbol{"026B2}{\neuter }{\mathord}{neuter}%
\UnicodeMathSymbol{"02713}{\checkmark }{\mathord}{tick, check mark}%
\UnicodeMathSymbol{"02720}{\maltese }{\mathord}{maltese cross}%
\UnicodeMathSymbol{"0272A}{\circledstar }{\mathord}{circled white star}%
\UnicodeMathSymbol{"02736}{\varstar }{\mathord}{six pointed black star}%
\UnicodeMathSymbol{"0273D}{\dingasterisk }{\mathord}{heavy teardrop-spoked asterisk}%
\UnicodeMathSymbol{"02772}{\lbrbrak }{\mathopen}{light left tortoise shell bracket ornament}%
\UnicodeMathSymbol{"02773}{\rbrbrak }{\mathclose}{light right tortoise shell bracket ornament}%
\UnicodeMathSymbol{"0279B}{\draftingarrow }{\mathord}{right arrow with bold head (drafting)}%
\UnicodeMathSymbol{"027C0}{\threedangle }{\mathord}{three dimensional angle}%
\UnicodeMathSymbol{"027C1}{\whiteinwhitetriangle }{\mathord}{white triangle containing small white triangle}%
\UnicodeMathSymbol{"027C2}{\perp }{\mathrel}{perpendicular}%
\UnicodeMathSymbol{"027C3}{\subsetcirc }{\mathord}{open subset}%
\UnicodeMathSymbol{"027C4}{\supsetcirc }{\mathord}{open superset}%
\UnicodeMathSymbol{"027C5}{\lbag }{\mathopen}{left s-shaped bag delimiter}%
\UnicodeMathSymbol{"027C6}{\rbag }{\mathclose}{right s-shaped bag delimiter}%
\UnicodeMathSymbol{"027C7}{\veedot }{\mathbin}{or with dot inside}%
\UnicodeMathSymbol{"027C8}{\bsolhsub }{\mathrel}{reverse solidus preceding subset}%
\UnicodeMathSymbol{"027C9}{\suphsol }{\mathrel}{superset preceding solidus}%
\UnicodeMathSymbol{"027CB}{\diagup }{\mathord}{mathematical rising diagonal}%
\UnicodeMathSymbol{"027CC}{\longdivision }{\mathopen}{long division}%
\UnicodeMathSymbol{"027CD}{\diagdown }{\mathord}{mathematical falling diagonal}%
\UnicodeMathSymbol{"027D0}{\diamondcdot }{\mathord}{white diamond with centred dot}%
\UnicodeMathSymbol{"027D1}{\wedgedot }{\mathbin}{and with dot}%
\UnicodeMathSymbol{"027D2}{\upin }{\mathrel}{element of opening upwards}%
\UnicodeMathSymbol{"027D3}{\pullback }{\mathrel}{lower right corner with dot}%
\UnicodeMathSymbol{"027D4}{\pushout }{\mathrel}{upper left corner with dot}%
\UnicodeMathSymbol{"027D5}{\leftouterjoin }{\mathop}{left outer join}%
\UnicodeMathSymbol{"027D6}{\rightouterjoin }{\mathop}{right outer join}%
\UnicodeMathSymbol{"027D7}{\fullouterjoin }{\mathop}{full outer join}%
\UnicodeMathSymbol{"027D8}{\bigbot }{\mathop}{large up tack}%
\UnicodeMathSymbol{"027D9}{\bigtop }{\mathop}{large down tack}%
\UnicodeMathSymbol{"027DA}{\DashVDash }{\mathrel}{left and right double turnstile}%
\UnicodeMathSymbol{"027DB}{\dashVdash }{\mathrel}{left and right tack}%
\UnicodeMathSymbol{"027DC}{\multimapinv }{\mathrel}{left multimap}%
\UnicodeMathSymbol{"027DD}{\vlongdash }{\mathrel}{long left tack}%
\UnicodeMathSymbol{"027DE}{\longdashv }{\mathrel}{long right tack}%
\UnicodeMathSymbol{"027DF}{\cirbot }{\mathrel}{up tack with circle above}%
\UnicodeMathSymbol{"027E0}{\lozengeminus }{\mathbin}{lozenge divided by horizontal rule}%
\UnicodeMathSymbol{"027E1}{\concavediamond }{\mathbin}{white concave-sided diamond}%
\UnicodeMathSymbol{"027E2}{\concavediamondtickleft }{\mathbin}{white concave-sided diamond with leftwards tick}%
\UnicodeMathSymbol{"027E3}{\concavediamondtickright }{\mathbin}{white concave-sided diamond with rightwards tick}%
\UnicodeMathSymbol{"027E4}{\whitesquaretickleft }{\mathbin}{white square with leftwards tick}%
\UnicodeMathSymbol{"027E5}{\whitesquaretickright }{\mathbin}{white square with rightwards tick}%
\UnicodeMathSymbol{"027E6}{\lBrack }{\mathopen}{mathematical left white square bracket}%
\UnicodeMathSymbol{"027E7}{\rBrack }{\mathclose}{mathematical right white square bracket}%
\UnicodeMathSymbol{"027E8}{\langle }{\mathopen}{mathematical left angle bracket}%
\UnicodeMathSymbol{"027E9}{\rangle }{\mathclose}{mathematical right angle bracket}%
\UnicodeMathSymbol{"027EA}{\lAngle }{\mathopen}{mathematical left double angle bracket}%
\UnicodeMathSymbol{"027EB}{\rAngle }{\mathclose}{mathematical right double angle bracket}%
\UnicodeMathSymbol{"027EC}{\Lbrbrak }{\mathopen}{mathematical left white tortoise shell bracket}%
\UnicodeMathSymbol{"027ED}{\Rbrbrak }{\mathclose}{mathematical right white tortoise shell bracket}%
\UnicodeMathSymbol{"027EE}{\lgroup }{\mathopen}{mathematical left flattened parenthesis}%
\UnicodeMathSymbol{"027EF}{\rgroup }{\mathclose}{mathematical right flattened parenthesis}%
\UnicodeMathSymbol{"027F0}{\UUparrow }{\mathrel}{upwards quadruple arrow}%
\UnicodeMathSymbol{"027F1}{\DDownarrow }{\mathrel}{downwards quadruple arrow}%
\UnicodeMathSymbol{"027F2}{\acwgapcirclearrow }{\mathrel}{anticlockwise gapped circle arrow}%
\UnicodeMathSymbol{"027F3}{\cwgapcirclearrow }{\mathrel}{clockwise gapped circle arrow}%
\UnicodeMathSymbol{"027F4}{\rightarrowonoplus }{\mathrel}{right arrow with circled plus}%
\UnicodeMathSymbol{"027F5}{\longleftarrow }{\mathrel}{long leftwards arrow}%
\UnicodeMathSymbol{"027F6}{\longrightarrow }{\mathrel}{long rightwards arrow}%
\UnicodeMathSymbol{"027F7}{\longleftrightarrow }{\mathrel}{long left right arrow}%
\UnicodeMathSymbol{"027F8}{\Longleftarrow }{\mathrel}{long leftwards double arrow}%
\UnicodeMathSymbol{"027F9}{\Longrightarrow }{\mathrel}{long rightwards double arrow}%
\UnicodeMathSymbol{"027FA}{\Longleftrightarrow }{\mathrel}{long left right double arrow}%
\UnicodeMathSymbol{"027FB}{\longmapsfrom }{\mathrel}{long leftwards arrow from bar}%
\UnicodeMathSymbol{"027FC}{\longmapsto }{\mathrel}{long rightwards arrow from bar}%
\UnicodeMathSymbol{"027FD}{\Longmapsfrom }{\mathrel}{long leftwards double arrow from bar}%
\UnicodeMathSymbol{"027FE}{\Longmapsto }{\mathrel}{long rightwards double arrow from bar}%
\UnicodeMathSymbol{"027FF}{\longrightsquigarrow }{\mathrel}{long rightwards squiggle arrow}%
\UnicodeMathSymbol{"02900}{\nvtwoheadrightarrow }{\mathrel}{rightwards two-headed arrow with vertical stroke}%
\UnicodeMathSymbol{"02901}{\nVtwoheadrightarrow }{\mathrel}{rightwards two-headed arrow with double vertical stroke}%
\UnicodeMathSymbol{"02902}{\nvLeftarrow }{\mathrel}{leftwards double arrow with vertical stroke}%
\UnicodeMathSymbol{"02903}{\nvRightarrow }{\mathrel}{rightwards double arrow with vertical stroke}%
\UnicodeMathSymbol{"02904}{\nvLeftrightarrow }{\mathrel}{left right double arrow with vertical stroke}%
\UnicodeMathSymbol{"02905}{\twoheadmapsto }{\mathrel}{rightwards two-headed arrow from bar}%
\UnicodeMathSymbol{"02906}{\Mapsfrom }{\mathrel}{leftwards double arrow from bar}%
\UnicodeMathSymbol{"02907}{\Mapsto }{\mathrel}{rightwards double arrow from bar}%
\UnicodeMathSymbol{"02908}{\downarrowbarred }{\mathrel}{downwards arrow with horizontal stroke}%
\UnicodeMathSymbol{"02909}{\uparrowbarred }{\mathrel}{upwards arrow with horizontal stroke}%
\UnicodeMathSymbol{"0290A}{\Uuparrow }{\mathrel}{upwards triple arrow}%
\UnicodeMathSymbol{"0290B}{\Ddownarrow }{\mathrel}{downwards triple arrow}%
\UnicodeMathSymbol{"0290C}{\leftbkarrow }{\mathrel}{leftwards double dash arrow}%
\UnicodeMathSymbol{"0290D}{\rightbkarrow }{\mathrel}{rightwards double dash arrow}%
\UnicodeMathSymbol{"0290E}{\leftdbkarrow }{\mathrel}{leftwards triple dash arrow}%
\UnicodeMathSymbol{"0290F}{\dbkarrow }{\mathrel}{rightwards triple dash arrow}%
\UnicodeMathSymbol{"02910}{\drbkarrow }{\mathrel}{rightwards two-headed triple dash arrow}%
\UnicodeMathSymbol{"02911}{\rightdotarrow }{\mathrel}{rightwards arrow with dotted stem}%
\UnicodeMathSymbol{"02912}{\baruparrow }{\mathrel}{upwards arrow to bar}%
\UnicodeMathSymbol{"02913}{\downarrowbar }{\mathrel}{downwards arrow to bar}%
\UnicodeMathSymbol{"02914}{\nvrightarrowtail }{\mathrel}{rightwards arrow with tail with vertical stroke}%
\UnicodeMathSymbol{"02915}{\nVrightarrowtail }{\mathrel}{rightwards arrow with tail with double vertical stroke}%
\UnicodeMathSymbol{"02916}{\twoheadrightarrowtail }{\mathrel}{rightwards two-headed arrow with tail}%
\UnicodeMathSymbol{"02917}{\nvtwoheadrightarrowtail }{\mathrel}{rightwards two-headed arrow with tail with vertical stroke}%
\UnicodeMathSymbol{"02918}{\nVtwoheadrightarrowtail }{\mathrel}{rightwards two-headed arrow with tail with double vertical stroke}%
\UnicodeMathSymbol{"02919}{\lefttail }{\mathrel}{leftwards arrow-tail}%
\UnicodeMathSymbol{"0291A}{\righttail }{\mathrel}{rightwards arrow-tail}%
\UnicodeMathSymbol{"0291B}{\leftdbltail }{\mathrel}{leftwards double arrow-tail}%
\UnicodeMathSymbol{"0291C}{\rightdbltail }{\mathrel}{rightwards double arrow-tail}%
\UnicodeMathSymbol{"0291D}{\diamondleftarrow }{\mathrel}{leftwards arrow to black diamond}%
\UnicodeMathSymbol{"0291E}{\rightarrowdiamond }{\mathrel}{rightwards arrow to black diamond}%
\UnicodeMathSymbol{"0291F}{\diamondleftarrowbar }{\mathrel}{leftwards arrow from bar to black diamond}%
\UnicodeMathSymbol{"02920}{\barrightarrowdiamond }{\mathrel}{rightwards arrow from bar to black diamond}%
\UnicodeMathSymbol{"02921}{\nwsearrow }{\mathrel}{north west and south east arrow}%
\UnicodeMathSymbol{"02922}{\neswarrow }{\mathrel}{north east and south west arrow}%
\UnicodeMathSymbol{"02923}{\hknwarrow }{\mathrel}{north west arrow with hook}%
\UnicodeMathSymbol{"02924}{\hknearrow }{\mathrel}{north east arrow with hook}%
\UnicodeMathSymbol{"02925}{\hksearrow }{\mathrel}{south east arrow with hook}%
\UnicodeMathSymbol{"02926}{\hkswarrow }{\mathrel}{south west arrow with hook}%
\UnicodeMathSymbol{"02927}{\tona }{\mathrel}{north west arrow and north east arrow}%
\UnicodeMathSymbol{"02928}{\toea }{\mathrel}{north east arrow and south east arrow}%
\UnicodeMathSymbol{"02929}{\tosa }{\mathrel}{south east arrow and south west arrow}%
\UnicodeMathSymbol{"0292A}{\towa }{\mathrel}{south west arrow and north west arrow}%
\UnicodeMathSymbol{"0292B}{\rdiagovfdiag }{\mathord}{rising diagonal crossing falling diagonal}%
\UnicodeMathSymbol{"0292C}{\fdiagovrdiag }{\mathord}{falling diagonal crossing rising diagonal}%
\UnicodeMathSymbol{"0292D}{\seovnearrow }{\mathord}{south east arrow crossing north east arrow}%
\UnicodeMathSymbol{"0292E}{\neovsearrow }{\mathord}{north east arrow crossing south east arrow}%
\UnicodeMathSymbol{"0292F}{\fdiagovnearrow }{\mathord}{falling diagonal crossing north east arrow}%
\UnicodeMathSymbol{"02930}{\rdiagovsearrow }{\mathord}{rising diagonal crossing south east arrow}%
\UnicodeMathSymbol{"02931}{\neovnwarrow }{\mathord}{north east arrow crossing north west arrow}%
\UnicodeMathSymbol{"02932}{\nwovnearrow }{\mathord}{north west arrow crossing north east arrow}%
\UnicodeMathSymbol{"02933}{\rightcurvedarrow }{\mathrel}{wave arrow pointing directly right}%
\UnicodeMathSymbol{"02934}{\uprightcurvearrow }{\mathord}{arrow pointing rightwards then curving upwards}%
\UnicodeMathSymbol{"02935}{\downrightcurvedarrow }{\mathord}{arrow pointing rightwards then curving downwards}%
\UnicodeMathSymbol{"02936}{\leftdowncurvedarrow }{\mathrel}{arrow pointing downwards then curving leftwards}%
\UnicodeMathSymbol{"02937}{\rightdowncurvedarrow }{\mathrel}{arrow pointing downwards then curving rightwards}%
\UnicodeMathSymbol{"02938}{\cwrightarcarrow }{\mathrel}{right-side arc clockwise arrow}%
\UnicodeMathSymbol{"02939}{\acwleftarcarrow }{\mathrel}{left-side arc anticlockwise arrow}%
\UnicodeMathSymbol{"0293A}{\acwoverarcarrow }{\mathrel}{top arc anticlockwise arrow}%
\UnicodeMathSymbol{"0293B}{\acwunderarcarrow }{\mathrel}{bottom arc anticlockwise arrow}%
\UnicodeMathSymbol{"0293C}{\curvearrowrightminus }{\mathrel}{top arc clockwise arrow with minus}%
\UnicodeMathSymbol{"0293D}{\curvearrowleftplus }{\mathrel}{top arc anticlockwise arrow with plus}%
\UnicodeMathSymbol{"0293E}{\cwundercurvearrow }{\mathrel}{lower right semicircular clockwise arrow}%
\UnicodeMathSymbol{"0293F}{\ccwundercurvearrow }{\mathrel}{lower left semicircular anticlockwise arrow}%
\UnicodeMathSymbol{"02940}{\acwcirclearrow }{\mathrel}{anticlockwise closed circle arrow}%
\UnicodeMathSymbol{"02941}{\cwcirclearrow }{\mathrel}{clockwise closed circle arrow}%
\UnicodeMathSymbol{"02942}{\rightarrowshortleftarrow }{\mathrel}{rightwards arrow above short leftwards arrow}%
\UnicodeMathSymbol{"02943}{\leftarrowshortrightarrow }{\mathrel}{leftwards arrow above short rightwards arrow}%
\UnicodeMathSymbol{"02944}{\shortrightarrowleftarrow }{\mathrel}{short rightwards arrow above leftwards arrow}%
\UnicodeMathSymbol{"02945}{\rightarrowplus }{\mathrel}{rightwards arrow with plus below}%
\UnicodeMathSymbol{"02946}{\leftarrowplus }{\mathrel}{leftwards arrow with plus below}%
\UnicodeMathSymbol{"02947}{\rightarrowx }{\mathrel}{rightwards arrow through x}%
\UnicodeMathSymbol{"02948}{\leftrightarrowcircle }{\mathrel}{left right arrow through small circle}%
\UnicodeMathSymbol{"02949}{\twoheaduparrowcircle }{\mathrel}{upwards two-headed arrow from small circle}%
\UnicodeMathSymbol{"0294A}{\leftrightharpoonupdown }{\mathrel}{left barb up right barb down harpoon}%
\UnicodeMathSymbol{"0294B}{\leftrightharpoondownup }{\mathrel}{left barb down right barb up harpoon}%
\UnicodeMathSymbol{"0294C}{\updownharpoonrightleft }{\mathrel}{up barb right down barb left harpoon}%
\UnicodeMathSymbol{"0294D}{\updownharpoonleftright }{\mathrel}{up barb left down barb right harpoon}%
\UnicodeMathSymbol{"0294E}{\leftrightharpoonupup }{\mathrel}{left barb up right barb up harpoon}%
\UnicodeMathSymbol{"0294F}{\updownharpoonrightright }{\mathrel}{up barb right down barb right harpoon}%
\UnicodeMathSymbol{"02950}{\leftrightharpoondowndown }{\mathrel}{left barb down right barb down harpoon}%
\UnicodeMathSymbol{"02951}{\updownharpoonleftleft }{\mathrel}{up barb left down barb left harpoon}%
\UnicodeMathSymbol{"02952}{\barleftharpoonup }{\mathrel}{leftwards harpoon with barb up to bar}%
\UnicodeMathSymbol{"02953}{\rightharpoonupbar }{\mathrel}{rightwards harpoon with barb up to bar}%
\UnicodeMathSymbol{"02954}{\barupharpoonright }{\mathrel}{upwards harpoon with barb right to bar}%
\UnicodeMathSymbol{"02955}{\downharpoonrightbar }{\mathrel}{downwards harpoon with barb right to bar}%
\UnicodeMathSymbol{"02956}{\barleftharpoondown }{\mathrel}{leftwards harpoon with barb down to bar}%
\UnicodeMathSymbol{"02957}{\rightharpoondownbar }{\mathrel}{rightwards harpoon with barb down to bar}%
\UnicodeMathSymbol{"02958}{\barupharpoonleft }{\mathrel}{upwards harpoon with barb left to bar}%
\UnicodeMathSymbol{"02959}{\downharpoonleftbar }{\mathrel}{downwards harpoon with barb left to bar}%
\UnicodeMathSymbol{"0295A}{\leftharpoonupbar }{\mathrel}{leftwards harpoon with barb up from bar}%
\UnicodeMathSymbol{"0295B}{\barrightharpoonup }{\mathrel}{rightwards harpoon with barb up from bar}%
\UnicodeMathSymbol{"0295C}{\upharpoonrightbar }{\mathrel}{upwards harpoon with barb right from bar}%
\UnicodeMathSymbol{"0295D}{\bardownharpoonright }{\mathrel}{downwards harpoon with barb right from bar}%
\UnicodeMathSymbol{"0295E}{\leftharpoondownbar }{\mathrel}{leftwards harpoon with barb down from bar}%
\UnicodeMathSymbol{"0295F}{\barrightharpoondown }{\mathrel}{rightwards harpoon with barb down from bar}%
\UnicodeMathSymbol{"02960}{\upharpoonleftbar }{\mathrel}{upwards harpoon with barb left from bar}%
\UnicodeMathSymbol{"02961}{\bardownharpoonleft }{\mathrel}{downwards harpoon with barb left from bar}%
\UnicodeMathSymbol{"02962}{\leftharpoonsupdown }{\mathrel}{leftwards harpoon with barb up above leftwards harpoon with barb down}%
\UnicodeMathSymbol{"02963}{\upharpoonsleftright }{\mathrel}{upwards harpoon with barb left beside upwards harpoon with barb right}%
\UnicodeMathSymbol{"02964}{\rightharpoonsupdown }{\mathrel}{rightwards harpoon with barb up above rightwards harpoon with barb down}%
\UnicodeMathSymbol{"02965}{\downharpoonsleftright }{\mathrel}{downwards harpoon with barb left beside downwards harpoon with barb right}%
\UnicodeMathSymbol{"02966}{\leftrightharpoonsup }{\mathrel}{leftwards harpoon with barb up above rightwards harpoon with barb up}%
\UnicodeMathSymbol{"02967}{\leftrightharpoonsdown }{\mathrel}{leftwards harpoon with barb down above rightwards harpoon with barb down}%
\UnicodeMathSymbol{"02968}{\rightleftharpoonsup }{\mathrel}{rightwards harpoon with barb up above leftwards harpoon with barb up}%
\UnicodeMathSymbol{"02969}{\rightleftharpoonsdown }{\mathrel}{rightwards harpoon with barb down above leftwards harpoon with barb down}%
\UnicodeMathSymbol{"0296A}{\leftharpoonupdash }{\mathrel}{leftwards harpoon with barb up above long dash}%
\UnicodeMathSymbol{"0296B}{\dashleftharpoondown }{\mathrel}{leftwards harpoon with barb down below long dash}%
\UnicodeMathSymbol{"0296C}{\rightharpoonupdash }{\mathrel}{rightwards harpoon with barb up above long dash}%
\UnicodeMathSymbol{"0296D}{\dashrightharpoondown }{\mathrel}{rightwards harpoon with barb down below long dash}%
\UnicodeMathSymbol{"0296E}{\updownharpoonsleftright }{\mathrel}{upwards harpoon with barb left beside downwards harpoon with barb right}%
\UnicodeMathSymbol{"0296F}{\downupharpoonsleftright }{\mathrel}{downwards harpoon with barb left beside upwards harpoon with barb right}%
\UnicodeMathSymbol{"02970}{\rightimply }{\mathrel}{right double arrow with rounded head}%
\UnicodeMathSymbol{"02971}{\equalrightarrow }{\mathrel}{equals sign above rightwards arrow}%
\UnicodeMathSymbol{"02972}{\similarrightarrow }{\mathrel}{tilde operator above rightwards arrow}%
\UnicodeMathSymbol{"02973}{\leftarrowsimilar }{\mathrel}{leftwards arrow above tilde operator}%
\UnicodeMathSymbol{"02974}{\rightarrowsimilar }{\mathrel}{rightwards arrow above tilde operator}%
\UnicodeMathSymbol{"02975}{\rightarrowapprox }{\mathrel}{rightwards arrow above almost equal to}%
\UnicodeMathSymbol{"02976}{\ltlarr }{\mathrel}{less-than above leftwards arrow}%
\UnicodeMathSymbol{"02977}{\leftarrowless }{\mathrel}{leftwards arrow through less-than}%
\UnicodeMathSymbol{"02978}{\gtrarr }{\mathrel}{greater-than above rightwards arrow}%
\UnicodeMathSymbol{"02979}{\subrarr }{\mathrel}{subset above rightwards arrow}%
\UnicodeMathSymbol{"0297A}{\leftarrowsubset }{\mathrel}{leftwards arrow through subset}%
\UnicodeMathSymbol{"0297B}{\suplarr }{\mathrel}{superset above leftwards arrow}%
\UnicodeMathSymbol{"0297C}{\leftfishtail }{\mathrel}{left fish tail}%