-
Notifications
You must be signed in to change notification settings - Fork 0
/
entities.json
2233 lines (2233 loc) · 142 KB
/
entities.json
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
{
"Á": { "codepoints": [193], "characters": "\u00C1" },
"Á": { "codepoints": [193], "characters": "\u00C1" },
"á": { "codepoints": [225], "characters": "\u00E1" },
"á": { "codepoints": [225], "characters": "\u00E1" },
"Ă": { "codepoints": [258], "characters": "\u0102" },
"ă": { "codepoints": [259], "characters": "\u0103" },
"∾": { "codepoints": [8766], "characters": "\u223E" },
"∿": { "codepoints": [8767], "characters": "\u223F" },
"∾̳": { "codepoints": [8766, 819], "characters": "\u223E\u0333" },
"Â": { "codepoints": [194], "characters": "\u00C2" },
"Â": { "codepoints": [194], "characters": "\u00C2" },
"â": { "codepoints": [226], "characters": "\u00E2" },
"â": { "codepoints": [226], "characters": "\u00E2" },
"´": { "codepoints": [180], "characters": "\u00B4" },
"´": { "codepoints": [180], "characters": "\u00B4" },
"А": { "codepoints": [1040], "characters": "\u0410" },
"а": { "codepoints": [1072], "characters": "\u0430" },
"Æ": { "codepoints": [198], "characters": "\u00C6" },
"Æ": { "codepoints": [198], "characters": "\u00C6" },
"æ": { "codepoints": [230], "characters": "\u00E6" },
"æ": { "codepoints": [230], "characters": "\u00E6" },
"⁡": { "codepoints": [8289], "characters": "\u2061" },
"𝔄": { "codepoints": [120068], "characters": "\uD835\uDD04" },
"𝔞": { "codepoints": [120094], "characters": "\uD835\uDD1E" },
"À": { "codepoints": [192], "characters": "\u00C0" },
"À": { "codepoints": [192], "characters": "\u00C0" },
"à": { "codepoints": [224], "characters": "\u00E0" },
"à": { "codepoints": [224], "characters": "\u00E0" },
"ℵ": { "codepoints": [8501], "characters": "\u2135" },
"ℵ": { "codepoints": [8501], "characters": "\u2135" },
"Α": { "codepoints": [913], "characters": "\u0391" },
"α": { "codepoints": [945], "characters": "\u03B1" },
"Ā": { "codepoints": [256], "characters": "\u0100" },
"ā": { "codepoints": [257], "characters": "\u0101" },
"⨿": { "codepoints": [10815], "characters": "\u2A3F" },
"&": { "codepoints": [38], "characters": "\u0026" },
"&": { "codepoints": [38], "characters": "\u0026" },
"&": { "codepoints": [38], "characters": "\u0026" },
"&": { "codepoints": [38], "characters": "\u0026" },
"⩕": { "codepoints": [10837], "characters": "\u2A55" },
"⩓": { "codepoints": [10835], "characters": "\u2A53" },
"∧": { "codepoints": [8743], "characters": "\u2227" },
"⩜": { "codepoints": [10844], "characters": "\u2A5C" },
"⩘": { "codepoints": [10840], "characters": "\u2A58" },
"⩚": { "codepoints": [10842], "characters": "\u2A5A" },
"∠": { "codepoints": [8736], "characters": "\u2220" },
"⦤": { "codepoints": [10660], "characters": "\u29A4" },
"∠": { "codepoints": [8736], "characters": "\u2220" },
"⦨": { "codepoints": [10664], "characters": "\u29A8" },
"⦩": { "codepoints": [10665], "characters": "\u29A9" },
"⦪": { "codepoints": [10666], "characters": "\u29AA" },
"⦫": { "codepoints": [10667], "characters": "\u29AB" },
"⦬": { "codepoints": [10668], "characters": "\u29AC" },
"⦭": { "codepoints": [10669], "characters": "\u29AD" },
"⦮": { "codepoints": [10670], "characters": "\u29AE" },
"⦯": { "codepoints": [10671], "characters": "\u29AF" },
"∡": { "codepoints": [8737], "characters": "\u2221" },
"∟": { "codepoints": [8735], "characters": "\u221F" },
"⊾": { "codepoints": [8894], "characters": "\u22BE" },
"⦝": { "codepoints": [10653], "characters": "\u299D" },
"∢": { "codepoints": [8738], "characters": "\u2222" },
"Å": { "codepoints": [197], "characters": "\u00C5" },
"⍼": { "codepoints": [9084], "characters": "\u237C" },
"Ą": { "codepoints": [260], "characters": "\u0104" },
"ą": { "codepoints": [261], "characters": "\u0105" },
"𝔸": { "codepoints": [120120], "characters": "\uD835\uDD38" },
"𝕒": { "codepoints": [120146], "characters": "\uD835\uDD52" },
"⩯": { "codepoints": [10863], "characters": "\u2A6F" },
"≈": { "codepoints": [8776], "characters": "\u2248" },
"⩰": { "codepoints": [10864], "characters": "\u2A70" },
"≊": { "codepoints": [8778], "characters": "\u224A" },
"≋": { "codepoints": [8779], "characters": "\u224B" },
"'": { "codepoints": [39], "characters": "\u0027" },
"⁡": { "codepoints": [8289], "characters": "\u2061" },
"≈": { "codepoints": [8776], "characters": "\u2248" },
"≊": { "codepoints": [8778], "characters": "\u224A" },
"Å": { "codepoints": [197], "characters": "\u00C5" },
"Å": { "codepoints": [197], "characters": "\u00C5" },
"å": { "codepoints": [229], "characters": "\u00E5" },
"å": { "codepoints": [229], "characters": "\u00E5" },
"𝒜": { "codepoints": [119964], "characters": "\uD835\uDC9C" },
"𝒶": { "codepoints": [119990], "characters": "\uD835\uDCB6" },
"≔": { "codepoints": [8788], "characters": "\u2254" },
"*": { "codepoints": [42], "characters": "\u002A" },
"≈": { "codepoints": [8776], "characters": "\u2248" },
"≍": { "codepoints": [8781], "characters": "\u224D" },
"Ã": { "codepoints": [195], "characters": "\u00C3" },
"Ã": { "codepoints": [195], "characters": "\u00C3" },
"ã": { "codepoints": [227], "characters": "\u00E3" },
"ã": { "codepoints": [227], "characters": "\u00E3" },
"Ä": { "codepoints": [196], "characters": "\u00C4" },
"Ä": { "codepoints": [196], "characters": "\u00C4" },
"ä": { "codepoints": [228], "characters": "\u00E4" },
"ä": { "codepoints": [228], "characters": "\u00E4" },
"∳": { "codepoints": [8755], "characters": "\u2233" },
"⨑": { "codepoints": [10769], "characters": "\u2A11" },
"≌": { "codepoints": [8780], "characters": "\u224C" },
"϶": { "codepoints": [1014], "characters": "\u03F6" },
"‵": { "codepoints": [8245], "characters": "\u2035" },
"∽": { "codepoints": [8765], "characters": "\u223D" },
"⋍": { "codepoints": [8909], "characters": "\u22CD" },
"∖": { "codepoints": [8726], "characters": "\u2216" },
"⫧": { "codepoints": [10983], "characters": "\u2AE7" },
"⊽": { "codepoints": [8893], "characters": "\u22BD" },
"⌅": { "codepoints": [8965], "characters": "\u2305" },
"⌆": { "codepoints": [8966], "characters": "\u2306" },
"⌅": { "codepoints": [8965], "characters": "\u2305" },
"⎵": { "codepoints": [9141], "characters": "\u23B5" },
"⎶": { "codepoints": [9142], "characters": "\u23B6" },
"≌": { "codepoints": [8780], "characters": "\u224C" },
"Б": { "codepoints": [1041], "characters": "\u0411" },
"б": { "codepoints": [1073], "characters": "\u0431" },
"„": { "codepoints": [8222], "characters": "\u201E" },
"∵": { "codepoints": [8757], "characters": "\u2235" },
"∵": { "codepoints": [8757], "characters": "\u2235" },
"∵": { "codepoints": [8757], "characters": "\u2235" },
"⦰": { "codepoints": [10672], "characters": "\u29B0" },
"϶": { "codepoints": [1014], "characters": "\u03F6" },
"ℬ": { "codepoints": [8492], "characters": "\u212C" },
"ℬ": { "codepoints": [8492], "characters": "\u212C" },
"Β": { "codepoints": [914], "characters": "\u0392" },
"β": { "codepoints": [946], "characters": "\u03B2" },
"ℶ": { "codepoints": [8502], "characters": "\u2136" },
"≬": { "codepoints": [8812], "characters": "\u226C" },
"𝔅": { "codepoints": [120069], "characters": "\uD835\uDD05" },
"𝔟": { "codepoints": [120095], "characters": "\uD835\uDD1F" },
"⋂": { "codepoints": [8898], "characters": "\u22C2" },
"◯": { "codepoints": [9711], "characters": "\u25EF" },
"⋃": { "codepoints": [8899], "characters": "\u22C3" },
"⨀": { "codepoints": [10752], "characters": "\u2A00" },
"⨁": { "codepoints": [10753], "characters": "\u2A01" },
"⨂": { "codepoints": [10754], "characters": "\u2A02" },
"⨆": { "codepoints": [10758], "characters": "\u2A06" },
"★": { "codepoints": [9733], "characters": "\u2605" },
"▽": { "codepoints": [9661], "characters": "\u25BD" },
"△": { "codepoints": [9651], "characters": "\u25B3" },
"⨄": { "codepoints": [10756], "characters": "\u2A04" },
"⋁": { "codepoints": [8897], "characters": "\u22C1" },
"⋀": { "codepoints": [8896], "characters": "\u22C0" },
"⤍": { "codepoints": [10509], "characters": "\u290D" },
"⧫": { "codepoints": [10731], "characters": "\u29EB" },
"▪": { "codepoints": [9642], "characters": "\u25AA" },
"▴": { "codepoints": [9652], "characters": "\u25B4" },
"▾": { "codepoints": [9662], "characters": "\u25BE" },
"◂": { "codepoints": [9666], "characters": "\u25C2" },
"▸": { "codepoints": [9656], "characters": "\u25B8" },
"␣": { "codepoints": [9251], "characters": "\u2423" },
"▒": { "codepoints": [9618], "characters": "\u2592" },
"░": { "codepoints": [9617], "characters": "\u2591" },
"▓": { "codepoints": [9619], "characters": "\u2593" },
"█": { "codepoints": [9608], "characters": "\u2588" },
"=⃥": { "codepoints": [61, 8421], "characters": "\u003D\u20E5" },
"≡⃥": { "codepoints": [8801, 8421], "characters": "\u2261\u20E5" },
"⫭": { "codepoints": [10989], "characters": "\u2AED" },
"⌐": { "codepoints": [8976], "characters": "\u2310" },
"𝔹": { "codepoints": [120121], "characters": "\uD835\uDD39" },
"𝕓": { "codepoints": [120147], "characters": "\uD835\uDD53" },
"⊥": { "codepoints": [8869], "characters": "\u22A5" },
"⊥": { "codepoints": [8869], "characters": "\u22A5" },
"⋈": { "codepoints": [8904], "characters": "\u22C8" },
"⧉": { "codepoints": [10697], "characters": "\u29C9" },
"┐": { "codepoints": [9488], "characters": "\u2510" },
"╕": { "codepoints": [9557], "characters": "\u2555" },
"╖": { "codepoints": [9558], "characters": "\u2556" },
"╗": { "codepoints": [9559], "characters": "\u2557" },
"┌": { "codepoints": [9484], "characters": "\u250C" },
"╒": { "codepoints": [9554], "characters": "\u2552" },
"╓": { "codepoints": [9555], "characters": "\u2553" },
"╔": { "codepoints": [9556], "characters": "\u2554" },
"─": { "codepoints": [9472], "characters": "\u2500" },
"═": { "codepoints": [9552], "characters": "\u2550" },
"┬": { "codepoints": [9516], "characters": "\u252C" },
"╤": { "codepoints": [9572], "characters": "\u2564" },
"╥": { "codepoints": [9573], "characters": "\u2565" },
"╦": { "codepoints": [9574], "characters": "\u2566" },
"┴": { "codepoints": [9524], "characters": "\u2534" },
"╧": { "codepoints": [9575], "characters": "\u2567" },
"╨": { "codepoints": [9576], "characters": "\u2568" },
"╩": { "codepoints": [9577], "characters": "\u2569" },
"⊟": { "codepoints": [8863], "characters": "\u229F" },
"⊞": { "codepoints": [8862], "characters": "\u229E" },
"⊠": { "codepoints": [8864], "characters": "\u22A0" },
"┘": { "codepoints": [9496], "characters": "\u2518" },
"╛": { "codepoints": [9563], "characters": "\u255B" },
"╜": { "codepoints": [9564], "characters": "\u255C" },
"╝": { "codepoints": [9565], "characters": "\u255D" },
"└": { "codepoints": [9492], "characters": "\u2514" },
"╘": { "codepoints": [9560], "characters": "\u2558" },
"╙": { "codepoints": [9561], "characters": "\u2559" },
"╚": { "codepoints": [9562], "characters": "\u255A" },
"│": { "codepoints": [9474], "characters": "\u2502" },
"║": { "codepoints": [9553], "characters": "\u2551" },
"┼": { "codepoints": [9532], "characters": "\u253C" },
"╪": { "codepoints": [9578], "characters": "\u256A" },
"╫": { "codepoints": [9579], "characters": "\u256B" },
"╬": { "codepoints": [9580], "characters": "\u256C" },
"┤": { "codepoints": [9508], "characters": "\u2524" },
"╡": { "codepoints": [9569], "characters": "\u2561" },
"╢": { "codepoints": [9570], "characters": "\u2562" },
"╣": { "codepoints": [9571], "characters": "\u2563" },
"├": { "codepoints": [9500], "characters": "\u251C" },
"╞": { "codepoints": [9566], "characters": "\u255E" },
"╟": { "codepoints": [9567], "characters": "\u255F" },
"╠": { "codepoints": [9568], "characters": "\u2560" },
"‵": { "codepoints": [8245], "characters": "\u2035" },
"˘": { "codepoints": [728], "characters": "\u02D8" },
"˘": { "codepoints": [728], "characters": "\u02D8" },
"¦": { "codepoints": [166], "characters": "\u00A6" },
"¦": { "codepoints": [166], "characters": "\u00A6" },
"𝒷": { "codepoints": [119991], "characters": "\uD835\uDCB7" },
"ℬ": { "codepoints": [8492], "characters": "\u212C" },
"⁏": { "codepoints": [8271], "characters": "\u204F" },
"∽": { "codepoints": [8765], "characters": "\u223D" },
"⋍": { "codepoints": [8909], "characters": "\u22CD" },
"⧅": { "codepoints": [10693], "characters": "\u29C5" },
"\": { "codepoints": [92], "characters": "\u005C" },
"⟈": { "codepoints": [10184], "characters": "\u27C8" },
"•": { "codepoints": [8226], "characters": "\u2022" },
"•": { "codepoints": [8226], "characters": "\u2022" },
"≎": { "codepoints": [8782], "characters": "\u224E" },
"⪮": { "codepoints": [10926], "characters": "\u2AAE" },
"≏": { "codepoints": [8783], "characters": "\u224F" },
"≎": { "codepoints": [8782], "characters": "\u224E" },
"≏": { "codepoints": [8783], "characters": "\u224F" },
"Ć": { "codepoints": [262], "characters": "\u0106" },
"ć": { "codepoints": [263], "characters": "\u0107" },
"⩄": { "codepoints": [10820], "characters": "\u2A44" },
"⩉": { "codepoints": [10825], "characters": "\u2A49" },
"⩋": { "codepoints": [10827], "characters": "\u2A4B" },
"∩": { "codepoints": [8745], "characters": "\u2229" },
"⋒": { "codepoints": [8914], "characters": "\u22D2" },
"⩇": { "codepoints": [10823], "characters": "\u2A47" },
"⩀": { "codepoints": [10816], "characters": "\u2A40" },
"ⅅ": { "codepoints": [8517], "characters": "\u2145" },
"∩︀": { "codepoints": [8745, 65024], "characters": "\u2229\uFE00" },
"⁁": { "codepoints": [8257], "characters": "\u2041" },
"ˇ": { "codepoints": [711], "characters": "\u02C7" },
"ℭ": { "codepoints": [8493], "characters": "\u212D" },
"⩍": { "codepoints": [10829], "characters": "\u2A4D" },
"Č": { "codepoints": [268], "characters": "\u010C" },
"č": { "codepoints": [269], "characters": "\u010D" },
"Ç": { "codepoints": [199], "characters": "\u00C7" },
"Ç": { "codepoints": [199], "characters": "\u00C7" },
"ç": { "codepoints": [231], "characters": "\u00E7" },
"ç": { "codepoints": [231], "characters": "\u00E7" },
"Ĉ": { "codepoints": [264], "characters": "\u0108" },
"ĉ": { "codepoints": [265], "characters": "\u0109" },
"∰": { "codepoints": [8752], "characters": "\u2230" },
"⩌": { "codepoints": [10828], "characters": "\u2A4C" },
"⩐": { "codepoints": [10832], "characters": "\u2A50" },
"Ċ": { "codepoints": [266], "characters": "\u010A" },
"ċ": { "codepoints": [267], "characters": "\u010B" },
"¸": { "codepoints": [184], "characters": "\u00B8" },
"¸": { "codepoints": [184], "characters": "\u00B8" },
"¸": { "codepoints": [184], "characters": "\u00B8" },
"⦲": { "codepoints": [10674], "characters": "\u29B2" },
"¢": { "codepoints": [162], "characters": "\u00A2" },
"¢": { "codepoints": [162], "characters": "\u00A2" },
"·": { "codepoints": [183], "characters": "\u00B7" },
"·": { "codepoints": [183], "characters": "\u00B7" },
"𝔠": { "codepoints": [120096], "characters": "\uD835\uDD20" },
"ℭ": { "codepoints": [8493], "characters": "\u212D" },
"Ч": { "codepoints": [1063], "characters": "\u0427" },
"ч": { "codepoints": [1095], "characters": "\u0447" },
"✓": { "codepoints": [10003], "characters": "\u2713" },
"✓": { "codepoints": [10003], "characters": "\u2713" },
"Χ": { "codepoints": [935], "characters": "\u03A7" },
"χ": { "codepoints": [967], "characters": "\u03C7" },
"ˆ": { "codepoints": [710], "characters": "\u02C6" },
"≗": { "codepoints": [8791], "characters": "\u2257" },
"↺": { "codepoints": [8634], "characters": "\u21BA" },
"↻": { "codepoints": [8635], "characters": "\u21BB" },
"⊛": { "codepoints": [8859], "characters": "\u229B" },
"⊚": { "codepoints": [8858], "characters": "\u229A" },
"⊝": { "codepoints": [8861], "characters": "\u229D" },
"⊙": { "codepoints": [8857], "characters": "\u2299" },
"®": { "codepoints": [174], "characters": "\u00AE" },
"Ⓢ": { "codepoints": [9416], "characters": "\u24C8" },
"⊖": { "codepoints": [8854], "characters": "\u2296" },
"⊕": { "codepoints": [8853], "characters": "\u2295" },
"⊗": { "codepoints": [8855], "characters": "\u2297" },
"○": { "codepoints": [9675], "characters": "\u25CB" },
"⧃": { "codepoints": [10691], "characters": "\u29C3" },
"≗": { "codepoints": [8791], "characters": "\u2257" },
"⨐": { "codepoints": [10768], "characters": "\u2A10" },
"⫯": { "codepoints": [10991], "characters": "\u2AEF" },
"⧂": { "codepoints": [10690], "characters": "\u29C2" },
"∲": { "codepoints": [8754], "characters": "\u2232" },
"”": { "codepoints": [8221], "characters": "\u201D" },
"’": { "codepoints": [8217], "characters": "\u2019" },
"♣": { "codepoints": [9827], "characters": "\u2663" },
"♣": { "codepoints": [9827], "characters": "\u2663" },
":": { "codepoints": [58], "characters": "\u003A" },
"∷": { "codepoints": [8759], "characters": "\u2237" },
"⩴": { "codepoints": [10868], "characters": "\u2A74" },
"≔": { "codepoints": [8788], "characters": "\u2254" },
"≔": { "codepoints": [8788], "characters": "\u2254" },
",": { "codepoints": [44], "characters": "\u002C" },
"@": { "codepoints": [64], "characters": "\u0040" },
"∁": { "codepoints": [8705], "characters": "\u2201" },
"∘": { "codepoints": [8728], "characters": "\u2218" },
"∁": { "codepoints": [8705], "characters": "\u2201" },
"ℂ": { "codepoints": [8450], "characters": "\u2102" },
"≅": { "codepoints": [8773], "characters": "\u2245" },
"⩭": { "codepoints": [10861], "characters": "\u2A6D" },
"≡": { "codepoints": [8801], "characters": "\u2261" },
"∮": { "codepoints": [8750], "characters": "\u222E" },
"∯": { "codepoints": [8751], "characters": "\u222F" },
"∮": { "codepoints": [8750], "characters": "\u222E" },
"𝕔": { "codepoints": [120148], "characters": "\uD835\uDD54" },
"ℂ": { "codepoints": [8450], "characters": "\u2102" },
"∐": { "codepoints": [8720], "characters": "\u2210" },
"∐": { "codepoints": [8720], "characters": "\u2210" },
"©": { "codepoints": [169], "characters": "\u00A9" },
"©": { "codepoints": [169], "characters": "\u00A9" },
"©": { "codepoints": [169], "characters": "\u00A9" },
"©": { "codepoints": [169], "characters": "\u00A9" },
"℗": { "codepoints": [8471], "characters": "\u2117" },
"∳": { "codepoints": [8755], "characters": "\u2233" },
"↵": { "codepoints": [8629], "characters": "\u21B5" },
"✗": { "codepoints": [10007], "characters": "\u2717" },
"⨯": { "codepoints": [10799], "characters": "\u2A2F" },
"𝒞": { "codepoints": [119966], "characters": "\uD835\uDC9E" },
"𝒸": { "codepoints": [119992], "characters": "\uD835\uDCB8" },
"⫏": { "codepoints": [10959], "characters": "\u2ACF" },
"⫑": { "codepoints": [10961], "characters": "\u2AD1" },
"⫐": { "codepoints": [10960], "characters": "\u2AD0" },
"⫒": { "codepoints": [10962], "characters": "\u2AD2" },
"⋯": { "codepoints": [8943], "characters": "\u22EF" },
"⤸": { "codepoints": [10552], "characters": "\u2938" },
"⤵": { "codepoints": [10549], "characters": "\u2935" },
"⋞": { "codepoints": [8926], "characters": "\u22DE" },
"⋟": { "codepoints": [8927], "characters": "\u22DF" },
"↶": { "codepoints": [8630], "characters": "\u21B6" },
"⤽": { "codepoints": [10557], "characters": "\u293D" },
"⩈": { "codepoints": [10824], "characters": "\u2A48" },
"⩆": { "codepoints": [10822], "characters": "\u2A46" },
"≍": { "codepoints": [8781], "characters": "\u224D" },
"∪": { "codepoints": [8746], "characters": "\u222A" },
"⋓": { "codepoints": [8915], "characters": "\u22D3" },
"⩊": { "codepoints": [10826], "characters": "\u2A4A" },
"⊍": { "codepoints": [8845], "characters": "\u228D" },
"⩅": { "codepoints": [10821], "characters": "\u2A45" },
"∪︀": { "codepoints": [8746, 65024], "characters": "\u222A\uFE00" },
"↷": { "codepoints": [8631], "characters": "\u21B7" },
"⤼": { "codepoints": [10556], "characters": "\u293C" },
"⋞": { "codepoints": [8926], "characters": "\u22DE" },
"⋟": { "codepoints": [8927], "characters": "\u22DF" },
"⋎": { "codepoints": [8910], "characters": "\u22CE" },
"⋏": { "codepoints": [8911], "characters": "\u22CF" },
"¤": { "codepoints": [164], "characters": "\u00A4" },
"¤": { "codepoints": [164], "characters": "\u00A4" },
"↶": { "codepoints": [8630], "characters": "\u21B6" },
"↷": { "codepoints": [8631], "characters": "\u21B7" },
"⋎": { "codepoints": [8910], "characters": "\u22CE" },
"⋏": { "codepoints": [8911], "characters": "\u22CF" },
"∲": { "codepoints": [8754], "characters": "\u2232" },
"∱": { "codepoints": [8753], "characters": "\u2231" },
"⌭": { "codepoints": [9005], "characters": "\u232D" },
"†": { "codepoints": [8224], "characters": "\u2020" },
"‡": { "codepoints": [8225], "characters": "\u2021" },
"ℸ": { "codepoints": [8504], "characters": "\u2138" },
"↓": { "codepoints": [8595], "characters": "\u2193" },
"↡": { "codepoints": [8609], "characters": "\u21A1" },
"⇓": { "codepoints": [8659], "characters": "\u21D3" },
"‐": { "codepoints": [8208], "characters": "\u2010" },
"⫤": { "codepoints": [10980], "characters": "\u2AE4" },
"⊣": { "codepoints": [8867], "characters": "\u22A3" },
"⤏": { "codepoints": [10511], "characters": "\u290F" },
"˝": { "codepoints": [733], "characters": "\u02DD" },
"Ď": { "codepoints": [270], "characters": "\u010E" },
"ď": { "codepoints": [271], "characters": "\u010F" },
"Д": { "codepoints": [1044], "characters": "\u0414" },
"д": { "codepoints": [1076], "characters": "\u0434" },
"‡": { "codepoints": [8225], "characters": "\u2021" },
"⇊": { "codepoints": [8650], "characters": "\u21CA" },
"ⅅ": { "codepoints": [8517], "characters": "\u2145" },
"ⅆ": { "codepoints": [8518], "characters": "\u2146" },
"⤑": { "codepoints": [10513], "characters": "\u2911" },
"⩷": { "codepoints": [10871], "characters": "\u2A77" },
"°": { "codepoints": [176], "characters": "\u00B0" },
"°": { "codepoints": [176], "characters": "\u00B0" },
"∇": { "codepoints": [8711], "characters": "\u2207" },
"Δ": { "codepoints": [916], "characters": "\u0394" },
"δ": { "codepoints": [948], "characters": "\u03B4" },
"⦱": { "codepoints": [10673], "characters": "\u29B1" },
"⥿": { "codepoints": [10623], "characters": "\u297F" },
"𝔇": { "codepoints": [120071], "characters": "\uD835\uDD07" },
"𝔡": { "codepoints": [120097], "characters": "\uD835\uDD21" },
"⥥": { "codepoints": [10597], "characters": "\u2965" },
"⇃": { "codepoints": [8643], "characters": "\u21C3" },
"⇂": { "codepoints": [8642], "characters": "\u21C2" },
"´": { "codepoints": [180], "characters": "\u00B4" },
"˙": { "codepoints": [729], "characters": "\u02D9" },
"˝": { "codepoints": [733], "characters": "\u02DD" },
"`": { "codepoints": [96], "characters": "\u0060" },
"˜": { "codepoints": [732], "characters": "\u02DC" },
"⋄": { "codepoints": [8900], "characters": "\u22C4" },
"⋄": { "codepoints": [8900], "characters": "\u22C4" },
"⋄": { "codepoints": [8900], "characters": "\u22C4" },
"♦": { "codepoints": [9830], "characters": "\u2666" },
"♦": { "codepoints": [9830], "characters": "\u2666" },
"¨": { "codepoints": [168], "characters": "\u00A8" },
"ⅆ": { "codepoints": [8518], "characters": "\u2146" },
"ϝ": { "codepoints": [989], "characters": "\u03DD" },
"⋲": { "codepoints": [8946], "characters": "\u22F2" },
"÷": { "codepoints": [247], "characters": "\u00F7" },
"÷": { "codepoints": [247], "characters": "\u00F7" },
"÷": { "codepoints": [247], "characters": "\u00F7" },
"⋇": { "codepoints": [8903], "characters": "\u22C7" },
"⋇": { "codepoints": [8903], "characters": "\u22C7" },
"Ђ": { "codepoints": [1026], "characters": "\u0402" },
"ђ": { "codepoints": [1106], "characters": "\u0452" },
"⌞": { "codepoints": [8990], "characters": "\u231E" },
"⌍": { "codepoints": [8973], "characters": "\u230D" },
"$": { "codepoints": [36], "characters": "\u0024" },
"𝔻": { "codepoints": [120123], "characters": "\uD835\uDD3B" },
"𝕕": { "codepoints": [120149], "characters": "\uD835\uDD55" },
"¨": { "codepoints": [168], "characters": "\u00A8" },
"˙": { "codepoints": [729], "characters": "\u02D9" },
"⃜": { "codepoints": [8412], "characters": "\u20DC" },
"≐": { "codepoints": [8784], "characters": "\u2250" },
"≑": { "codepoints": [8785], "characters": "\u2251" },
"≐": { "codepoints": [8784], "characters": "\u2250" },
"∸": { "codepoints": [8760], "characters": "\u2238" },
"∔": { "codepoints": [8724], "characters": "\u2214" },
"⊡": { "codepoints": [8865], "characters": "\u22A1" },
"⌆": { "codepoints": [8966], "characters": "\u2306" },
"∯": { "codepoints": [8751], "characters": "\u222F" },
"¨": { "codepoints": [168], "characters": "\u00A8" },
"⇓": { "codepoints": [8659], "characters": "\u21D3" },
"⇐": { "codepoints": [8656], "characters": "\u21D0" },
"⇔": { "codepoints": [8660], "characters": "\u21D4" },
"⫤": { "codepoints": [10980], "characters": "\u2AE4" },
"⟸": { "codepoints": [10232], "characters": "\u27F8" },
"⟺": { "codepoints": [10234], "characters": "\u27FA" },
"⟹": { "codepoints": [10233], "characters": "\u27F9" },
"⇒": { "codepoints": [8658], "characters": "\u21D2" },
"⊨": { "codepoints": [8872], "characters": "\u22A8" },
"⇑": { "codepoints": [8657], "characters": "\u21D1" },
"⇕": { "codepoints": [8661], "characters": "\u21D5" },
"∥": { "codepoints": [8741], "characters": "\u2225" },
"⤓": { "codepoints": [10515], "characters": "\u2913" },
"↓": { "codepoints": [8595], "characters": "\u2193" },
"↓": { "codepoints": [8595], "characters": "\u2193" },
"⇓": { "codepoints": [8659], "characters": "\u21D3" },
"⇵": { "codepoints": [8693], "characters": "\u21F5" },
"̑": { "codepoints": [785], "characters": "\u0311" },
"⇊": { "codepoints": [8650], "characters": "\u21CA" },
"⇃": { "codepoints": [8643], "characters": "\u21C3" },
"⇂": { "codepoints": [8642], "characters": "\u21C2" },
"⥐": { "codepoints": [10576], "characters": "\u2950" },
"⥞": { "codepoints": [10590], "characters": "\u295E" },
"⥖": { "codepoints": [10582], "characters": "\u2956" },
"↽": { "codepoints": [8637], "characters": "\u21BD" },
"⥟": { "codepoints": [10591], "characters": "\u295F" },
"⥗": { "codepoints": [10583], "characters": "\u2957" },
"⇁": { "codepoints": [8641], "characters": "\u21C1" },
"↧": { "codepoints": [8615], "characters": "\u21A7" },
"⊤": { "codepoints": [8868], "characters": "\u22A4" },
"⤐": { "codepoints": [10512], "characters": "\u2910" },
"⌟": { "codepoints": [8991], "characters": "\u231F" },
"⌌": { "codepoints": [8972], "characters": "\u230C" },
"𝒟": { "codepoints": [119967], "characters": "\uD835\uDC9F" },
"𝒹": { "codepoints": [119993], "characters": "\uD835\uDCB9" },
"Ѕ": { "codepoints": [1029], "characters": "\u0405" },
"ѕ": { "codepoints": [1109], "characters": "\u0455" },
"⧶": { "codepoints": [10742], "characters": "\u29F6" },
"Đ": { "codepoints": [272], "characters": "\u0110" },
"đ": { "codepoints": [273], "characters": "\u0111" },
"⋱": { "codepoints": [8945], "characters": "\u22F1" },
"▿": { "codepoints": [9663], "characters": "\u25BF" },
"▾": { "codepoints": [9662], "characters": "\u25BE" },
"⇵": { "codepoints": [8693], "characters": "\u21F5" },
"⥯": { "codepoints": [10607], "characters": "\u296F" },
"⦦": { "codepoints": [10662], "characters": "\u29A6" },
"Џ": { "codepoints": [1039], "characters": "\u040F" },
"џ": { "codepoints": [1119], "characters": "\u045F" },
"⟿": { "codepoints": [10239], "characters": "\u27FF" },
"É": { "codepoints": [201], "characters": "\u00C9" },
"É": { "codepoints": [201], "characters": "\u00C9" },
"é": { "codepoints": [233], "characters": "\u00E9" },
"é": { "codepoints": [233], "characters": "\u00E9" },
"⩮": { "codepoints": [10862], "characters": "\u2A6E" },
"Ě": { "codepoints": [282], "characters": "\u011A" },
"ě": { "codepoints": [283], "characters": "\u011B" },
"Ê": { "codepoints": [202], "characters": "\u00CA" },
"Ê": { "codepoints": [202], "characters": "\u00CA" },
"ê": { "codepoints": [234], "characters": "\u00EA" },
"ê": { "codepoints": [234], "characters": "\u00EA" },
"≖": { "codepoints": [8790], "characters": "\u2256" },
"≕": { "codepoints": [8789], "characters": "\u2255" },
"Э": { "codepoints": [1069], "characters": "\u042D" },
"э": { "codepoints": [1101], "characters": "\u044D" },
"⩷": { "codepoints": [10871], "characters": "\u2A77" },
"Ė": { "codepoints": [278], "characters": "\u0116" },
"ė": { "codepoints": [279], "characters": "\u0117" },
"≑": { "codepoints": [8785], "characters": "\u2251" },
"ⅇ": { "codepoints": [8519], "characters": "\u2147" },
"≒": { "codepoints": [8786], "characters": "\u2252" },
"𝔈": { "codepoints": [120072], "characters": "\uD835\uDD08" },
"𝔢": { "codepoints": [120098], "characters": "\uD835\uDD22" },
"⪚": { "codepoints": [10906], "characters": "\u2A9A" },
"È": { "codepoints": [200], "characters": "\u00C8" },
"È": { "codepoints": [200], "characters": "\u00C8" },
"è": { "codepoints": [232], "characters": "\u00E8" },
"è": { "codepoints": [232], "characters": "\u00E8" },
"⪖": { "codepoints": [10902], "characters": "\u2A96" },
"⪘": { "codepoints": [10904], "characters": "\u2A98" },
"⪙": { "codepoints": [10905], "characters": "\u2A99" },
"∈": { "codepoints": [8712], "characters": "\u2208" },
"⏧": { "codepoints": [9191], "characters": "\u23E7" },
"ℓ": { "codepoints": [8467], "characters": "\u2113" },
"⪕": { "codepoints": [10901], "characters": "\u2A95" },
"⪗": { "codepoints": [10903], "characters": "\u2A97" },
"Ē": { "codepoints": [274], "characters": "\u0112" },
"ē": { "codepoints": [275], "characters": "\u0113" },
"∅": { "codepoints": [8709], "characters": "\u2205" },
"∅": { "codepoints": [8709], "characters": "\u2205" },
"◻": { "codepoints": [9723], "characters": "\u25FB" },
"∅": { "codepoints": [8709], "characters": "\u2205" },
"▫": { "codepoints": [9643], "characters": "\u25AB" },
" ": { "codepoints": [8196], "characters": "\u2004" },
" ": { "codepoints": [8197], "characters": "\u2005" },
" ": { "codepoints": [8195], "characters": "\u2003" },
"Ŋ": { "codepoints": [330], "characters": "\u014A" },
"ŋ": { "codepoints": [331], "characters": "\u014B" },
" ": { "codepoints": [8194], "characters": "\u2002" },
"Ę": { "codepoints": [280], "characters": "\u0118" },
"ę": { "codepoints": [281], "characters": "\u0119" },
"𝔼": { "codepoints": [120124], "characters": "\uD835\uDD3C" },
"𝕖": { "codepoints": [120150], "characters": "\uD835\uDD56" },
"⋕": { "codepoints": [8917], "characters": "\u22D5" },
"⧣": { "codepoints": [10723], "characters": "\u29E3" },
"⩱": { "codepoints": [10865], "characters": "\u2A71" },
"ε": { "codepoints": [949], "characters": "\u03B5" },
"Ε": { "codepoints": [917], "characters": "\u0395" },
"ε": { "codepoints": [949], "characters": "\u03B5" },
"ϵ": { "codepoints": [1013], "characters": "\u03F5" },
"≖": { "codepoints": [8790], "characters": "\u2256" },
"≕": { "codepoints": [8789], "characters": "\u2255" },
"≂": { "codepoints": [8770], "characters": "\u2242" },
"⪖": { "codepoints": [10902], "characters": "\u2A96" },
"⪕": { "codepoints": [10901], "characters": "\u2A95" },
"⩵": { "codepoints": [10869], "characters": "\u2A75" },
"=": { "codepoints": [61], "characters": "\u003D" },
"≂": { "codepoints": [8770], "characters": "\u2242" },
"≟": { "codepoints": [8799], "characters": "\u225F" },
"⇌": { "codepoints": [8652], "characters": "\u21CC" },
"≡": { "codepoints": [8801], "characters": "\u2261" },
"⩸": { "codepoints": [10872], "characters": "\u2A78" },
"⧥": { "codepoints": [10725], "characters": "\u29E5" },
"⥱": { "codepoints": [10609], "characters": "\u2971" },
"≓": { "codepoints": [8787], "characters": "\u2253" },
"ℯ": { "codepoints": [8495], "characters": "\u212F" },
"ℰ": { "codepoints": [8496], "characters": "\u2130" },
"≐": { "codepoints": [8784], "characters": "\u2250" },
"⩳": { "codepoints": [10867], "characters": "\u2A73" },
"≂": { "codepoints": [8770], "characters": "\u2242" },
"Η": { "codepoints": [919], "characters": "\u0397" },
"η": { "codepoints": [951], "characters": "\u03B7" },
"Ð": { "codepoints": [208], "characters": "\u00D0" },
"Ð": { "codepoints": [208], "characters": "\u00D0" },
"ð": { "codepoints": [240], "characters": "\u00F0" },
"ð": { "codepoints": [240], "characters": "\u00F0" },
"Ë": { "codepoints": [203], "characters": "\u00CB" },
"Ë": { "codepoints": [203], "characters": "\u00CB" },
"ë": { "codepoints": [235], "characters": "\u00EB" },
"ë": { "codepoints": [235], "characters": "\u00EB" },
"€": { "codepoints": [8364], "characters": "\u20AC" },
"!": { "codepoints": [33], "characters": "\u0021" },
"∃": { "codepoints": [8707], "characters": "\u2203" },
"∃": { "codepoints": [8707], "characters": "\u2203" },
"ℰ": { "codepoints": [8496], "characters": "\u2130" },
"ⅇ": { "codepoints": [8519], "characters": "\u2147" },
"ⅇ": { "codepoints": [8519], "characters": "\u2147" },
"≒": { "codepoints": [8786], "characters": "\u2252" },
"Ф": { "codepoints": [1060], "characters": "\u0424" },
"ф": { "codepoints": [1092], "characters": "\u0444" },
"♀": { "codepoints": [9792], "characters": "\u2640" },
"ffi": { "codepoints": [64259], "characters": "\uFB03" },
"ff": { "codepoints": [64256], "characters": "\uFB00" },
"ffl": { "codepoints": [64260], "characters": "\uFB04" },
"𝔉": { "codepoints": [120073], "characters": "\uD835\uDD09" },
"𝔣": { "codepoints": [120099], "characters": "\uD835\uDD23" },
"fi": { "codepoints": [64257], "characters": "\uFB01" },
"◼": { "codepoints": [9724], "characters": "\u25FC" },
"▪": { "codepoints": [9642], "characters": "\u25AA" },
"fj": { "codepoints": [102, 106], "characters": "\u0066\u006A" },
"♭": { "codepoints": [9837], "characters": "\u266D" },
"fl": { "codepoints": [64258], "characters": "\uFB02" },
"▱": { "codepoints": [9649], "characters": "\u25B1" },
"ƒ": { "codepoints": [402], "characters": "\u0192" },
"𝔽": { "codepoints": [120125], "characters": "\uD835\uDD3D" },
"𝕗": { "codepoints": [120151], "characters": "\uD835\uDD57" },
"∀": { "codepoints": [8704], "characters": "\u2200" },
"∀": { "codepoints": [8704], "characters": "\u2200" },
"⋔": { "codepoints": [8916], "characters": "\u22D4" },
"⫙": { "codepoints": [10969], "characters": "\u2AD9" },
"ℱ": { "codepoints": [8497], "characters": "\u2131" },
"⨍": { "codepoints": [10765], "characters": "\u2A0D" },
"½": { "codepoints": [189], "characters": "\u00BD" },
"½": { "codepoints": [189], "characters": "\u00BD" },
"⅓": { "codepoints": [8531], "characters": "\u2153" },
"¼": { "codepoints": [188], "characters": "\u00BC" },
"¼": { "codepoints": [188], "characters": "\u00BC" },
"⅕": { "codepoints": [8533], "characters": "\u2155" },
"⅙": { "codepoints": [8537], "characters": "\u2159" },
"⅛": { "codepoints": [8539], "characters": "\u215B" },
"⅔": { "codepoints": [8532], "characters": "\u2154" },
"⅖": { "codepoints": [8534], "characters": "\u2156" },
"¾": { "codepoints": [190], "characters": "\u00BE" },
"¾": { "codepoints": [190], "characters": "\u00BE" },
"⅗": { "codepoints": [8535], "characters": "\u2157" },
"⅜": { "codepoints": [8540], "characters": "\u215C" },
"⅘": { "codepoints": [8536], "characters": "\u2158" },
"⅚": { "codepoints": [8538], "characters": "\u215A" },
"⅝": { "codepoints": [8541], "characters": "\u215D" },
"⅞": { "codepoints": [8542], "characters": "\u215E" },
"⁄": { "codepoints": [8260], "characters": "\u2044" },
"⌢": { "codepoints": [8994], "characters": "\u2322" },
"𝒻": { "codepoints": [119995], "characters": "\uD835\uDCBB" },
"ℱ": { "codepoints": [8497], "characters": "\u2131" },
"ǵ": { "codepoints": [501], "characters": "\u01F5" },
"Γ": { "codepoints": [915], "characters": "\u0393" },
"γ": { "codepoints": [947], "characters": "\u03B3" },
"Ϝ": { "codepoints": [988], "characters": "\u03DC" },
"ϝ": { "codepoints": [989], "characters": "\u03DD" },
"⪆": { "codepoints": [10886], "characters": "\u2A86" },
"Ğ": { "codepoints": [286], "characters": "\u011E" },
"ğ": { "codepoints": [287], "characters": "\u011F" },
"Ģ": { "codepoints": [290], "characters": "\u0122" },
"Ĝ": { "codepoints": [284], "characters": "\u011C" },
"ĝ": { "codepoints": [285], "characters": "\u011D" },
"Г": { "codepoints": [1043], "characters": "\u0413" },
"г": { "codepoints": [1075], "characters": "\u0433" },
"Ġ": { "codepoints": [288], "characters": "\u0120" },
"ġ": { "codepoints": [289], "characters": "\u0121" },
"≥": { "codepoints": [8805], "characters": "\u2265" },
"≧": { "codepoints": [8807], "characters": "\u2267" },
"⪌": { "codepoints": [10892], "characters": "\u2A8C" },
"⋛": { "codepoints": [8923], "characters": "\u22DB" },
"≥": { "codepoints": [8805], "characters": "\u2265" },
"≧": { "codepoints": [8807], "characters": "\u2267" },
"⩾": { "codepoints": [10878], "characters": "\u2A7E" },
"⪩": { "codepoints": [10921], "characters": "\u2AA9" },
"⩾": { "codepoints": [10878], "characters": "\u2A7E" },
"⪀": { "codepoints": [10880], "characters": "\u2A80" },
"⪂": { "codepoints": [10882], "characters": "\u2A82" },
"⪄": { "codepoints": [10884], "characters": "\u2A84" },
"⋛︀": { "codepoints": [8923, 65024], "characters": "\u22DB\uFE00" },
"⪔": { "codepoints": [10900], "characters": "\u2A94" },
"𝔊": { "codepoints": [120074], "characters": "\uD835\uDD0A" },
"𝔤": { "codepoints": [120100], "characters": "\uD835\uDD24" },
"≫": { "codepoints": [8811], "characters": "\u226B" },
"⋙": { "codepoints": [8921], "characters": "\u22D9" },
"⋙": { "codepoints": [8921], "characters": "\u22D9" },
"ℷ": { "codepoints": [8503], "characters": "\u2137" },
"Ѓ": { "codepoints": [1027], "characters": "\u0403" },
"ѓ": { "codepoints": [1107], "characters": "\u0453" },
"⪥": { "codepoints": [10917], "characters": "\u2AA5" },
"≷": { "codepoints": [8823], "characters": "\u2277" },
"⪒": { "codepoints": [10898], "characters": "\u2A92" },
"⪤": { "codepoints": [10916], "characters": "\u2AA4" },
"⪊": { "codepoints": [10890], "characters": "\u2A8A" },
"⪊": { "codepoints": [10890], "characters": "\u2A8A" },
"⪈": { "codepoints": [10888], "characters": "\u2A88" },
"≩": { "codepoints": [8809], "characters": "\u2269" },
"⪈": { "codepoints": [10888], "characters": "\u2A88" },
"≩": { "codepoints": [8809], "characters": "\u2269" },
"⋧": { "codepoints": [8935], "characters": "\u22E7" },
"𝔾": { "codepoints": [120126], "characters": "\uD835\uDD3E" },
"𝕘": { "codepoints": [120152], "characters": "\uD835\uDD58" },
"`": { "codepoints": [96], "characters": "\u0060" },
"≥": { "codepoints": [8805], "characters": "\u2265" },
"⋛": { "codepoints": [8923], "characters": "\u22DB" },
"≧": { "codepoints": [8807], "characters": "\u2267" },
"⪢": { "codepoints": [10914], "characters": "\u2AA2" },
"≷": { "codepoints": [8823], "characters": "\u2277" },
"⩾": { "codepoints": [10878], "characters": "\u2A7E" },
"≳": { "codepoints": [8819], "characters": "\u2273" },
"𝒢": { "codepoints": [119970], "characters": "\uD835\uDCA2" },
"ℊ": { "codepoints": [8458], "characters": "\u210A" },
"≳": { "codepoints": [8819], "characters": "\u2273" },
"⪎": { "codepoints": [10894], "characters": "\u2A8E" },
"⪐": { "codepoints": [10896], "characters": "\u2A90" },
"⪧": { "codepoints": [10919], "characters": "\u2AA7" },
"⩺": { "codepoints": [10874], "characters": "\u2A7A" },
">": { "codepoints": [62], "characters": "\u003E" },
">": { "codepoints": [62], "characters": "\u003E" },
">": { "codepoints": [62], "characters": "\u003E" },
">": { "codepoints": [62], "characters": "\u003E" },
"≫": { "codepoints": [8811], "characters": "\u226B" },
"⋗": { "codepoints": [8919], "characters": "\u22D7" },
"⦕": { "codepoints": [10645], "characters": "\u2995" },
"⩼": { "codepoints": [10876], "characters": "\u2A7C" },
"⪆": { "codepoints": [10886], "characters": "\u2A86" },
"⥸": { "codepoints": [10616], "characters": "\u2978" },
"⋗": { "codepoints": [8919], "characters": "\u22D7" },
"⋛": { "codepoints": [8923], "characters": "\u22DB" },
"⪌": { "codepoints": [10892], "characters": "\u2A8C" },
"≷": { "codepoints": [8823], "characters": "\u2277" },
"≳": { "codepoints": [8819], "characters": "\u2273" },
"≩︀": { "codepoints": [8809, 65024], "characters": "\u2269\uFE00" },
"≩︀": { "codepoints": [8809, 65024], "characters": "\u2269\uFE00" },
"ˇ": { "codepoints": [711], "characters": "\u02C7" },
" ": { "codepoints": [8202], "characters": "\u200A" },
"½": { "codepoints": [189], "characters": "\u00BD" },
"ℋ": { "codepoints": [8459], "characters": "\u210B" },
"Ъ": { "codepoints": [1066], "characters": "\u042A" },
"ъ": { "codepoints": [1098], "characters": "\u044A" },
"⥈": { "codepoints": [10568], "characters": "\u2948" },
"↔": { "codepoints": [8596], "characters": "\u2194" },
"⇔": { "codepoints": [8660], "characters": "\u21D4" },
"↭": { "codepoints": [8621], "characters": "\u21AD" },
"^": { "codepoints": [94], "characters": "\u005E" },
"ℏ": { "codepoints": [8463], "characters": "\u210F" },
"Ĥ": { "codepoints": [292], "characters": "\u0124" },
"ĥ": { "codepoints": [293], "characters": "\u0125" },
"♥": { "codepoints": [9829], "characters": "\u2665" },
"♥": { "codepoints": [9829], "characters": "\u2665" },
"…": { "codepoints": [8230], "characters": "\u2026" },
"⊹": { "codepoints": [8889], "characters": "\u22B9" },
"𝔥": { "codepoints": [120101], "characters": "\uD835\uDD25" },
"ℌ": { "codepoints": [8460], "characters": "\u210C" },
"ℋ": { "codepoints": [8459], "characters": "\u210B" },
"⤥": { "codepoints": [10533], "characters": "\u2925" },
"⤦": { "codepoints": [10534], "characters": "\u2926" },
"⇿": { "codepoints": [8703], "characters": "\u21FF" },
"∻": { "codepoints": [8763], "characters": "\u223B" },
"↩": { "codepoints": [8617], "characters": "\u21A9" },
"↪": { "codepoints": [8618], "characters": "\u21AA" },
"𝕙": { "codepoints": [120153], "characters": "\uD835\uDD59" },
"ℍ": { "codepoints": [8461], "characters": "\u210D" },
"―": { "codepoints": [8213], "characters": "\u2015" },
"─": { "codepoints": [9472], "characters": "\u2500" },
"𝒽": { "codepoints": [119997], "characters": "\uD835\uDCBD" },
"ℋ": { "codepoints": [8459], "characters": "\u210B" },
"ℏ": { "codepoints": [8463], "characters": "\u210F" },
"Ħ": { "codepoints": [294], "characters": "\u0126" },
"ħ": { "codepoints": [295], "characters": "\u0127" },
"≎": { "codepoints": [8782], "characters": "\u224E" },
"≏": { "codepoints": [8783], "characters": "\u224F" },
"⁃": { "codepoints": [8259], "characters": "\u2043" },
"‐": { "codepoints": [8208], "characters": "\u2010" },
"Í": { "codepoints": [205], "characters": "\u00CD" },
"Í": { "codepoints": [205], "characters": "\u00CD" },
"í": { "codepoints": [237], "characters": "\u00ED" },
"í": { "codepoints": [237], "characters": "\u00ED" },
"⁣": { "codepoints": [8291], "characters": "\u2063" },
"Î": { "codepoints": [206], "characters": "\u00CE" },
"Î": { "codepoints": [206], "characters": "\u00CE" },
"î": { "codepoints": [238], "characters": "\u00EE" },
"î": { "codepoints": [238], "characters": "\u00EE" },
"И": { "codepoints": [1048], "characters": "\u0418" },
"и": { "codepoints": [1080], "characters": "\u0438" },
"İ": { "codepoints": [304], "characters": "\u0130" },
"Е": { "codepoints": [1045], "characters": "\u0415" },
"е": { "codepoints": [1077], "characters": "\u0435" },
"¡": { "codepoints": [161], "characters": "\u00A1" },
"¡": { "codepoints": [161], "characters": "\u00A1" },
"⇔": { "codepoints": [8660], "characters": "\u21D4" },
"𝔦": { "codepoints": [120102], "characters": "\uD835\uDD26" },
"ℑ": { "codepoints": [8465], "characters": "\u2111" },
"Ì": { "codepoints": [204], "characters": "\u00CC" },
"Ì": { "codepoints": [204], "characters": "\u00CC" },
"ì": { "codepoints": [236], "characters": "\u00EC" },
"ì": { "codepoints": [236], "characters": "\u00EC" },
"ⅈ": { "codepoints": [8520], "characters": "\u2148" },
"⨌": { "codepoints": [10764], "characters": "\u2A0C" },
"∭": { "codepoints": [8749], "characters": "\u222D" },
"⧜": { "codepoints": [10716], "characters": "\u29DC" },
"℩": { "codepoints": [8489], "characters": "\u2129" },
"IJ": { "codepoints": [306], "characters": "\u0132" },
"ij": { "codepoints": [307], "characters": "\u0133" },
"Ī": { "codepoints": [298], "characters": "\u012A" },
"ī": { "codepoints": [299], "characters": "\u012B" },
"ℑ": { "codepoints": [8465], "characters": "\u2111" },
"ⅈ": { "codepoints": [8520], "characters": "\u2148" },
"ℐ": { "codepoints": [8464], "characters": "\u2110" },
"ℑ": { "codepoints": [8465], "characters": "\u2111" },
"ı": { "codepoints": [305], "characters": "\u0131" },
"ℑ": { "codepoints": [8465], "characters": "\u2111" },
"⊷": { "codepoints": [8887], "characters": "\u22B7" },
"Ƶ": { "codepoints": [437], "characters": "\u01B5" },
"⇒": { "codepoints": [8658], "characters": "\u21D2" },
"℅": { "codepoints": [8453], "characters": "\u2105" },
"∈": { "codepoints": [8712], "characters": "\u2208" },
"∞": { "codepoints": [8734], "characters": "\u221E" },
"⧝": { "codepoints": [10717], "characters": "\u29DD" },
"ı": { "codepoints": [305], "characters": "\u0131" },
"⊺": { "codepoints": [8890], "characters": "\u22BA" },
"∫": { "codepoints": [8747], "characters": "\u222B" },
"∬": { "codepoints": [8748], "characters": "\u222C" },
"ℤ": { "codepoints": [8484], "characters": "\u2124" },
"∫": { "codepoints": [8747], "characters": "\u222B" },
"⊺": { "codepoints": [8890], "characters": "\u22BA" },
"⋂": { "codepoints": [8898], "characters": "\u22C2" },
"⨗": { "codepoints": [10775], "characters": "\u2A17" },
"⨼": { "codepoints": [10812], "characters": "\u2A3C" },
"⁣": { "codepoints": [8291], "characters": "\u2063" },
"⁢": { "codepoints": [8290], "characters": "\u2062" },
"Ё": { "codepoints": [1025], "characters": "\u0401" },
"ё": { "codepoints": [1105], "characters": "\u0451" },
"Į": { "codepoints": [302], "characters": "\u012E" },
"į": { "codepoints": [303], "characters": "\u012F" },
"𝕀": { "codepoints": [120128], "characters": "\uD835\uDD40" },
"𝕚": { "codepoints": [120154], "characters": "\uD835\uDD5A" },
"Ι": { "codepoints": [921], "characters": "\u0399" },
"ι": { "codepoints": [953], "characters": "\u03B9" },
"⨼": { "codepoints": [10812], "characters": "\u2A3C" },
"¿": { "codepoints": [191], "characters": "\u00BF" },
"¿": { "codepoints": [191], "characters": "\u00BF" },
"𝒾": { "codepoints": [119998], "characters": "\uD835\uDCBE" },
"ℐ": { "codepoints": [8464], "characters": "\u2110" },
"∈": { "codepoints": [8712], "characters": "\u2208" },
"⋵": { "codepoints": [8949], "characters": "\u22F5" },
"⋹": { "codepoints": [8953], "characters": "\u22F9" },
"⋴": { "codepoints": [8948], "characters": "\u22F4" },
"⋳": { "codepoints": [8947], "characters": "\u22F3" },
"∈": { "codepoints": [8712], "characters": "\u2208" },
"⁢": { "codepoints": [8290], "characters": "\u2062" },
"Ĩ": { "codepoints": [296], "characters": "\u0128" },
"ĩ": { "codepoints": [297], "characters": "\u0129" },
"І": { "codepoints": [1030], "characters": "\u0406" },
"і": { "codepoints": [1110], "characters": "\u0456" },
"Ï": { "codepoints": [207], "characters": "\u00CF" },
"Ï": { "codepoints": [207], "characters": "\u00CF" },
"ï": { "codepoints": [239], "characters": "\u00EF" },
"ï": { "codepoints": [239], "characters": "\u00EF" },
"Ĵ": { "codepoints": [308], "characters": "\u0134" },
"ĵ": { "codepoints": [309], "characters": "\u0135" },
"Й": { "codepoints": [1049], "characters": "\u0419" },
"й": { "codepoints": [1081], "characters": "\u0439" },
"𝔍": { "codepoints": [120077], "characters": "\uD835\uDD0D" },
"𝔧": { "codepoints": [120103], "characters": "\uD835\uDD27" },
"ȷ": { "codepoints": [567], "characters": "\u0237" },
"𝕁": { "codepoints": [120129], "characters": "\uD835\uDD41" },
"𝕛": { "codepoints": [120155], "characters": "\uD835\uDD5B" },
"𝒥": { "codepoints": [119973], "characters": "\uD835\uDCA5" },
"𝒿": { "codepoints": [119999], "characters": "\uD835\uDCBF" },
"Ј": { "codepoints": [1032], "characters": "\u0408" },
"ј": { "codepoints": [1112], "characters": "\u0458" },
"Є": { "codepoints": [1028], "characters": "\u0404" },
"є": { "codepoints": [1108], "characters": "\u0454" },
"Κ": { "codepoints": [922], "characters": "\u039A" },
"κ": { "codepoints": [954], "characters": "\u03BA" },
"ϰ": { "codepoints": [1008], "characters": "\u03F0" },
"Ķ": { "codepoints": [310], "characters": "\u0136" },
"ķ": { "codepoints": [311], "characters": "\u0137" },
"К": { "codepoints": [1050], "characters": "\u041A" },
"к": { "codepoints": [1082], "characters": "\u043A" },
"𝔎": { "codepoints": [120078], "characters": "\uD835\uDD0E" },
"𝔨": { "codepoints": [120104], "characters": "\uD835\uDD28" },
"ĸ": { "codepoints": [312], "characters": "\u0138" },
"Х": { "codepoints": [1061], "characters": "\u0425" },
"х": { "codepoints": [1093], "characters": "\u0445" },
"Ќ": { "codepoints": [1036], "characters": "\u040C" },
"ќ": { "codepoints": [1116], "characters": "\u045C" },
"𝕂": { "codepoints": [120130], "characters": "\uD835\uDD42" },
"𝕜": { "codepoints": [120156], "characters": "\uD835\uDD5C" },
"𝒦": { "codepoints": [119974], "characters": "\uD835\uDCA6" },
"𝓀": { "codepoints": [120000], "characters": "\uD835\uDCC0" },
"⇚": { "codepoints": [8666], "characters": "\u21DA" },
"Ĺ": { "codepoints": [313], "characters": "\u0139" },
"ĺ": { "codepoints": [314], "characters": "\u013A" },
"⦴": { "codepoints": [10676], "characters": "\u29B4" },
"ℒ": { "codepoints": [8466], "characters": "\u2112" },
"Λ": { "codepoints": [923], "characters": "\u039B" },
"λ": { "codepoints": [955], "characters": "\u03BB" },
"⟨": { "codepoints": [10216], "characters": "\u27E8" },
"⟪": { "codepoints": [10218], "characters": "\u27EA" },
"⦑": { "codepoints": [10641], "characters": "\u2991" },
"⟨": { "codepoints": [10216], "characters": "\u27E8" },
"⪅": { "codepoints": [10885], "characters": "\u2A85" },
"ℒ": { "codepoints": [8466], "characters": "\u2112" },
"«": { "codepoints": [171], "characters": "\u00AB" },
"«": { "codepoints": [171], "characters": "\u00AB" },
"⇤": { "codepoints": [8676], "characters": "\u21E4" },
"⤟": { "codepoints": [10527], "characters": "\u291F" },
"←": { "codepoints": [8592], "characters": "\u2190" },
"↞": { "codepoints": [8606], "characters": "\u219E" },
"⇐": { "codepoints": [8656], "characters": "\u21D0" },
"⤝": { "codepoints": [10525], "characters": "\u291D" },
"↩": { "codepoints": [8617], "characters": "\u21A9" },
"↫": { "codepoints": [8619], "characters": "\u21AB" },
"⤹": { "codepoints": [10553], "characters": "\u2939" },
"⥳": { "codepoints": [10611], "characters": "\u2973" },
"↢": { "codepoints": [8610], "characters": "\u21A2" },
"⤙": { "codepoints": [10521], "characters": "\u2919" },
"⤛": { "codepoints": [10523], "characters": "\u291B" },
"⪫": { "codepoints": [10923], "characters": "\u2AAB" },
"⪭": { "codepoints": [10925], "characters": "\u2AAD" },
"⪭︀": { "codepoints": [10925, 65024], "characters": "\u2AAD\uFE00" },
"⤌": { "codepoints": [10508], "characters": "\u290C" },
"⤎": { "codepoints": [10510], "characters": "\u290E" },
"❲": { "codepoints": [10098], "characters": "\u2772" },
"{": { "codepoints": [123], "characters": "\u007B" },
"[": { "codepoints": [91], "characters": "\u005B" },
"⦋": { "codepoints": [10635], "characters": "\u298B" },
"⦏": { "codepoints": [10639], "characters": "\u298F" },
"⦍": { "codepoints": [10637], "characters": "\u298D" },
"Ľ": { "codepoints": [317], "characters": "\u013D" },
"ľ": { "codepoints": [318], "characters": "\u013E" },
"Ļ": { "codepoints": [315], "characters": "\u013B" },
"ļ": { "codepoints": [316], "characters": "\u013C" },
"⌈": { "codepoints": [8968], "characters": "\u2308" },
"{": { "codepoints": [123], "characters": "\u007B" },
"Л": { "codepoints": [1051], "characters": "\u041B" },
"л": { "codepoints": [1083], "characters": "\u043B" },
"⤶": { "codepoints": [10550], "characters": "\u2936" },
"“": { "codepoints": [8220], "characters": "\u201C" },
"„": { "codepoints": [8222], "characters": "\u201E" },
"⥧": { "codepoints": [10599], "characters": "\u2967" },
"⥋": { "codepoints": [10571], "characters": "\u294B" },
"↲": { "codepoints": [8626], "characters": "\u21B2" },
"≤": { "codepoints": [8804], "characters": "\u2264" },
"≦": { "codepoints": [8806], "characters": "\u2266" },
"⟨": { "codepoints": [10216], "characters": "\u27E8" },
"⇤": { "codepoints": [8676], "characters": "\u21E4" },
"←": { "codepoints": [8592], "characters": "\u2190" },
"←": { "codepoints": [8592], "characters": "\u2190" },
"⇐": { "codepoints": [8656], "characters": "\u21D0" },
"⇆": { "codepoints": [8646], "characters": "\u21C6" },
"↢": { "codepoints": [8610], "characters": "\u21A2" },
"⌈": { "codepoints": [8968], "characters": "\u2308" },
"⟦": { "codepoints": [10214], "characters": "\u27E6" },
"⥡": { "codepoints": [10593], "characters": "\u2961" },
"⥙": { "codepoints": [10585], "characters": "\u2959" },
"⇃": { "codepoints": [8643], "characters": "\u21C3" },
"⌊": { "codepoints": [8970], "characters": "\u230A" },
"↽": { "codepoints": [8637], "characters": "\u21BD" },
"↼": { "codepoints": [8636], "characters": "\u21BC" },
"⇇": { "codepoints": [8647], "characters": "\u21C7" },
"↔": { "codepoints": [8596], "characters": "\u2194" },
"↔": { "codepoints": [8596], "characters": "\u2194" },
"⇔": { "codepoints": [8660], "characters": "\u21D4" },
"⇆": { "codepoints": [8646], "characters": "\u21C6" },
"⇋": { "codepoints": [8651], "characters": "\u21CB" },
"↭": { "codepoints": [8621], "characters": "\u21AD" },
"⥎": { "codepoints": [10574], "characters": "\u294E" },
"↤": { "codepoints": [8612], "characters": "\u21A4" },
"⊣": { "codepoints": [8867], "characters": "\u22A3" },
"⥚": { "codepoints": [10586], "characters": "\u295A" },
"⋋": { "codepoints": [8907], "characters": "\u22CB" },
"⧏": { "codepoints": [10703], "characters": "\u29CF" },
"⊲": { "codepoints": [8882], "characters": "\u22B2" },
"⊴": { "codepoints": [8884], "characters": "\u22B4" },
"⥑": { "codepoints": [10577], "characters": "\u2951" },
"⥠": { "codepoints": [10592], "characters": "\u2960" },
"⥘": { "codepoints": [10584], "characters": "\u2958" },
"↿": { "codepoints": [8639], "characters": "\u21BF" },
"⥒": { "codepoints": [10578], "characters": "\u2952" },
"↼": { "codepoints": [8636], "characters": "\u21BC" },
"⪋": { "codepoints": [10891], "characters": "\u2A8B" },
"⋚": { "codepoints": [8922], "characters": "\u22DA" },
"≤": { "codepoints": [8804], "characters": "\u2264" },
"≦": { "codepoints": [8806], "characters": "\u2266" },
"⩽": { "codepoints": [10877], "characters": "\u2A7D" },
"⪨": { "codepoints": [10920], "characters": "\u2AA8" },
"⩽": { "codepoints": [10877], "characters": "\u2A7D" },
"⩿": { "codepoints": [10879], "characters": "\u2A7F" },
"⪁": { "codepoints": [10881], "characters": "\u2A81" },
"⪃": { "codepoints": [10883], "characters": "\u2A83" },
"⋚︀": { "codepoints": [8922, 65024], "characters": "\u22DA\uFE00" },
"⪓": { "codepoints": [10899], "characters": "\u2A93" },
"⪅": { "codepoints": [10885], "characters": "\u2A85" },
"⋖": { "codepoints": [8918], "characters": "\u22D6" },
"⋚": { "codepoints": [8922], "characters": "\u22DA" },
"⪋": { "codepoints": [10891], "characters": "\u2A8B" },
"⋚": { "codepoints": [8922], "characters": "\u22DA" },
"≦": { "codepoints": [8806], "characters": "\u2266" },
"≶": { "codepoints": [8822], "characters": "\u2276" },
"≶": { "codepoints": [8822], "characters": "\u2276" },
"⪡": { "codepoints": [10913], "characters": "\u2AA1" },
"≲": { "codepoints": [8818], "characters": "\u2272" },
"⩽": { "codepoints": [10877], "characters": "\u2A7D" },
"≲": { "codepoints": [8818], "characters": "\u2272" },
"⥼": { "codepoints": [10620], "characters": "\u297C" },
"⌊": { "codepoints": [8970], "characters": "\u230A" },
"𝔏": { "codepoints": [120079], "characters": "\uD835\uDD0F" },
"𝔩": { "codepoints": [120105], "characters": "\uD835\uDD29" },
"≶": { "codepoints": [8822], "characters": "\u2276" },
"⪑": { "codepoints": [10897], "characters": "\u2A91" },
"⥢": { "codepoints": [10594], "characters": "\u2962" },
"↽": { "codepoints": [8637], "characters": "\u21BD" },
"↼": { "codepoints": [8636], "characters": "\u21BC" },
"⥪": { "codepoints": [10602], "characters": "\u296A" },
"▄": { "codepoints": [9604], "characters": "\u2584" },
"Љ": { "codepoints": [1033], "characters": "\u0409" },
"љ": { "codepoints": [1113], "characters": "\u0459" },
"⇇": { "codepoints": [8647], "characters": "\u21C7" },
"≪": { "codepoints": [8810], "characters": "\u226A" },
"⋘": { "codepoints": [8920], "characters": "\u22D8" },
"⌞": { "codepoints": [8990], "characters": "\u231E" },
"⇚": { "codepoints": [8666], "characters": "\u21DA" },
"⥫": { "codepoints": [10603], "characters": "\u296B" },
"◺": { "codepoints": [9722], "characters": "\u25FA" },
"Ŀ": { "codepoints": [319], "characters": "\u013F" },