-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnicodeCharacters.tr
952 lines (952 loc) · 53.9 KB
/
UnicodeCharacters.tr
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
@@resource UnicodeCharacters
0x0009 \[RawTab] () WhiteSp 0 None 0 0
0x000D \[RawReturn] () WhiteSp 0 None 0 0
0x001B \[RawEscape] () Letter
0x0020 \[RawSpace] () WhiteSp 0 None 0 0
0x0021 \[RawExclamation] () Alias
0x0022 \[RawDoubleQuote] ($"$) Alias
0x0023 \[RawNumberSign] () Alias
0x0024 \[RawDollar] () Alias
0x0025 \[RawPercent] ($\%$) Alias
0x0026 \[RawAmpersand] ($&$ $\&$) Alias
0x0027 \[RawQuote] ($\rq$) Alias
0x0028 \[RawLeftParenthesis] () Alias
0x0029 \[RawRightParenthesis] () Alias
0x002A \[RawStar] () Alias
0x002B \[RawPlus] () Alias
0x002C \[RawComma] () Alias
0x002D \[RawDash] () Alias
0x002E \[RawDot] () Alias
0x002F \[RawSlash] ($\diagup$) Alias
0x003A \[RawColon] () Alias
0x003B \[RawSemicolon] () Alias
0x003C \[RawLess] ($<$) Alias
0x003D \[RawEqual] () Alias
0x003E \[RawGreater] ($>$) Alias
0x003F \[RawQuestion] () Alias
0x0040 \[RawAt] () Alias
0x005B \[RawLeftBracket] () Alias
0x005C \[RawBackslash] ($\backslash$) Alias
0x005D \[RawRightBracket] () Alias
0x005E \[RawWedge] () Alias
0x005F \[RawUnderscore] ($\_$) Alias
0x0060 \[RawBackquote] ($\lq$) Alias
0x007B \[RawLeftBrace] ($\lbrace$) Alias
0x007C \[RawVerticalBar] () Alias
0x007D \[RawRightBrace] ($\rbrace$) Alias
0x007E \[RawTilde] () Alias
0x00AB \[LeftGuillemet] ($g<<$ $«$) Letter
0x00AD \[DiscretionaryHyphen] ($dhy$ $­$ $\-$) Letter
0x00BB \[RightGuillemet] ($g>>$ $»$) Letter
0x00C0 \[CapitalAGrave] ($A`$ $À$) Letter
0x00C1 \[CapitalAAcute] ($A'$ $Á$) Letter
0x00C2 \[CapitalAHat] ($A^$ $Â$) Letter
0x00C3 \[CapitalATilde] ($A~$ $Ã$) Letter
0x00C4 \[CapitalADoubleDot] ($A"$ $Ä$) Letter
0x00C5 \[CapitalARing] ($Ao$ $Å$) Letter
0x00C6 \[CapitalAE] ($AE$ $Æ$ $\AE$) Letter
0x00C7 \[CapitalCCedilla] ($C,$ $Ç$) Letter
0x00C8 \[CapitalEGrave] ($E`$ $È$) Letter
0x00C9 \[CapitalEAcute] ($E'$ $É$) Letter
0x00CA \[CapitalEHat] ($E^$ $Ê$) Letter
0x00CB \[CapitalEDoubleDot] ($E"$ $Ë$) Letter
0x00CC \[CapitalIGrave] ($I`$ $Ì$) Letter
0x00CD \[CapitalIAcute] ($I'$ $Í$) Letter
0x00CE \[CapitalIHat] ($I^$ $Î$) Letter
0x00CF \[CapitalIDoubleDot] ($I"$ $Ï$) Letter
0x00D0 \[CapitalEth] ($D-$ $Ð$) Letter
0x00D1 \[CapitalNTilde] ($N~$ $Ñ$) Letter
0x00D2 \[CapitalOGrave] ($O`$ $Ò$) Letter
0x00D3 \[CapitalOAcute] ($O'$ $Ó$) Letter
0x00D4 \[CapitalOHat] ($O^$ $Ô$) Letter
0x00D5 \[CapitalOTilde] ($O~$ $Õ$) Letter
0x00D6 \[CapitalODoubleDot] ($O"$ $Ö$) Letter
0x00D8 \[CapitalOSlash] ($O/$ $Ø$ $\O$) Letter
0x00D9 \[CapitalUGrave] ($U`$ $Ù$) Letter
0x00DA \[CapitalUAcute] ($U'$ $Ú$) Letter
0x00DB \[CapitalUHat] ($U^$ $Û$) Letter
0x00DC \[CapitalUDoubleDot] ($U"$ $Ü$) Letter
0x00DD \[CapitalYAcute] ($Y'$ $Ý$) Letter
0x00DE \[CapitalThorn] ($Thn$ $Þ$) Letter
0x00DF \[SZ] ($sz$ $ss$ $ß$ $\ss$) Letter
0x00E0 \[AGrave] ($a`$ $à$) Letter
0x00E1 \[AAcute] ($a'$ $á$) Letter
0x00E2 \[AHat] ($a^$ $â$) Letter
0x00E3 \[ATilde] ($a~$ $ã$) Letter
0x00E4 \[ADoubleDot] ($a"$ $ä$) Letter
0x00E5 \[ARing] ($ao$ $å$) Letter
0x00E6 \[AE] ($ae$ $æ$ $\ae$) Letter
0x00E7 \[CCedilla] ($c,$ $ç$) Letter
0x00E8 \[EGrave] ($e`$ $è$) Letter
0x00E9 \[EAcute] ($e'$ $é$) Letter
0x00EA \[EHat] ($e^$ $ê$) Letter
0x00EB \[EDoubleDot] ($e"$ $ë$) Letter
0x00EC \[IGrave] ($i`$ $ì$) Letter
0x00ED \[IAcute] ($i'$ $í$) Letter
0x00EE \[IHat] ($i^$ $î$) Letter
0x00EF \[IDoubleDot] ($i"$ $ï$) Letter
0x00F0 \[Eth] ($d-$ $ð$ $\eth$) Letter
0x00F1 \[NTilde] ($n~$ $ñ$) Letter
0x00F2 \[OGrave] ($o`$ $ò$) Letter
0x00F3 \[OAcute] ($o'$ $ó$) Letter
0x00F4 \[OHat] ($o^$ $ô$) Letter
0x00F5 \[OTilde] ($o~$ $õ$) Letter
0x00F6 \[ODoubleDot] ($o"$ $ö$) Letter
0x00F8 \[OSlash] ($o/$ $ø$ $\o$) Letter
0x00F9 \[UGrave] ($u`$ $ù$) Letter
0x00FA \[UAcute] ($u'$ $ú$) Letter
0x00FB \[UHat] ($u^$ $û$) Letter
0x00FC \[UDoubleDot] ($u"$ $ü$) Letter
0x00FD \[YAcute] ($y'$ $ý$) Letter
0x00FE \[Thorn] ($thn$ $þ$) Letter
0x00FF \[YDoubleDot] ($y"$ $ÿ$) Letter
0x0101 \[ABar] ($a-$ $ā$) Letter
0x0100 \[CapitalABar] ($A-$ $Ā$) Letter
0x0103 \[ACup] ($au$ $ă$) Letter
0x0102 \[CapitalACup] ($Au$ $Ă$) Letter
0x0107 \[CAcute] ($c'$ $ć$) Letter
0x0106 \[CapitalCAcute] ($C'$ $Ć$) Letter
0x010D \[CHacek] ($cv$ $č$) Letter
0x010C \[CapitalCHacek] ($Cv$ $Č$) Letter
0x0113 \[EBar] ($e-$ $ē$) Letter
0x0112 \[CapitalEBar] ($E-$ $Ē$) Letter
0x0115 \[ECup] ($eu$) Letter
0x0114 \[CapitalECup] ($Eu$) Letter
0x012D \[ICup] ($iu$) Letter
0x012C \[CapitalICup] ($Iu$) Letter
0x0142 \[LSlash] ($l/$ $ł$ $\l$) Letter
0x0141 \[CapitalLSlash] ($L/$ $Ł$ $\L$) Letter
0x0151 \[ODoubleAcute] ($o''$ $ő$) Letter
0x0150 \[CapitalODoubleAcute] ($O''$ $Ő$) Letter
0x0161 \[SHacek] ($sv$ $š$) Letter
0x0160 \[CapitalSHacek] ($Sv$ $Š$) Letter
0x0171 \[UDoubleAcute] ($u''$ $ű$) Letter
0x0170 \[CapitalUDoubleAcute] ($U''$ $Ű$) Letter
0x0192 \[Florin] ($ƒ$) Letter
0x0306 \[Breve] ($bv$ $˘$) Letter
0x0308 \[DoubleDot] ($¨$) Letter
0x20DB \[TripleDot] ($⃛$) Letter
0x030C \[Hacek] ($hck$ $ˇ$) Letter
0x0311 \[DownBreve] ($dbv$ $̑$) Letter
0x0327 \[Cedilla] ($cd$ $¸$) Letter
0x0391 \[CapitalAlpha] ($A$ $Alpha$ $Α$) Letter
0x0392 \[CapitalBeta] ($B$ $Beta$ $Β$) Letter
0x0393 \[CapitalGamma] ($G$ $Gamma$ $Γ$ $\Gamma$) Letter
0x0394 \[CapitalDelta] ($D$ $Delta$ $Δ$ $\Delta$) Letter
0x0395 \[CapitalEpsilon] ($E$ $Epsilon$ $Ε$) Letter
0x0396 \[CapitalZeta] ($Z$ $Zeta$ $Ζ$) Letter
0x0397 \[CapitalEta] ($Et$ $Eta$ $H$ $Η$) Letter
0x0398 \[CapitalTheta] ($Th$ $Theta$ $Q$ $Θ$ $\Theta$) Letter
0x0399 \[CapitalIota] ($I$ $Iota$ $Ι$) Letter
0x039A \[CapitalKappa] ($K$ $Kappa$ $Κ$) Letter
0x039B \[CapitalLambda] ($L$ $Lambda$ $Λ$ $\Lambda$) Letter
0x039C \[CapitalMu] ($M$ $Mu$ $Μ$) Letter
0x039D \[CapitalNu] ($N$ $Nu$ $Ν$) Letter
0x039E \[CapitalXi] ($X$ $Xi$ $Ξ$ $\Xi$) Letter
0x039F \[CapitalOmicron] ($Om$ $Omicron$ $Ο$) Letter
0x03A0 \[CapitalPi] ($P$ $Pi$ $Π$ $\Pi$) Letter
0x03A1 \[CapitalRho] ($R$ $Rho$ $Ρ$) Letter
0x03A3 \[CapitalSigma] ($S$ $Sigma$ $Σ$ $\Sigma$) Letter
0x03A4 \[CapitalTau] ($T$ $Tau$ $Τ$) Letter
0x03A5 \[CapitalUpsilon] ($U$ $Upsilon$ $Υ$ $\Upsilon$) Letter
0x03D2 \[CurlyCapitalUpsilon] ($cU$ $cUpsilon$ $ϒ$) Letter
0x03A6 \[CapitalPhi] ($Ph$ $Phi$ $F$ $Φ$ $\Phi$) Letter
0x03A7 \[CapitalChi] ($Ch$ $Chi$ $C$ $Χ$) Letter
0x03A8 \[CapitalPsi] ($Ps$ $Psi$ $Y$ $Ψ$ $\Psi$) Letter
0x03A9 \[CapitalOmega] ($O$ $Omega$ $W$ $Ω$ $\Omega$) Letter
0x03DC \[CapitalDigamma] ($Di$ $Digamma$ $ϝ$) Letter
0x03DA \[CapitalStigma] ($Sti$ $Stigma$) Letter
0x03DE \[CapitalKoppa] ($Ko$ $Koppa$) Letter
0x03E0 \[CapitalSampi] ($Sa$ $Sampi$) Letter
0x03B1 \[Alpha] ($a$ $alpha$ $α$ $\alpha$) Letter
0x03B2 \[Beta] ($b$ $beta$ $β$ $\beta$) Letter
0x03B3 \[Gamma] ($g$ $gamma$ $γ$ $\gamma$) Letter
0x03B4 \[Delta] ($d$ $delta$ $δ$ $\delta$) Letter
0x03F5 \[Epsilon] ($e$ $epsilon$ $ϵ$ $\epsilon$) Letter
0x03B5 \[CurlyEpsilon] ($ce$ $cepsilon$ $ϵ$ $\varepsilon$) Letter
0x03B6 \[Zeta] ($z$ $zeta$ $ζ$ $\zeta$) Letter
0x03B7 \[Eta] ($et$ $eta$ $h$ $η$ $\eta$) Letter
0x03B8 \[Theta] ($th$ $theta$ $q$ $θ$ $\theta$) Letter
0x03D1 \[CurlyTheta] ($cq$ $cth$ $ctheta$ $ϑ$ $\vartheta$) Letter
0x03B9 \[Iota] ($i$ $iota$ $ι$ $\iota$) Letter
0x03BA \[Kappa] ($k$ $kappa$ $κ$ $\kappa$) Letter
0x03F0 \[CurlyKappa] ($ck$ $ckappa$ $ϰ$) Letter
0x03BB \[Lambda] ($l$ $lambda$ $λ$ $\lambda$) Letter
0x03BC \[Mu] ($m$ $mu$ $μ$ $\mu$) Letter
0x03BD \[Nu] ($n$ $nu$ $ν$ $\nu$) Letter
0x03BE \[Xi] ($x$ $xi$ $ξ$ $\xi$) Letter
0x03BF \[Omicron] ($om$ $omicron$ $ο$) Letter
0x03C0 \[Pi] ($p$ $pi$ $π$ $\pi$) Letter
0x03D6 \[CurlyPi] ($cp$ $cpi$ $ϖ$ $\varpi$) Letter
0x03C1 \[Rho] ($r$ $rho$ $ρ$ $\rho$) Letter
0x03F1 \[CurlyRho] ($cr$ $crho$ $ϱ$ $\varrho$) Letter
0x03C3 \[Sigma] ($s$ $sigma$ $σ$ $\sigma$) Letter
0x03C2 \[FinalSigma] ($fs$ $ς$ $\varsigma$) Letter
0x03C4 \[Tau] ($t$ $tau$ $τ$ $\tau$) Letter
0x03C5 \[Upsilon] ($u$ $upsilon$ $υ$ $\upsilon$) Letter
0x03D5 \[Phi] ($ph$ $phi$ $f$ $ϕ$ $\phi$) Letter
0x03C6 \[CurlyPhi] ($j$ $cph$ $cphi$ $ϕ$ $\varphi$) Letter
0x03C7 \[Chi] ($ch$ $chi$ $c$ $χ$ $\chi$) Letter
0x03C8 \[Psi] ($ps$ $psi$ $y$ $ψ$ $\psi$) Letter
0x03C9 \[Omega] ($o$ $omega$ $w$ $ω$ $\omega$) Letter
0x03DB \[Stigma] ($sti$ $stigma$ $\stigma$) Letter
0x03DD \[Digamma] ($di$ $digamma$ $\digamma$) Letter
0x03DF \[Koppa] ($ko$ $koppa$ $\koppa$) Letter
0x03E1 \[Sampi] ($sa$ $sampi$ $\sampi$) Letter
0x221E \[Infinity] ($inf$ $∞$ $\infty$) Letter
0xF74D \[ExponentialE] ($ee$ $ⅇ$) Letter
0xF74E \[ImaginaryI] ($ii$ $ⅈ$) Letter
0xF74F \[ImaginaryJ] ($jj$) Letter
0xF74A \[DoubledGamma] ($gg$) Letter
0xF749 \[DoubledPi] ($pp$) Letter
0xF7DA \[ConstantC] ($cc$) Letter
0x25B4 \[UpPointer] () Letter
0x25B8 \[RightPointer] () Letter
0x25BE \[DownPointer] () Letter
0x25C2 \[LeftPointer] () Letter
0xF6B2 \[ScriptA] ($sca$ $𝒶$) Letter
0xF6B3 \[ScriptB] ($scb$ $𝒷$) Letter
0xF6B4 \[ScriptC] ($scc$ $𝒸$) Letter
0xF6B5 \[ScriptD] ($scd$ $𝒹$) Letter
0x212F \[ScriptE] ($sce$ $ℯ$) Letter
0xF6B7 \[ScriptF] ($scf$ $𝒻$) Letter
0x210A \[ScriptG] ($scg$ $ℊ$) Letter
0xF6B9 \[ScriptH] ($sch$ $𝒽$) Letter
0xF6BA \[ScriptI] ($sci$ $𝒾$) Letter
0xF6BB \[ScriptJ] ($scj$ $𝒿$) Letter
0xF6BC \[ScriptK] ($sck$ $𝓀$) Letter
0x2113 \[ScriptL] ($scl$ $𝓁$ $\ell$) Letter
0xF6BE \[ScriptM] ($scm$ $𝓂$) Letter
0xF6BF \[ScriptN] ($scn$ $𝓃$) Letter
0x2134 \[ScriptO] ($sco$ $ℴ$) Letter
0xF6C1 \[ScriptP] ($scp$ $𝓅$) Letter
0xF6C2 \[ScriptQ] ($scq$ $𝓆$) Letter
0xF6C3 \[ScriptR] ($scr$ $𝓇$) Letter
0xF6C4 \[ScriptS] ($scs$ $𝓈$) Letter
0xF6C5 \[ScriptT] ($sct$ $𝓉$) Letter
0xF6C6 \[ScriptU] ($scu$ $𝓊$) Letter
0xF6C7 \[ScriptV] ($scv$ $𝓋$) Letter
0xF6C8 \[ScriptW] ($scw$ $𝓌$) Letter
0xF6C9 \[ScriptX] ($scx$ $𝓍$) Letter
0xF6CA \[ScriptY] ($scy$ $𝓎$) Letter
0xF6CB \[ScriptZ] ($scz$ $𝓏$) Letter
0xF770 \[ScriptCapitalA] ($scA$ $𝒜$) Letter
0x212C \[ScriptCapitalB] ($scB$ $ℬ$) Letter
0xF772 \[ScriptCapitalC] ($scC$ $𝒞$) Letter
0xF773 \[ScriptCapitalD] ($scD$ $𝒟$) Letter
0x2130 \[ScriptCapitalE] ($scE$ $ℰ$) Letter
0x2131 \[ScriptCapitalF] ($scF$ $ℱ$) Letter
0xF776 \[ScriptCapitalG] ($scG$ $𝒢$) Letter
0x210B \[ScriptCapitalH] ($scH$ $ℋ$) Letter
0x2110 \[ScriptCapitalI] ($scI$ $ℐ$) Letter
0xF779 \[ScriptCapitalJ] ($scJ$ $𝒥$) Letter
0xF77A \[ScriptCapitalK] ($scK$ $𝒦$) Letter
0x2112 \[ScriptCapitalL] ($scL$ $ℒ$) Letter
0x2133 \[ScriptCapitalM] ($scM$ $ℳ$) Letter
0xF77D \[ScriptCapitalN] ($scN$ $𝒩$) Letter
0xF77E \[ScriptCapitalO] ($scO$ $𝒪$) Letter
0xF77F \[ScriptCapitalP] ($scP$ $𝒫$) Letter
0xF780 \[ScriptCapitalQ] ($scQ$ $𝒬$) Letter
0x211B \[ScriptCapitalR] ($scR$ $ℛ$) Letter
0xF782 \[ScriptCapitalS] ($scS$ $𝒮$) Letter
0xF783 \[ScriptCapitalT] ($scT$ $𝒯$) Letter
0xF784 \[ScriptCapitalU] ($scU$ $𝒰$) Letter
0xF785 \[ScriptCapitalV] ($scV$ $𝒱$) Letter
0xF786 \[ScriptCapitalW] ($scW$ $𝒲$) Letter
0xF787 \[ScriptCapitalX] ($scX$ $𝒳$) Letter
0xF788 \[ScriptCapitalY] ($scY$ $𝒴$) Letter
0xF789 \[ScriptCapitalZ] ($scZ$ $𝒵$) Letter
0xF6CC \[GothicA] ($goa$ $𝔞$) Letter
0xF6CD \[GothicB] ($gob$ $𝔟$) Letter
0xF6CE \[GothicC] ($goc$ $𝔠$) Letter
0xF6CF \[GothicD] ($god$ $𝔡$) Letter
0xF6D0 \[GothicE] ($goe$ $𝔢$) Letter
0xF6D1 \[GothicF] ($gof$ $𝔣$) Letter
0xF6D2 \[GothicG] ($gog$ $𝔤$) Letter
0xF6D3 \[GothicH] ($goh$ $𝔥$) Letter
0xF6D4 \[GothicI] ($goi$ $𝔦$) Letter
0xF6D5 \[GothicJ] ($goj$ $𝔧$) Letter
0xF6D6 \[GothicK] ($gok$ $𝔨$) Letter
0xF6D7 \[GothicL] ($gol$ $𝔩$) Letter
0xF6D8 \[GothicM] ($gom$ $𝔪$) Letter
0xF6D9 \[GothicN] ($gon$ $𝔫$) Letter
0xF6DA \[GothicO] ($goo$ $𝔬$) Letter
0xF6DB \[GothicP] ($gop$ $𝔭$) Letter
0xF6DC \[GothicQ] ($goq$ $𝔮$) Letter
0xF6DD \[GothicR] ($gor$ $𝔯$) Letter
0xF6DE \[GothicS] ($gos$ $𝔰$) Letter
0xF6DF \[GothicT] ($got$ $𝔱$) Letter
0xF6E0 \[GothicU] ($gou$ $𝔲$) Letter
0xF6E1 \[GothicV] ($gov$ $𝔳$) Letter
0xF6E2 \[GothicW] ($gow$ $𝔴$) Letter
0xF6E3 \[GothicX] ($gox$ $𝔵$) Letter
0xF6E4 \[GothicY] ($goy$ $𝔶$) Letter
0xF6E5 \[GothicZ] ($goz$ $𝔷$) Letter
0xF78A \[GothicCapitalA] ($goA$ $𝔄$) Letter
0xF78B \[GothicCapitalB] ($goB$ $𝔅$) Letter
0x212D \[GothicCapitalC] ($goC$ $ℭ$) Letter
0xF78D \[GothicCapitalD] ($goD$ $𝔇$) Letter
0xF78E \[GothicCapitalE] ($goE$ $𝔈$) Letter
0xF78F \[GothicCapitalF] ($goF$ $𝔉$) Letter
0xF790 \[GothicCapitalG] ($goG$ $𝔊$) Letter
0x210C \[GothicCapitalH] ($goH$ $ℌ$) Letter
0x2111 \[GothicCapitalI] ($goI$ $ℑ$ $\Im$) Letter
0xF793 \[GothicCapitalJ] ($goJ$ $𝔍$) Letter
0xF794 \[GothicCapitalK] ($goK$ $𝔎$) Letter
0xF795 \[GothicCapitalL] ($goL$ $𝔏$) Letter
0xF796 \[GothicCapitalM] ($goM$ $𝔐$) Letter
0xF797 \[GothicCapitalN] ($goN$ $𝔑$) Letter
0xF798 \[GothicCapitalO] ($goO$ $𝔒$) Letter
0xF799 \[GothicCapitalP] ($goP$ $𝔓$) Letter
0xF79A \[GothicCapitalQ] ($goQ$ $𝔔$) Letter
0x211C \[GothicCapitalR] ($goR$ $ℜ$ $\Re$) Letter
0xF79C \[GothicCapitalS] ($goS$ $𝔖$) Letter
0xF79D \[GothicCapitalT] ($goT$ $𝔗$) Letter
0xF79E \[GothicCapitalU] ($goU$ $𝔘$) Letter
0xF79F \[GothicCapitalV] ($goV$ $𝔙$) Letter
0xF7A0 \[GothicCapitalW] ($goW$ $𝔚$) Letter
0xF7A1 \[GothicCapitalX] ($goX$ $𝔛$) Letter
0xF7A2 \[GothicCapitalY] ($goY$ $𝔜$) Letter
0x2128 \[GothicCapitalZ] ($goZ$ $ℨ$) Letter
0xF6E6 \[DoubleStruckA] ($dsa$ $𝕒$) Letter
0xF6E7 \[DoubleStruckB] ($dsb$ $𝕓$) Letter
0xF6E8 \[DoubleStruckC] ($dsc$ $𝕔$) Letter
0xF6E9 \[DoubleStruckD] ($dsd$ $𝕕$) Letter
0xF6EA \[DoubleStruckE] ($dse$ $𝕖$) Letter
0xF6EB \[DoubleStruckF] ($dsf$ $𝕗$) Letter
0xF6EC \[DoubleStruckG] ($dsg$ $𝕘$) Letter
0xF6ED \[DoubleStruckH] ($dsh$ $𝕙$) Letter
0xF6EE \[DoubleStruckI] ($dsi$ $𝕚$) Letter
0xF6EF \[DoubleStruckJ] ($dsj$ $𝕛$) Letter
0xF6F0 \[DoubleStruckK] ($dsk$ $𝕜$) Letter
0xF6F1 \[DoubleStruckL] ($dsl$ $𝕝$) Letter
0xF6F2 \[DoubleStruckM] ($dsm$ $𝕞$) Letter
0xF6F3 \[DoubleStruckN] ($dsn$ $𝕟$) Letter
0xF6F4 \[DoubleStruckO] ($dso$ $𝕠$) Letter
0xF6F5 \[DoubleStruckP] ($dsp$ $𝕡$) Letter
0xF6F6 \[DoubleStruckQ] ($dsq$ $𝕢$) Letter
0xF6F7 \[DoubleStruckR] ($dsr$ $𝕣$) Letter
0xF6F8 \[DoubleStruckS] ($dss$ $𝕤$) Letter
0xF6F9 \[DoubleStruckT] ($dst$ $𝕥$) Letter
0xF6FA \[DoubleStruckU] ($dsu$ $𝕦$) Letter
0xF6FB \[DoubleStruckV] ($dsv$ $𝕧$) Letter
0xF6FC \[DoubleStruckW] ($dsw$ $𝕨$) Letter
0xF6FD \[DoubleStruckX] ($dsx$ $𝕩$) Letter
0xF6FE \[DoubleStruckY] ($dsy$ $𝕪$) Letter
0xF6FF \[DoubleStruckZ] ($dsz$ $𝕫$) Letter
0xF7A4 \[DoubleStruckCapitalA] ($dsA$ $𝔸$) Letter
0xF7A5 \[DoubleStruckCapitalB] ($dsB$ $𝔹$) Letter
0xF7A6 \[DoubleStruckCapitalC] ($dsC$ $ℂ$) Letter
0xF7A7 \[DoubleStruckCapitalD] ($dsD$ $𝔻$) Letter
0xF7A8 \[DoubleStruckCapitalE] ($dsE$ $𝔼$) Letter
0xF7A9 \[DoubleStruckCapitalF] ($dsF$ $𝔽$) Letter
0xF7AA \[DoubleStruckCapitalG] ($dsG$ $𝔾$) Letter
0xF7AB \[DoubleStruckCapitalH] ($dsH$ $ℍ$) Letter
0xF7AC \[DoubleStruckCapitalI] ($dsI$ $𝕀$) Letter
0xF7AD \[DoubleStruckCapitalJ] ($dsJ$ $𝕁$) Letter
0xF7AE \[DoubleStruckCapitalK] ($dsK$ $𝕂$) Letter
0xF7AF \[DoubleStruckCapitalL] ($dsL$ $Ƶ$) Letter
0xF7B0 \[DoubleStruckCapitalM] ($dsM$ $𝕄$) Letter
0xF7B1 \[DoubleStruckCapitalN] ($dsN$ $ℕ$) Letter
0xF7B2 \[DoubleStruckCapitalO] ($dsO$ $𝕆$) Letter
0xF7B3 \[DoubleStruckCapitalP] ($dsP$ $ℙ$) Letter
0xF7B4 \[DoubleStruckCapitalQ] ($dsQ$ $ℚ$) Letter
0xF7B5 \[DoubleStruckCapitalR] ($dsR$ $ℝ$) Letter
0xF7B6 \[DoubleStruckCapitalS] ($dsS$ $𝕊$) Letter
0xF7B7 \[DoubleStruckCapitalT] ($dsT$ $𝕋$) Letter
0xF7B8 \[DoubleStruckCapitalU] ($dsU$ $𝕌$) Letter
0xF7B9 \[DoubleStruckCapitalV] ($dsV$ $𝕍$) Letter
0xF7BA \[DoubleStruckCapitalW] ($dsW$ $𝕎$) Letter
0xF7BB \[DoubleStruckCapitalX] ($dsX$ $𝕏$) Letter
0xF7BC \[DoubleStruckCapitalY] ($dsY$ $𝕐$) Letter
0xF7BD \[DoubleStruckCapitalZ] ($dsZ$ $ℤ$) Letter
0x2118 \[WeierstrassP] ($wp$ $℘$ $\wp$) Letter
0x2135 \[Aleph] ($al$ $ℵ$ $\aleph$) Letter
0x2136 \[Bet] ($be$ $ℶ$ $\beth$) Letter
0x2137 \[Gimel] ($gi$ $ℷ$ $\gimel$) Letter
0x2138 \[Dalet] ($da$ $ℸ$ $\daleth$) Letter
0x00A1 \[DownExclamation] ($d!$ $¡$) Letter
0x00A2 \[Cent] ($cent$ $¢$) Letter
0x00A3 \[Sterling] ($£$) Letter
0x00A4 \[Currency] ($¤$) Letter
0x20AC \[Euro] ($\euro$) Letter
0x00A5 \[Yen] ($¥$ $\yen$) Letter
0x00A7 \[Section] ($§$ $\S$) Letter
0x00A9 \[Copyright] ($©$ $\copyright$) Letter
0x00AE \[RegisteredTrademark] ($rtm$ $®$ $\circledR$) Letter
0x2122 \[Trademark] ($tm$ $™$) Letter
0x00B0 \[Degree] ($deg$ $°$) Letter
0x00B5 \[Micro] ($mi$ $µ$) Letter
0x00B6 \[Paragraph] ($¶$ $\P$) Letter
0x00BF \[DownQuestion] ($d?$ $¿$) Letter
0x210F \[HBar] ($hb$ $ℏ$ $\hslash$) Letter
0xF7D8 \[] ($\hbar$) Letter
0x2127 \[Mho] ($mho$ $℧$ $\mho$) Letter
0x212B \[Angstrom] ($Ang$ $Å$ $\AA$) Letter
0x2205 \[EmptySet] ($es$ $∅$ $\emptyset$) Letter
0x2010 \[Hyphen] ($hy$) NonBreakingBeforeLetter
0x2013 \[Dash] ($-$ $–$) NonBreakingBeforeLetter
0x2014 \[LongDash] ($--$ $—$) NonBreakingBeforeLetter
0x2020 \[Dagger] ($dg$ $†$ $\dagger$) Letter
0x2021 \[DoubleDagger] ($ddg$ $‡$ $\ddagger$) Letter
0x2022 \[Bullet] ($bu$ $•$ $\bullet$) Letter
0x0131 \[DotlessI] ($ı$ $\i$) Letter
0xF700 \[DotlessJ] ($\j$) Letter
0xFB01 \[FiLigature] ($fi$) Letter
0xFB02 \[FlLigature] ($fl$) Letter
0xF730 \[ScriptDotlessI] ($\imath$) Letter
0xF731 \[ScriptDotlessJ] ($\jmath$) Letter
0x2220 \[Angle] ($∠$ $\angle$) Letter
0x221F \[RightAngle] ($∟$) Letter
0x2221 \[MeasuredAngle] ($∡$) Letter
0x2222 \[SphericalAngle] ($∢$) Letter
0x2300 \[Diameter] () Letter
0x2026 \[Ellipsis] ($...$ $…$ $\ldots$) Letter
0x22EE \[VerticalEllipsis] ($⋮$ $\vdots$) Letter
0x22EF \[CenterEllipsis] ($⋯$ $\cdots$) Letter
0x22F0 \[AscendingEllipsis] ($⋰$) Letter
0x22F1 \[DescendingEllipsis] ($⋱$ $\ddots$) Letter
0x2032 \[Prime] ($'$ $′$ $\prime$) Letter
0x2033 \[DoublePrime] ($''$ $″$) Letter
0x2035 \[ReversePrime] ($`$ $‵$) Letter
0x2036 \[ReverseDoublePrime] ($``$) Letter
0x2200 \[ForAll] ($fa$ $∀$ $\forall$) Prefix 350 None 0 5
0x2203 \[Exists] ($ex$ $∃$ $\exists$) Prefix 350 None 0 5
0x2204 \[NotExists] ($!ex$ $∄$ $\nexists$) Prefix 350 None 0 5
0x2208 \[Element] ($elem$ $el$ $∈$ $\in$) Infix 360 None 5 5
0x2209 \[NotElement] ($!elem$ $!el$ $∉$ $\notin$) Infix 360 None 5 5
0x220B \[ReverseElement] ($mem$ $∋$ $\ni$ $\owns$) Infix 360 None 5 5
0x220C \[NotReverseElement] ($!mem$ $∌$) Infix 360 None 5 5
0x2235 \[Because] ($∵$ $\because$) Infix 201 Left 5 5
0x220D \[SuchThat] ($st$ $∋$) Infix 290 Right 5 5
0xF432 \[VerticalSeparator] ($|$ $❘$) Infix 202 None 5 5
0x2234 \[Therefore] ($tf$ $∴$ $\therefore$) Infix 201 Right 5 5
0xF523 \[Implies] ($=>$ $⇒$) Infix 310 Right 5 5
0x2970 \[RoundImplies] ($⥰$) Infix 310 Right 5 5
0x223C \[Tilde] ($~$ $∼$ $\sim$) Infix 390 None 5 5
0x2241 \[NotTilde] ($!~$ $≁$ $\nsim$) Infix 390 None 5 5
0x2242 \[EqualTilde] ($=~$ $≂$) Infix 390 None 5 5
0x2243 \[TildeEqual] ($~=$ $≃$ $\simeq$) Infix 390 None 5 5
0x2244 \[NotTildeEqual] ($!~=$ $≄$) Infix 390 None 5 5
0x2245 \[TildeFullEqual] ($~==$ $≅$ $\cong$) Infix 390 None 5 5
0x2248 \[TildeTilde] ($~~$ $≈$ $\approx$) Infix 390 None 5 5
0x2249 \[NotTildeTilde] ($!~~$ $≉$) Infix 390 None 5 5
0xF400 \[NotEqualTilde] ($!=~$ $≂̸$) Infix 390 None 5 5
0x2247 \[NotTildeFullEqual] ($!~==$ $≇$) Infix 390 None 5 5
0x2272 \[LessTilde] ($<~$ $≲$ $\lesssim$) Infix 390 None 5 5
0x2273 \[GreaterTilde] ($>~$ $≳$ $\gtrsim$) Infix 390 None 5 5
0x2274 \[NotLessTilde] ($!<~$ $≴$) Infix 390 None 5 5
0x2275 \[NotGreaterTilde] ($!>~$ $≵$) Infix 390 None 5 5
0x22B2 \[LeftTriangle] ($⊲$ $\triangleleft$) Infix 390 None 5 5
0x22B3 \[RightTriangle] ($⊳$ $\triangleright$) Infix 390 None 5 5
0x22B4 \[LeftTriangleEqual] ($⊴$ $\trianglelefteq$) Infix 390 None 5 5
0x22B5 \[RightTriangleEqual] ($⊵$ $\trianglerighteq$) Infix 390 None 5 5
0x29CF \[LeftTriangleBar] ($⧏$) Infix 390 None 5 5
0x29D0 \[RightTriangleBar] ($⧐$) Infix 390 None 5 5
0xF412 \[NotLeftTriangleBar] ($⧏̸$) Infix 390 None 5 5
0xF413 \[NotRightTriangleBar] ($⧐̸$) Infix 390 None 5 5
0x22EA \[NotLeftTriangle] ($⋪$) Infix 390 None 5 5
0x22EC \[NotLeftTriangleEqual] ($⋬$) Infix 390 None 5 5
0x22EB \[NotRightTriangle] ($⋫$) Infix 390 None 5 5
0x22ED \[NotRightTriangleEqual] ($⋭$) Infix 390 None 5 5
0x2260 \[NotEqual] ($!=$ $≠$ $\neq$ $\ne$ $\not=$) Infix 390 None 5 5
0x226E \[NotLess] ($!<$ $≮$ $\nless$) Infix 390 None 5 5
0x226F \[NotGreater] ($!>$ $≯$ $\ngtr$) Infix 390 None 5 5
0x2264 \[LessEqual] ($<=$ $≤$ $\leq$ $\le$) Infix 390 None 5 5
0x226A \[LessLess] ($⪡$ $\ll$) Infix 390 None 5 5
0x226B \[GreaterGreater] ($⪢$ $\gg$) Infix 390 None 5 5
0x2270 \[NotLessEqual] ($!<=$ $≰$ $\nleq$) Infix 390 None 5 5
0x2265 \[GreaterEqual] ($>=$ $≥$ $\geq$ $\ge$) Infix 390 None 5 5
0x2271 \[NotGreaterEqual] ($!>=$ $≱$ $\ngeq$) Infix 390 None 5 5
0x2A7D \[LessSlantEqual] ($</$ $⩽$) Infix 390 None 5 5
0x2266 \[LessFullEqual] ($≦$) Infix 390 None 5 5
0xF422 \[NotLessLess] ($≪̸$) Infix 390 None 5 5
0xF423 \[NotNestedLessLess] ($⪡̸$) Infix 390 None 5 5
0xF424 \[NotLessSlantEqual] ($!</$ $⩽̸$) Infix 390 None 5 5
0x2268 \[NotLessFullEqual] ($&NotLessFullEqual;$) Infix 390 None 5 5
0x2AA1 \[NestedLessLess] ($≪$) Infix 390 None 5 5
0x2AA2 \[NestedGreaterGreater] ($≫$) Infix 390 None 5 5
0x2A7E \[GreaterSlantEqual] ($>/$ $⩾$) Infix 390 None 5 5
0x2267 \[GreaterFullEqual] ($≧$) Infix 390 None 5 5
0xF427 \[NotGreaterGreater] ($≫̸$) Infix 390 None 5 5
0xF428 \[NotNestedGreaterGreater] ($⪢̸$) Infix 390 None 5 5
0xF429 \[NotGreaterSlantEqual] ($!>/$ $⩾̸$) Infix 390 None 5 5
0x2269 \[NotGreaterFullEqual] ($≧̸$) Infix 390 None 5 5
0x2276 \[LessGreater] ($≶$) Infix 390 None 5 5
0x2277 \[GreaterLess] ($≷$) Infix 390 None 5 5
0x2278 \[NotLessGreater] ($≸$) Infix 390 None 5 5
0x2279 \[NotGreaterLess] ($≹$) Infix 390 None 5 5
0x22DA \[LessEqualGreater] ($⋚$) Infix 390 None 5 5
0x22DB \[GreaterEqualLess] ($⋛$) Infix 390 None 5 5
0x2282 \[Subset] ($sub$ $⊂$ $\subset$) Infix 360 None 5 5
0x2283 \[Superset] ($sup$ $⊃$ $\supset$) Infix 360 None 5 5
0x2284 \[NotSubset] ($!sub$ $⊂⃒$) Infix 360 None 5 5
0x2285 \[NotSuperset] ($!sup$ $⊃⃒$) Infix 360 None 5 5
0x2286 \[SubsetEqual] ($sub=$ $⊆$ $\subseteq$) Infix 360 None 5 5
0x2287 \[SupersetEqual] ($sup=$ $⊇$ $\supseteq$) Infix 360 None 5 5
0x2288 \[NotSubsetEqual] ($!sub=$ $⊈$ $\nsubseteq$) Infix 360 None 5 5
0x2289 \[NotSupersetEqual] ($!sup=$ $⊉$ $\nsupseteq$) Infix 360 None 5 5
0x228F \[SquareSubset] ($⊏$ $\sqsubset$) Infix 360 None 5 5
0x2290 \[SquareSuperset] ($⊐$ $\sqsupset$) Infix 360 None 5 5
0x2291 \[SquareSubsetEqual] ($⊑$ $\sqsubseteq$) Infix 360 None 5 5
0x2292 \[SquareSupersetEqual] ($⊒$ $\sqsupseteq$) Infix 360 None 5 5
0xF42E \[NotSquareSubset] ($⊏̸$) Infix 360 None 5 5
0xF42F \[NotSquareSuperset] ($⊐̸$) Infix 360 None 5 5
0x22E2 \[NotSquareSubsetEqual] ($⋢$) Infix 360 None 5 5
0x22E3 \[NotSquareSupersetEqual] ($⋣$) Infix 360 None 5 5
0x227A \[Precedes] ($≺$ $\prec$) Infix 390 None 5 5
0x227B \[Succeeds] ($≻$ $\succ$) Infix 390 None 5 5
0x2AAF \[PrecedesEqual] ($⪯$ $\preceq$) Infix 390 None 5 5
0x2AB0 \[SucceedsEqual] ($⪰$ $\succeq$) Infix 390 None 5 5
0x227E \[PrecedesTilde] ($≾$ $\precsim$) Infix 390 None 5 5
0x227F \[SucceedsTilde] ($≿$ $\succsim$) Infix 390 None 5 5
0x2280 \[NotPrecedes] ($⊀$ $\nprec$) Infix 390 None 5 5
0x2281 \[NotSucceeds] ($⊁$ $\nsucc$) Infix 390 None 5 5
0x227C \[PrecedesSlantEqual] ($≼$) Infix 390 None 5 5
0xF42B \[NotPrecedesEqual] ($⪯̸$) Infix 390 None 5 5
0x22E0 \[NotPrecedesSlantEqual] ($⋠$) Infix 390 None 5 5
0x22E8 \[NotPrecedesTilde] ($&NotPrecedesTilde;$) Infix 390 None 5 5
0x227D \[SucceedsSlantEqual] ($≽$) Infix 390 None 5 5
0xF42D \[NotSucceedsEqual] ($⪰̸$) Infix 390 None 5 5
0x22E1 \[NotSucceedsSlantEqual] ($⋡$) Infix 390 None 5 5
0x22E9 \[NotSucceedsTilde] ($≿̸$) Infix 390 None 5 5
0x22A5 \[UpTee] ($uT$ $⊥$ $\perp$ $\bot$) Infix 390 Left 4 4
0x221D \[Proportional] ($prop$ $∝$ $\propto$) Infix 390 None 5 5
0x2237 \[Proportion] ($∷$) Infix 390 None 5 5
0x2261 \[Congruent] ($===$ $≡$ $\equiv$) Infix 390 None 5 5
0x2262 \[NotCongruent] ($!===$ $≢$) Infix 390 None 5 5
0x224D \[CupCap] ($≍$ $\asymp$) Infix 390 None 5 5
0x226D \[NotCupCap] ($≭$) Infix 390 None 5 5
0x21CC \[Equilibrium] ($equi$ $⇌$) Infix 390 None 5 5
0x21CB \[ReverseEquilibrium] ($⇋$) Infix 390 None 5 5
0x296E \[UpEquilibrium] ($⥮$) Infix 650 None 2 2
0x296F \[ReverseUpEquilibrium] ($⥯$) Infix 650 None 2 2
0x22A2 \[RightTee] ($rT$ $⊢$ $\vdash$) Infix 300 Right 4 4
0x22A3 \[LeftTee] ($lT$ $⊣$ $\dashv$) Infix 300 Left 4 4
0x22A4 \[DownTee] ($dT$ $⊤$) Infix 300 Left 4 4
0x22A8 \[DoubleRightTee] ($⊨$ $\models$) Infix 300 Right 4 4
0x2AE4 \[DoubleLeftTee] ($⫤$) Infix 300 Left 4 4
0x224F \[HumpEqual] ($h=$ $≏$ $\bumpeq$) Infix 390 None 5 5
0xF401 \[NotHumpEqual] ($!h=$ $≏̸$) Infix 390 None 5 5
0x224E \[HumpDownHump] ($≎$) Infix 390 None 5 5
0xF402 \[NotHumpDownHump] ($≎̸$) Infix 390 None 5 5
0x2250 \[DotEqual] ($.=$ $≐$ $\doteq$) Infix 390 None 5 5
0x2236 \[Colon] ($:$ $:$) Infix 205 None 5 5
0xF431 \[Equal] ($==$ $⩵$) Infix 390 None 5 5
0xF7D9 \[LongEqual] ($l=$) Infix 390 None 5 5
0x221A \[Sqrt] ($sqrt$ $√$ $\surd$) Prefix 650 None 0 2
0x2223 \[VerticalBar] ($ |$ $∣$ $\mid$ $\vert$) Infix 390 None 5 5
0x2224 \[NotVerticalBar] ($!|$ $∤$) Infix 390 None 5 5
0x2225 \[DoubleVerticalBar] ($ ||$ $∥$ $\Vert$ $\parallel$ $\|$) Infix 390 None 5 5
0x2226 \[NotDoubleVerticalBar] ($!||$ $∦$) Infix 390 None 5 5
0x00AC \[Not] ($not$ $!$ $¬$ $\neg$ $\lnot$) Prefix 340 None 0 5
0x2240 \[VerticalTilde] ($≀$ $\wr$) Infix 490 None 3 3
0x00D7 \[Times] ($*$ $×$) Infix 520 None 3 3
0x2062 \[InvisibleTimes] () Infix 520 None 0 0
0xF3B0 \[] () WhiteSp 0 None 0 0
0x00B1 \[PlusMinus] ($+-$ $±$ $\pm$) Infix 430 Left 4 4
0x00B1 \[] () Prefix 600 None 0 2
0x2213 \[MinusPlus] ($-+$ $∓$ $\mp$) Infix 430 Left 4 4
0x2213 \[] () Prefix 600 None 0 2
0x2212 \[] () Infix 430 Left 4 4
0x2212 \[] () Prefix 600 None 0 2
0x00F7 \[Divide] ($div$ $÷$ $\div$) Infix 590 Left 3 3
0x00B7 \[CenterDot] ($.$ $·$ $\cdot$ $\centerdot$) Infix 530 None 3 3
0x2218 \[SmallCircle] ($sc$ $∘$) Infix 607 None 2 2
0xF4A0 \[Cross] ($cross$ $⨯$ $\times$) Infix 603 None 2 2
0x2295 \[CirclePlus] ($c+$ $⊕$ $\oplus$) Infix 450 None 3 3
0x2295 \[] () LargeOp:Prefix 440 None 0 0
0x2296 \[CircleMinus] ($c-$ $⊖$ $\ominus$) Infix 450 Left 3 3
0x2296 \[] () LargeOp:Prefix 440 None 0 0
0x2297 \[CircleTimes] ($c*$ $⊗$ $\otimes$) Infix 540 None 3 3
0x2297 \[] () LargeOp:Prefix 500 None 0 0
0x2299 \[CircleDot] ($c.$ $⊙$ $\odot$) Infix 605 None 3 3
0x2299 \[] () LargeOp:Prefix 520 None 0 0
0x22C6 \[Star] ($star$ $⋆$) Infix 510 None 3 3
0xF520 \[Square] ($sq$ $□$) Prefix 610 None 0 2
0x22C4 \[Diamond] ($dia$ $⋄$) Infix 570 None 3 3
0x2207 \[Del] ($del$ $∇$ $\nabla$) Prefix 620 None 0 2
0x2216 \[Backslash] ($\$ $∖$ $\setminus$) Infix 580 None 3 3
0x2322 \[Cap] ($⌢$ $\frown$) Infix 470 None 3 3
0x2323 \[Cup] ($⌣$ $\smile$) Infix 460 None 3 3
0x2210 \[Coproduct] ($coprod$ $∐$ $\amalg$) Infix 500 None 3 3
0x222B \[Integral] ($int$ $∫$ $\int$ $\intop$) LargeOp:Prefix 455 None 0 0
0x222E \[ContourIntegral] ($cint$ $∮$ $\oint$) LargeOp:Prefix 455 None 0 0
0x222F \[DoubleContourIntegral] ($∯$) LargeOp:Prefix 455 None 0 0
0x2233 \[CounterClockwiseContourIntegral] ($cccint$ $∳$) LargeOp:Prefix 455 None 0 0
0x2232 \[ClockwiseContourIntegral] ($ccint$ $∲$) LargeOp:Prefix 455 None 0 0
0x2211 \[Sum] ($sum$ $∑$ $\sum$) LargeOp:Prefix 440 None 0 3
0x220F \[Product] ($prod$ $∏$ $\prod$) LargeOp:Prefix 500 None 0 3
0x22C2 \[Intersection] ($inter$ $⋂$ $\cap$ $\bigcap$) Infix 430 None 4 4
0x22C2 \[] () LargeOp:Prefix 500 None 0 3
0x22C3 \[Union] ($un$ $⋃$ $\cup$ $\bigcup$) Infix 410 None 4 4
0x22C3 \[] () LargeOp:Prefix 440 None 0 3
0x228E \[UnionPlus] ($⊎$ $\biguplus$ $\uplus$) Infix 410 None 4 4
0x228E \[] () LargeOp:Prefix 440 None 0 3
0x2293 \[SquareIntersection] ($⊓$ $\sqcap$) Infix 430 None 5 5
0x2294 \[SquareUnion] ($⊔$ $\sqcup$) Infix 410 None 5 5
0x22C0 \[Wedge] ($^$ $⋀$ $\wedge$) Infix 560 None 3 3
0x22C0 \[] () LargeOp:Prefix 500 None 0 3
0x2227 \[And] ($and$ $&&$ $∧$ $\land$) Infix 330 None 4 4
0x22BC \[Nand] ($nand$ $!&&$ $⌅$) Infix 330 None 4 4
0x22C1 \[Vee] ($v$ $⋁$ $\vee$) Infix 550 None 3 3
0x22C1 \[] () LargeOp:Prefix 440 None 0 3
0x2228 \[Or] ($or$ $||$ $∨$ $\lor$) Infix 320 None 4 4
0x22BD \[Nor] ($nor$ $⊽$) Infix 320 None 4 4
0x22BB \[Xor] ($xor$ $⊻$) Infix 325 None 4 4
0x2202 \[PartialD] ($pd$ $∂$ $\partial$) Prefix 620 None 0 2
0xF74C \[DifferentialD] ($dd$ $ⅆ$) Prefix 630 None 0 2
0xF74B \[CapitalDifferentialD] ($DD$ $ⅅ$) Prefix 630 None 0 2
0x2192 \[RightArrow] ($ ->$ $→$ $\rightarrow$ $\to$) Infix 380 None 5 5
0x2190 \[LeftArrow] ($<-$ $←$ $\leftarrow$ $\gets$) Infix 380 None 5 5
0x2191 \[UpArrow] ($↑$ $\uparrow$) Infix 650 None 2 2
0x2193 \[DownArrow] ($↓$ $\downarrow$) Infix 650 None 2 2
0x2194 \[LeftRightArrow] ($<->$ $↔$ $\leftrightarrow$) Infix 380 None 5 5
0x2195 \[UpDownArrow] ($↕$ $\updownarrow$) Infix 650 None 2 2
0xF525 \[ShortRightArrow] ($→$) Infix 380 None 5 5
0xF526 \[ShortLeftArrow] ($←$) Infix 380 None 5 5
0xF52A \[ShortUpArrow] ($↑$) Infix 650 None 2 2
0xF52B \[ShortDownArrow] ($↓$) Infix 650 None 2 2
0xF51F \[RuleDelayed] ($:>$ $⧴$) Infix 250 Right 5 5
0xF522 \[Rule] ($->$) Infix 250 Right 5 5
0x21D2 \[DoubleRightArrow] ($ =>$ $⇒$ $\Rightarrow$) Infix 380 None 5 5
0x21D0 \[DoubleLeftArrow] ($ <=$ $⇐$ $\Leftarrow$) Infix 380 None 5 5
0x21D1 \[DoubleUpArrow] ($⇑$ $\Uparrow$) Infix 650 None 2 2
0x21D3 \[DoubleDownArrow] ($⇓$ $\Downarrow$) Infix 650 None 2 2
0x21D4 \[DoubleLeftRightArrow] ($<=>$ $⇔$ $\Leftrightarrow$) Infix 380 None 5 5
0x21D5 \[DoubleUpDownArrow] ($⇕$ $\Updownarrow$) Infix 650 None 2 2
0x21E5 \[RightArrowBar] ($⇥$) Infix 380 None 5 5
0x21E4 \[LeftArrowBar] ($⇤$) Infix 380 None 5 5
0x2912 \[UpArrowBar] ($⤒$) Infix 650 None 2 2
0x2913 \[DownArrowBar] ($⤓$) Infix 650 None 2 2
0x21A6 \[RightTeeArrow] ($↦$ $\mapsto$) Infix 380 None 5 5
0x21A4 \[LeftTeeArrow] ($↤$) Infix 380 None 5 5
0x21A5 \[UpTeeArrow] ($↥$) Infix 650 None 2 2
0x21A7 \[DownTeeArrow] ($↧$) Infix 650 None 2 2
0x2196 \[UpperLeftArrow] ($↖$ $\nwarrow$) Infix 380 None 5 5
0x2197 \[UpperRightArrow] ($↗$ $\nearrow$) Infix 380 None 5 5
0x2198 \[LowerRightArrow] ($↘$ $\searrow$) Infix 380 None 5 5
0x2199 \[LowerLeftArrow] ($↙$ $\swarrow$) Infix 380 None 5 5
0x27F6 \[LongRightArrow] ($-->$ $⟶$ $\longrightarrow$) Infix 650 None 2 2
0x27F5 \[LongLeftArrow] ($<--$ $⟵$ $\longleftarrow$) Infix 650 None 2 2
0x27F8 \[DoubleLongLeftArrow] ($<==$ $⟸$ $\Longleftarrow$) Infix 650 None 2 2
0x27F9 \[DoubleLongRightArrow] ($==>$ $⟹$ $\Longrightarrow$) Infix 650 None 2 2
0x27F7 \[LongLeftRightArrow] ($<-->$ $⟷$ $\longleftrightarrow$) Infix 650 None 2 2
0x27FA \[DoubleLongLeftRightArrow] ($<==>$ $⟺$ $\Longleftrightarrow$ $\iff$) Infix 650 None 2 2
0x21C4 \[RightArrowLeftArrow] ($⇄$) Infix 380 None 5 5
0x21C6 \[LeftArrowRightArrow] ($⇆$) Infix 380 None 5 5
0x21C5 \[UpArrowDownArrow] ($⇅$) Infix 650 None 2 2
0x21F5 \[DownArrowUpArrow] ($⇵$) Infix 650 None 2 2
0x21C0 \[RightVector] ($vec$ $⇀$ $\rightharpoonup$) Infix 380 None 5 5
0x21C1 \[DownRightVector] ($⇁$) Infix 380 None 5 5
0x21BC \[LeftVector] ($↼$ $\leftharpoonup$) Infix 380 None 5 5
0x21BD \[DownLeftVector] ($↽$) Infix 380 None 5 5
0x21BE \[RightUpVector] ($↾$) Infix 650 None 2 2
0x21BF \[LeftUpVector] ($↿$) Infix 650 None 2 2
0x21C2 \[RightDownVector] ($⇂$) Infix 650 None 2 2
0x21C3 \[LeftDownVector] ($⇃$) Infix 650 None 2 2
0x294E \[LeftRightVector] ($⥎$) Infix 380 None 2 2
0x2950 \[DownLeftRightVector] ($⥐$) Infix 380 None 2 2
0x294F \[RightUpDownVector] ($⥏$) Infix 650 None 2 2
0x2951 \[LeftUpDownVector] ($⥑$) Infix 650 None 2 2
0x2953 \[RightVectorBar] ($⥓$) Infix 380 None 2 2
0x2957 \[DownRightVectorBar] ($⥗$) Infix 380 None 2 2
0x2952 \[LeftVectorBar] ($⥒$) Infix 380 None 2 2
0x2956 \[DownLeftVectorBar] ($⥖$) Infix 380 None 2 2
0x2954 \[RightUpVectorBar] ($⥔$) Infix 650 None 2 2
0x2958 \[LeftUpVectorBar] ($⥘$) Infix 650 None 2 2
0x2955 \[RightDownVectorBar] ($⥕$) Infix 650 None 2 2
0x2959 \[LeftDownVectorBar] ($⥙$) Infix 650 None 2 2
0x295B \[RightTeeVector] ($⥛$) Infix 380 None 5 5
0x295F \[DownRightTeeVector] ($⥟$) Infix 380 None 5 5
0x295A \[LeftTeeVector] ($⥚$) Infix 380 None 5 5
0x295E \[DownLeftTeeVector] ($⥞$) Infix 380 None 5 5
0x295C \[RightUpTeeVector] ($⥜$) Infix 650 None 2 2
0x2960 \[LeftUpTeeVector] ($⥠$) Infix 650 None 2 2
0x295D \[RightDownTeeVector] ($⥝$) Infix 650 None 2 2
0x2961 \[LeftDownTeeVector] ($⥡$) Infix 650 None 2 2
0x301A \[LeftDoubleBracket] ($[[$ $⟦$) InfixOpen -10 None 0 0 0x301B
0x301B \[RightDoubleBracket] ($]]$ $⟧$) Close -10 None 0 0
0x2329 \[LeftAngleBracket] ($<$ $⟨$ $\langle$) Open -10 None 0 0 0x232A
0x232A \[RightAngleBracket] ($>$ $⟩$ $\rangle$) Close -10 None 0 0
0x230A \[LeftFloor] ($lf$ $⌊$ $\lfloor$) Open -10 None 0 0 0x230B
0x230B \[RightFloor] ($rf$ $⌋$ $\rfloor$) Close -10 None 0 0
0x2308 \[LeftCeiling] ($lc$ $⌈$ $\lceil$) Open -10 None 0 0 0x2309
0x2309 \[RightCeiling] ($rc$ $⌉$ $\rceil$) Close -10 None 0 0
0xF603 \[LeftBracketingBar] ($l|$ $&LeftBracketingBar;$) Open -10 None 0 0 0xF604
0xF604 \[RightBracketingBar] ($r|$ $&RightBracketingBar;$) Close -10 None 0 0
0xF605 \[LeftDoubleBracketingBar] ($l||$ $&LeftDoubleBracketingBar;$) Open -10 None 0 0 0xF606
0xF606 \[RightDoubleBracketingBar] ($r||$ $&RightDoubleBracketingBar;$) Close -10 None 0 0
0xF751 \[DottedSquare] () Letter
0x25E6 \[EmptySmallCircle] ($esci$ $\circ$) Letter
0xF750 \[FilledSmallCircle] ($fsci$) Letter
0x25CB \[EmptyCircle] ($eci$ $◯$ $\bigcirc$) Letter
0x25CF \[FilledCircle] ($fci$) Letter
0x25C7 \[EmptyDiamond] () Letter
0x25C6 \[FilledDiamond] ($\blacklozenge$) Letter
0x25AF \[EmptyRectangle] () Letter
0x25AE \[FilledRectangle] ($▮$ $\qed$) Letter
0x25A1 \[EmptySquare] ($esq$ $□$) Letter
0x25FB \[EmptySmallSquare] ($essq$) Letter
0x25AB \[EmptyVerySmallSquare] ($evssq$ $▫$) Letter
0x25A0 \[FilledSquare] ($fsq$) Letter
0x25FC \[FilledSmallSquare] ($fssq$ $▪$) Letter
0x25AA \[FilledVerySmallSquare] ($fvssq$ $▪$) Letter
0x25B3 \[EmptyUpTriangle] ($△$ $\triangle$) Letter
0x25B2 \[FilledUpTriangle] () Letter
0x25B6 \[FilledRightTriangle] () Letter
0x25BD \[EmptyDownTriangle] ($▽$) Letter
0x25BC \[FilledDownTriangle] () Letter
0x25C0 \[FilledLeftTriangle] () Letter
0x2605 \[FivePointedStar] ($*5$ $★$ $\star$) Letter
0x2736 \[SixPointedStar] ($*6$ $✶$) Letter
0xF752 \[GraySquare] ($gsq$) Letter
0xF753 \[GrayCircle] ($gci$) Letter
0xF754 \[LetterSpace] ($ls$ $_$) Letter
0x231A \[WatchIcon] () Letter
0xF756 \[KernelIcon] () Letter
0xF757 \[MathematicaIcon] ($math$) Letter
0x266D \[Flat] ($♭$ $\flat$) Letter
0x266E \[Natural] ($♮$ $\natural$) Letter
0x266F \[Sharp] ($♯$ $\sharp$) Letter
0x2660 \[SpadeSuit] ($♠$ $\spadesuit$) Letter
0x2661 \[HeartSuit] ($♥$ $\heartsuit$) Letter
0x2662 \[DiamondSuit] ($♦$ $\diamondsuit$) Letter
0x2663 \[ClubSuit] ($♣$ $\clubsuit$) Letter
0xF720 \[Wolf] ($wolf$ $wf$ $wolfram$ $howl$ $tungsten$ $lupine$ $werewolf$) Letter
0xF727 \[Villa] ($villa$) Letter
0xF728 \[Akuz] ($akuz$) Letter
0xF729 \[Andy] ($andy$) Letter
0xF72A \[Spooky] ($spooky$) Letter
0x263A \[HappySmiley] ($:-)$ $:)$) Letter
0x2639 \[SadSmiley] ($:-($) Letter
0xF721 \[FreakedSmiley] ($:-@$) Letter
0xF722 \[NeutralSmiley] ($:-|$) Letter
0xF723 \[LightBulb] () Letter
0xF724 \[NumberSign] ($#$ $#$) Letter
0xF725 \[WarningSign] () Letter
0xF8D0 \[KlingonA] () Letter
0xF8D1 \[KlingonB] () Letter
0xF8D2 \[KlingonCH] () Letter
0xF8D3 \[KlingonD] () Letter
0xF8D4 \[KlingonE] () Letter
0xF8D5 \[KlingonGH] () Letter
0xF8D6 \[KlingonH] () Letter
0xF8D7 \[KlingonI] () Letter
0xF8D8 \[KlingonJ] () Letter
0xF8D9 \[KlingonL] () Letter
0xF8DA \[KlingonM] () Letter
0xF8DB \[KlingonN] () Letter
0xF8DC \[KlingonNG] () Letter
0xF8DD \[KlingonO] () Letter
0xF8DE \[KlingonP] () Letter
0xF8DF \[KlingonQ] () Letter
0xF8E0 \[KlingonQH] () Letter
0xF8E1 \[KlingonR] () Letter
0xF8E2 \[KlingonS] () Letter
0xF8E3 \[KlingonT] () Letter
0xF8E4 \[KlingonTLH] () Letter
0xF8E5 \[KlingonU] () Letter
0xF8E6 \[KlingonV] () Letter
0xF8E7 \[KlingonW] () Letter
0xF8E8 \[KlingonY] () Letter
0xF8E9 \[KlingonGlottalStop] () Letter
0xF8F0 \[Klingon0] () Letter
0xF8F1 \[Klingon1] () Letter
0xF8F2 \[Klingon2] () Letter
0xF8F3 \[Klingon3] () Letter
0xF8F4 \[Klingon4] () Letter
0xF8F5 \[Klingon5] () Letter
0xF8F6 \[Klingon6] () Letter
0xF8F7 \[Klingon7] () Letter
0xF8F8 \[Klingon8] () Letter
0xF8F9 \[Klingon9] () Letter
0xF8FF \[KlingonEmpire] () Letter
0xFFFD \[UnknownGlyph] () Letter
0xF35F \[] () WhiteSp 0 None 0 0
0xF39E \[ImplicitPlus] ($+$) Infix 593 None 0 0
0xF39F \[] () WhiteSp 0 None 0 0
0xF360 \[InvisibleSpace] ($is$ $​$) WhiteSp 0 None 0 0
0x200A \[VeryThinSpace] ($ $ $ $) WhiteSp 0 None 0 0
0x2009 \[ThinSpace] ($ $ $ $ $\,$ $\thinspace$) WhiteSp 0 None 0 0
0x205F \[MediumSpace] ($ $ $\>$ $\:$ $\medspace$) WhiteSp 0 None 0 0
0x2005 \[ThickSpace] ($ $ $  $ $\;$ $\thickspace$) WhiteSp 0 None 0 0
0xF380 \[NegativeVeryThinSpace] ($- $ $​$) WhiteSp 0 None 0 0
0xF382 \[NegativeThinSpace] ($- $ $​$ $\!$ $\negthinspace$) WhiteSp 0 None 0 0
0xF383 \[NegativeMediumSpace] ($- $ $​$ $\negmedspace$) WhiteSp 0 None 0 0
0xF384 \[NegativeThickSpace] ($- $ $​$ $\negthickspace$) WhiteSp 0 None 0 0
0x2018 \[OpenCurlyQuote] ($['$ $‘$) Open -10 None 0 0 0x2019
0x2019 \[CloseCurlyQuote] ($]'$ $’$) Close -10 None 0 0
0x201C \[OpenCurlyDoubleQuote] ($["$ $“$) Open -10 None 0 0 0x201D
0x201D \[CloseCurlyDoubleQuote] ($]"$ $”$) Close -10 None 0 0
0xFE35 \[OverParenthesis] ($o($ $⏜$) Letter
0xFE36 \[UnderParenthesis] ($u($ $⏝$) Letter
0xFE37 \[OverBrace] ($o{$ $⏞$ $\overbrace$) Letter
0xFE38 \[UnderBrace] ($u{$ $⏟$ $\underbrace$) Letter
0x23B4 \[OverBracket] ($o[$ $⎴$) Letter
0x23B5 \[UnderBracket] ($u[$ $⎵$) Letter
0xF3A0 \[Null] ($null$) Letter
0x000A \[NewLine] () WhiteSp 0 None 0 0
0xF3A3 \[IndentingNewLine] ($nl$ $&IndentingNewLine;$) WhiteSp 0 None 0 0
0x2060 \[NoBreak] ($nb$ $⁠$) WhiteSp 0 None 0 0
0xF3A2 \[COMPATIBILITYNoBreak] () WhiteSp 0 None 0 0
0x00A0 \[NonBreakingSpace] ($nbs$ $ $) WhiteSp 0 None 0 0
0xF3B1 \[Continuation] ($cont$) WhiteSp 0 None 0 0
0x2423 \[SpaceIndicator] ($space$ $␣$) WhiteSp 0 None 0 0
0xF3B2 \[RoundSpaceIndicator] () WhiteSp 0 None 0 0
0xF3B3 \[InvisiblePrefixScriptBase] ($i-$) Prefix 800 None 0 0
0xF3B4 \[InvisiblePostfixScriptBase] ($-i$) Postfix 800 None 0 0
0xF3BA \[SpanFromLeft] ($sfl$) Letter
0xF3BB \[SpanFromAbove] ($sfa$ $sft$) Letter
0xF3BC \[SpanFromBoth] ($sfb$) Letter
0xF76A \[CommandKey] ($cmd$) Letter
0xF76B \[LeftModified] ($[$) Letter
0xF76C \[RightModified] ($]$) Letter
0xF76D \[InvisibleApplication] ($@$ $⁡$) Infix 730 Right 0 4
0x2318 \[CloverLeaf] ($cl$) Letter
0xF763 \[ControlKey] ($ctrl$) Letter
0xF769 \[EscapeKey] ($ esc$) Letter
0xF7BE \[TabKey] ($tab$) Letter
0xF7BF \[SpaceKey] ($spc$) Letter
0xF7D0 \[DeleteKey] ($ del$) Letter
0xF7D1 \[AltKey] ($alt$) Letter
0xF7D2 \[OptionKey] ($opt$) Letter
0xF7D3 \[KeyBar] ($kb$) Letter
0xF7D4 \[EnterKey] ($ent$) Letter
0xF75F \[SystemEnterKey] () Letter
0xF7D5 \[ShiftKey] ($sh$) Letter
0xF7D6 \[Mod1Key] ($m1$) Letter
0xF7D7 \[Mod2Key] ($m2$) Letter
0xF764 \[AliasDelimiter] () Letter
0xF768 \[AliasIndicator] ($esc$) Letter
0x21B5 \[ReturnIndicator] ($ret$ $↵$) Letter
0x2028 \[LineSeparator] ($lsep$) WhiteSp 0 None 0 0
0x2029 \[ParagraphSeparator] ($psep$) WhiteSp 0 None 0 0
0xF76E \[DiscretionaryLineSeparator] ($dlsep$) WhiteSp 0 None 0 0
0xF76F \[DiscretionaryParagraphSeparator] ($dpsep$) WhiteSp 0 None 0 0
0x2500 \[HorizontalLine] ($hline$ $─$) Letter
0x2502 \[VerticalLine] ($vline$ $|$) Letter
0xF765 \[InvisibleComma] ($,$ $⁣$) Infix 1 None 0 1
0xF7FC \[NumberComma] ($n,$) Letter
0xF766 \[ReturnKey] ($ ret$) Letter
0xF527 \[SelectionPlaceholder] ($spl$) Alias
0xF528 \[Placeholder] ($pl$) Alias
0xF760 \[AlignmentMarker] ($am$) WhiteSp 0 None 0 0
0x2043 \[SkeletonIndicator] ($⁃$) Letter
0xF761 \[LeftSkeleton] ($&LeftSkeleton;$) Open -10 None 0 0 0xF762
0xF762 \[RightSkeleton] ($&RightSkeleton;$) Close -10 None 0 0
0xF767 \[ErrorIndicator] () Letter
0xF3AD \[AutoSpace] () WhiteSp 0 None 0 0
0xF3AE \[AutoOperand] () Auto
0xF3A4 \[AutoPlaceholder] () Auto
0xF3A8 \[AutoLeftMatch] ($\left.$) Open -10 None 0 0 0xF3A9
0xF3A9 \[AutoRightMatch] ($\right.$) Close -10 None 0 0
0xF350 \[] () Postfix 595 None \
FractionBox["#1", "\[Placeholder]"]
0xF353 \[] () Postfix 780 None \
SubscriptBox["#1", "\[Placeholder]"]
0xF354 \[] () Postfix 660 None \
SuperscriptBox["#1", "\[Placeholder]"]
0xF355 \[] () Postfix 790 None \
UnderscriptBox["#1", "\[Placeholder]"]
0xF356 \[] () Postfix 790 None \
OverscriptBox["#1", "\[Placeholder]"]
0xF7DB \[DoubleStruckZero] ($ds0$) Letter
0xF7DC \[DoubleStruckOne] ($ds1$) Letter
0xF7DD \[DoubleStruckTwo] ($ds2$) Letter
0xF7DE \[DoubleStruckThree] ($ds3$) Letter
0xF7DF \[DoubleStruckFour] ($ds4$) Letter
0xF7E0 \[DoubleStruckFive] ($ds5$) Letter
0xF7E1 \[DoubleStruckSix] ($ds6$) Letter
0xF7E2 \[DoubleStruckSeven] ($ds7$) Letter
0xF7E3 \[DoubleStruckEight] ($ds8$) Letter
0xF7E4 \[DoubleStruckNine] ($ds9$) Letter
0xF7E5 \[GothicZero] ($go0$) Letter
0xF7E6 \[GothicOne] ($go1$) Letter
0xF7E7 \[GothicTwo] ($go2$) Letter
0xF7E8 \[GothicThree] ($go3$) Letter
0xF7E9 \[GothicFour] ($go4$) Letter
0xF7EA \[GothicFive] ($go5$) Letter
0xF7EB \[GothicSix] ($go6$) Letter
0xF7EC \[GothicSeven] ($go7$) Letter
0xF7ED \[GothicEight] ($go8$) Letter
0xF7EF \[GothicNine] ($go9$) Letter
0xF7F0 \[ScriptZero] ($sc0$) Letter
0xF7F1 \[ScriptOne] ($sc1$) Letter
0xF7F2 \[ScriptTwo] ($sc2$) Letter
0xF7F3 \[ScriptThree] ($sc3$) Letter
0xF7F4 \[ScriptFour] ($sc4$) Letter
0xF7F5 \[ScriptFive] ($sc5$) Letter
0xF7F6 \[ScriptSix] ($sc6$) Letter
0xF7F7 \[ScriptSeven] ($sc7$) Letter
0xF7F8 \[ScriptEight] ($sc8$) Letter
0xF7F9 \[ScriptNine] ($sc9$) Letter
0x263F \[Mercury] () Letter
0x2640 \[Venus] () Letter
0x2641 \[Earth] () Letter
0x2642 \[Mars] () Letter
0x2643 \[Jupiter] () Letter
0x2644 \[Saturn] () Letter
0x2645 \[Uranus] () Letter
0x2646 \[Neptune] () Letter
0x2647 \[Pluto] () Letter
0xF7FA \[FirstPage] () Letter
0xF7FB \[LastPage] () Letter
0x2669 \[QuarterNote] () Letter
0x266A \[EighthNote] () Letter
0x266B \[BeamedEighthNote] () Letter
0x266C \[BeamedSixteenthNote] () Letter
0xF3B8 \[EntityStart] () Letter
0xF3B9 \[EntityEnd] () Letter
0x2713 \[Checkmark] () Letter
0x2611 \[CheckmarkedBox] () Letter
0x2612 \[CheckedBox] () Letter
0xF361 \[Piecewise] ($pw$ $&piecewise;$) Prefix 600 None 0 2
0xF3C7 \[Transpose] ($tr$) Postfix 695 None 0 5
0xF3C8 \[Conjugate] ($co$ $conj$) Postfix 695 None 0 5
0xF3CE \[HermitianConjugate] ($hc$) Postfix 695 None 0 5
0xF3C9 \[ConjugateTranspose] ($ct$) Postfix 695 None 0 5
0xF3CA \[StepperRight] () Letter
0xF3CB \[StepperLeft] () Letter
0xF3CC \[StepperUp] () Letter
0xF3CD \[StepperDown] () Letter
0xF3D0 \[Divides] ($divides$ $&Divides;$) Infix 590 None 3 3
0xFFFF \[] () Letter
0xFF08 \[] () Open -10 None 0 0 0xff09
0xFF09 \[] () Close -10 None 0 0
0xFF3B \[] () Open -10 None 0 0 0xff3d
0xFF3D \[] () Close -10 None 0 0
0xFF5B \[] () Open -10 None 0 0 0xff5d
0xFF5D \[] () Close -10 None 0 0
0x3008 \[] () Open -10 None 0 0 0x3009
0x3009 \[] () Close -10 None 0 0
0x300A \[] () Open -10 None 0 0 0x300b
0x300B \[] () Close -10 None 0 0
0x300C \[] () Open -10 None 0 0 0x300d
0x300D \[] () Close -10 None 0 0
0x300E \[] () Open -10 None 0 0 0x300f
0x300F \[] () Close -10 None 0 0
0x3010 \[] () Open -10 None 0 0 0x3011
0x3011 \[] () Close -10 None 0 0
0x3014 \[] () Open -10 None 0 0 0x3015
0x3015 \[] () Close -10 None 0 0
0xFFE5 \[] () NonBreakingAfterLetter
0xFF20 \[] () NonBreakingAfterLetter
0x3012 \[] () NonBreakingAfterLetter
0x3000 \[COMPATIBILITYKanjiSpace] () WhiteSp 0 None 0 0
0x3001 \[] () NonBreakingBeforeLetter
0x3002 \[] () NonBreakingBeforeLetter
0x30FC \[] () NonBreakingBeforeLetter
0xFF0C \[] () NonBreakingBeforeLetter
0xFF0E \[] () NonBreakingBeforeLetter
0xFF1A \[] () NonBreakingBeforeLetter
0xFF1B \[] () NonBreakingBeforeLetter
0xFF1F \[] () NonBreakingBeforeLetter
0xFF01 \[] () NonBreakingBeforeLetter
0x309B \[] () NonBreakingBeforeLetter
0x309C \[] () NonBreakingBeforeLetter
0x30FD \[] () NonBreakingBeforeLetter
0x30FE \[] () NonBreakingBeforeLetter
0x309D \[] () NonBreakingBeforeLetter
0x309E \[] () NonBreakingBeforeLetter
0x2015 \[] () NonBreakingBeforeLetter