forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-entities.edn
2233 lines (2233 loc) · 117 KB
/
html-entities.edn
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 [8291], :characters ""},
"⥱" {:codepoints [10609], :characters "⥱"},
"⧁" {:codepoints [10689], :characters "⧁"},
"↶" {:codepoints [8630], :characters "↶"},
"ℳ" {:codepoints [8499], :characters "ℳ"},
"ÿ" {:codepoints [255], :characters "ÿ"},
"⨻" {:codepoints [10811], :characters "⨻"},
"⤳" {:codepoints [10547], :characters "⤳"},
"⋪" {:codepoints [8938], :characters "⋪"},
"ℶ" {:codepoints [8502], :characters "ℶ"},
"𝒮" {:codepoints [119982], :characters "𝒮"},
"⊅" {:codepoints [8837], :characters "⊅"},
"€" {:codepoints [8364], :characters "€"},
"ľ" {:codepoints [318], :characters "ľ"},
"↙" {:codepoints [8601], :characters "↙"},
"≤" {:codepoints [8804], :characters "≤"},
"𝒞" {:codepoints [119966], :characters "𝒞"},
"⤧" {:codepoints [10535], :characters "⤧"},
"Ж" {:codepoints [1046], :characters "Ж"},
"©" {:codepoints [169], :characters "©"},
"∖" {:codepoints [8726], :characters "∖"},
"≂" {:codepoints [8770], :characters "≂"},
"✠" {:codepoints [10016], :characters "✠"},
"Ρ" {:codepoints [929], :characters "Ρ"},
"𝔬" {:codepoints [120108], :characters "𝔬"},
"⟹" {:codepoints [10233], :characters "⟹"},
"⇌" {:codepoints [8652], :characters "⇌"},
"⩻" {:codepoints [10875], :characters "⩻"},
"≔" {:codepoints [8788], :characters "≔"},
"ρ" {:codepoints [961], :characters "ρ"},
"𝕔" {:codepoints [120148], :characters "𝕔"},
"∤" {:codepoints [8740], :characters "∤"},
"℩" {:codepoints [8489], :characters "℩"},
"≥" {:codepoints [8805], :characters "≥"},
"Ö" {:codepoints [214], :characters "Ö"},
"⋣" {:codepoints [8931], :characters "⋣"},
"╗" {:codepoints [9559], :characters "╗"},
"Ј" {:codepoints [1032], :characters "Ј"},
"𝔧" {:codepoints [120103], :characters "𝔧"},
"≸" {:codepoints [8824], :characters "≸"},
"⊭" {:codepoints [8877], :characters "⊭"},
"ℝ" {:codepoints [8477], :characters "ℝ"},
"⇂" {:codepoints [8642], :characters "⇂"},
"⋆" {:codepoints [8902], :characters "⋆"},
"∈" {:codepoints [8712], :characters "∈"},
"&LeftVectorBar};" {:codepoints [10578], :characters "⥒"},
"┘" {:codepoints [9496], :characters "┘"},
"̑" {:codepoints [785], :characters "̑"},
"\" {:codepoints [92], :characters "\\"},
"≳" {:codepoints [8819], :characters "≳"},
"▾" {:codepoints [9662], :characters "▾"},
"≎" {:codepoints [8782], :characters "≎"},
"⇛" {:codepoints [8667], :characters "⇛"},
"⊨" {:codepoints [8872], :characters "⊨"},
"≧" {:codepoints [8807], :characters "≧"},
"Ġ" {:codepoints [288], :characters "Ġ"},
"⊋︀" {:codepoints [8843 65024], :characters "⊋︀"},
"𝒻" {:codepoints [119995], :characters "𝒻"},
"⍼" {:codepoints [9084], :characters "⍼"},
"‖" {:codepoints [8214], :characters "‖"},
"ü" {:codepoints [252], :characters "ü"},
"⥰" {:codepoints [10608], :characters "⥰"},
"±" {:codepoints [177], :characters "±"},
"∁" {:codepoints [8705], :characters "∁"},
"⪷" {:codepoints [10935], :characters "⪷"},
"β" {:codepoints [946], :characters "β"},
"↑" {:codepoints [8593], :characters "↑"},
"⋋" {:codepoints [8907], :characters "⋋"},
"Ă" {:codepoints [258], :characters "Ă"},
"@" {:codepoints [64], :characters "@"},
"⋧" {:codepoints [8935], :characters "⋧"},
"”" {:codepoints [8221], :characters "”"},
"≼" {:codepoints [8828], :characters "≼"},
"ˇ" {:codepoints [711], :characters "ˇ"},
"⅝" {:codepoints [8541], :characters "⅝"},
"›" {:codepoints [8250], :characters "›"},
"▮" {:codepoints [9646], :characters "▮"},
"⦏" {:codepoints [10639], :characters "⦏"},
"Ⓢ" {:codepoints [9416], :characters "Ⓢ"},
"º" {:codepoints [186], :characters "º"},
"𝒵" {:codepoints [119989], :characters "𝒵"},
"⊗" {:codepoints [8855], :characters "⊗"},
"⊂⃒" {:codepoints [8834 8402], :characters "⊂⃒"},
"↬" {:codepoints [8620], :characters "↬"},
"⇑" {:codepoints [8657], :characters "⇑"},
"⫰" {:codepoints [10992], :characters "⫰"},
"£" {:codepoints [163], :characters "£"},
"𝒟" {:codepoints [119967], :characters "𝒟"},
"”" {:codepoints [8221], :characters "”"},
"Â" {:codepoints [194], :characters "Â"},
"∳" {:codepoints [8755], :characters "∳"},
"∾̳" {:codepoints [8766 819], :characters "∾̳"},
"∾" {:codepoints [8766], :characters "∾"},
"⌆" {:codepoints [8966], :characters "⌆"},
"⧜" {:codepoints [10716], :characters "⧜"},
"⪘" {:codepoints [10904], :characters "⪘"},
"∂" {:codepoints [8706], :characters "∂"},
"λ" {:codepoints [955], :characters "λ"},
"⟉" {:codepoints [10185], :characters "⟉"},
"ⅅ" {:codepoints [8517], :characters "ⅅ"},
"▾" {:codepoints [9662], :characters "▾"},
"Ł" {:codepoints [321], :characters "Ł"},
"Ş" {:codepoints [350], :characters "Ş"},
"𝕫" {:codepoints [120171], :characters "𝕫"},
"≫" {:codepoints [8811], :characters "≫"},
"♯" {:codepoints [9839], :characters "♯"},
"⟧" {:codepoints [10215], :characters "⟧"},
" " {:codepoints [160], :characters " "},
"ℑ" {:codepoints [8465], :characters "ℑ"},
"⥮" {:codepoints [10606], :characters "⥮"},
"É" {:codepoints [201], :characters "É"},
"𝔘" {:codepoints [120088], :characters "𝔘"},
"˜" {:codepoints [732], :characters "˜"},
"ϑ" {:codepoints [977], :characters "ϑ"},
"⪸" {:codepoints [10936], :characters "⪸"},
"Á" {:codepoints [193], :characters "Á"},
"∐" {:codepoints [8720], :characters "∐"},
"“" {:codepoints [8220], :characters "“"},
"𝒶" {:codepoints [119990], :characters "𝒶"},
"⊥" {:codepoints [8869], :characters "⊥"},
"⋀" {:codepoints [8896], :characters "⋀"},
"Υ" {:codepoints [933], :characters "Υ"},
"⩃" {:codepoints [10819], :characters "⩃"},
"⥮" {:codepoints [10606], :characters "⥮"},
"╟" {:codepoints [9567], :characters "╟"},
"⊽" {:codepoints [8893], :characters "⊽"},
"⌢" {:codepoints [8994], :characters "⌢"},
"⋪" {:codepoints [8938], :characters "⋪"},
"⁄" {:codepoints [8260], :characters "⁄"},
"⩷" {:codepoints [10871], :characters "⩷"},
"𝕞" {:codepoints [120158], :characters "𝕞"},
"↔" {:codepoints [8596], :characters "↔"},
"и" {:codepoints [1080], :characters "и"},
"⇎" {:codepoints [8654], :characters "⇎"},
"⇔" {:codepoints [8660], :characters "⇔"},
"ff" {:codepoints [64256], :characters "ff"},
"∤" {:codepoints [8740], :characters "∤"},
"⫁" {:codepoints [10945], :characters "⫁"},
"ķ" {:codepoints [311], :characters "ķ"},
"⥼" {:codepoints [10620], :characters "⥼"},
"ℨ" {:codepoints [8488], :characters "ℨ"},
"»" {:codepoints [187], :characters "»"},
"⥜" {:codepoints [10588], :characters "⥜"},
"ŝ" {:codepoints [349], :characters "ŝ"},
"≽" {:codepoints [8829], :characters "≽"},
"𝓊" {:codepoints [120010], :characters "𝓊"},
"а" {:codepoints [1072], :characters "а"},
"⫌" {:codepoints [10956], :characters "⫌"},
"𝔵" {:codepoints [120117], :characters "𝔵"},
"˝" {:codepoints [733], :characters "˝"},
"è" {:codepoints [232], :characters "è"},
"⇥" {:codepoints [8677], :characters "⇥"},
"≈" {:codepoints [8776], :characters "≈"},
"∏" {:codepoints [8719], :characters "∏"},
"⇋" {:codepoints [8651], :characters "⇋"},
"⟬" {:codepoints [10220], :characters "⟬"},
"ð" {:codepoints [240], :characters "ð"},
"⪖" {:codepoints [10902], :characters "⪖"},
"¡" {:codepoints [161], :characters "¡"},
"⪞" {:codepoints [10910], :characters "⪞"},
"⅕" {:codepoints [8533], :characters "⅕"},
"Ź" {:codepoints [377], :characters "Ź"},
"⌅" {:codepoints [8965], :characters "⌅"},
"⤚" {:codepoints [10522], :characters "⤚"},
"⪓" {:codepoints [10899], :characters "⪓"},
"⁡" {:codepoints [8289], :characters ""},
"Ü" {:codepoints [220], :characters "Ü"},
"⇊" {:codepoints [8650], :characters "⇊"},
"⨼" {:codepoints [10812], :characters "⨼"},
"𝕚" {:codepoints [120154], :characters "𝕚"},
"⌝" {:codepoints [8989], :characters "⌝"},
"ŋ" {:codepoints [331], :characters "ŋ"},
"ē" {:codepoints [275], :characters "ē"},
"⃛" {:codepoints [8411], :characters "⃛"},
"ℊ" {:codepoints [8458], :characters "ℊ"},
"∧" {:codepoints [8743], :characters "∧"},
"⪺" {:codepoints [10938], :characters "⪺"},
"⩪" {:codepoints [10858], :characters "⩪"},
"Π" {:codepoints [928], :characters "Π"},
"⊃" {:codepoints [8835], :characters "⊃"},
"⤩" {:codepoints [10537], :characters "⤩"},
"⩳" {:codepoints [10867], :characters "⩳"},
"┴" {:codepoints [9524], :characters "┴"},
"Ĺ" {:codepoints [313], :characters "Ĺ"},
"ℨ" {:codepoints [8488], :characters "ℨ"},
"˚" {:codepoints [730], :characters "˚"},
"Л" {:codepoints [1051], :characters "Л"},
"𝕦" {:codepoints [120166], :characters "𝕦"},
"С" {:codepoints [1057], :characters "С"},
"→" {:codepoints [8594], :characters "→"},
"≍" {:codepoints [8781], :characters "≍"},
"∘" {:codepoints [8728], :characters "∘"},
"≷" {:codepoints [8823], :characters "≷"},
"∲" {:codepoints [8754], :characters "∲"},
"⋦" {:codepoints [8934], :characters "⋦"},
"∽̱" {:codepoints [8765 817], :characters "∽̱"},
"≹" {:codepoints [8825], :characters "≹"},
"⁠" {:codepoints [8288], :characters ""},
"𝕡" {:codepoints [120161], :characters "𝕡"},
"Ã" {:codepoints [195], :characters "Ã"},
"Д" {:codepoints [1044], :characters "Д"},
"‍" {:codepoints [8205], :characters ""},
"Χ" {:codepoints [935], :characters "Χ"},
"𝒢" {:codepoints [119970], :characters "𝒢"},
"Ö" {:codepoints [214], :characters "Ö"},
"∫" {:codepoints [8747], :characters "∫"},
"Ú" {:codepoints [218], :characters "Ú"},
"⦚" {:codepoints [10650], :characters "⦚"},
"⪀" {:codepoints [10880], :characters "⪀"},
"↓" {:codepoints [8595], :characters "↓"},
"∷" {:codepoints [8759], :characters "∷"},
"ş" {:codepoints [351], :characters "ş"},
"‐" {:codepoints [8208], :characters "‐"},
"⟧" {:codepoints [10215], :characters "⟧"},
"К" {:codepoints [1050], :characters "К"},
"𝕒" {:codepoints [120146], :characters "𝕒"},
"⥬" {:codepoints [10604], :characters "⥬"},
"⦑" {:codepoints [10641], :characters "⦑"},
"⦩" {:codepoints [10665], :characters "⦩"},
"𝔽" {:codepoints [120125], :characters "𝔽"},
"Ⓢ" {:codepoints [9416], :characters "Ⓢ"},
"⨗" {:codepoints [10775], :characters "⨗"},
"↡" {:codepoints [8609], :characters "↡"},
"‡" {:codepoints [8225], :characters "‡"},
"∳"
{"codepoints" [8755], :characters "∳"},
"┐" {:codepoints [9488], :characters "┐"},
"∋" {:codepoints [8715], :characters "∋"},
"↤" {:codepoints [8612], :characters "↤"},
"ı" {:codepoints [305], :characters "ı"},
"⊈" {:codepoints [8840], :characters "⊈"},
"╦" {:codepoints [9574], :characters "╦"},
"∽" {:codepoints [8765], :characters "∽"},
" " {:codepoints [160], :characters " "},
"⤐" {:codepoints [10512], :characters "⤐"},
"⅞" {:codepoints [8542], :characters "⅞"},
"}" {:codepoints [125], :characters "}"},
"⇤" {:codepoints [8676], :characters "⇤"},
"⨹" {:codepoints [10809], :characters "⨹"},
"ⅅ" {:codepoints [8517], :characters "ⅅ"},
"⩗" {:codepoints [10839], :characters "⩗"},
"ℑ" {:codepoints [8465], :characters "ℑ"},
"⇽" {:codepoints [8701], :characters "⇽"},
"∤" {:codepoints [8740], :characters "∤"},
"≀" {:codepoints [8768], :characters "≀"},
"ó" {:codepoints [243], :characters "ó"},
"↑" {:codepoints [8593], :characters "↑"},
"↖" {:codepoints [8598], :characters "↖"},
"ú" {:codepoints [250], :characters "ú"},
"♮" {:codepoints [9838], :characters "♮"},
"⪯" {:codepoints [10927], :characters "⪯"},
"⏞" {:codepoints [9182], :characters "⏞"},
"ů" {:codepoints [367], :characters "ů"},
"σ" {:codepoints [963], :characters "σ"},
"⊁" {:codepoints [8833], :characters "⊁"},
"⊥" {:codepoints [8869], :characters "⊥"},
"⎴" {:codepoints [9140], :characters "⎴"},
"$" {:codepoints [36], :characters "$"},
"}" {:codepoints [125], :characters "}"},
"⩓" {:codepoints [10835], :characters "⩓"},
"⨔" {:codepoints [10772], :characters "⨔"},
"⇖" {:codepoints [8662], :characters "⇖"},
"★" {:codepoints [9733], :characters "★"},
"⋶" {:codepoints [8950], :characters "⋶"},
"⨆" {:codepoints [10758], :characters "⨆"},
"fj" {:codepoints [102 106], :characters "fj"},
"⤍" {:codepoints [10509], :characters "⤍"},
"≬" {:codepoints [8812], :characters "≬"},
"Č" {:codepoints [268], :characters "Č"},
"<" {:codepoints [60], :characters "<"},
"Ŝ" {:codepoints [348], :characters "Ŝ"},
"¾" {:codepoints [190], :characters "¾"},
"⫤" {:codepoints [10980], :characters "⫤"},
"⧫" {:codepoints [10731], :characters "⧫"},
"≱" {:codepoints [8817], :characters "≱"},
"±" {:codepoints [177], :characters "±"},
"≮" {:codepoints [8814], :characters "≮"},
"⎰" {:codepoints [9136], :characters "⎰"},
"⊡" {:codepoints [8865], :characters "⊡"},
"𝒳" {:codepoints [119987], :characters "𝒳"},
"⊙" {:codepoints [8857], :characters "⊙"},
"≻" {:codepoints [8827], :characters "≻"},
"ffl" {:codepoints [64260], :characters "ffl"},
"ё" {:codepoints [1105], :characters "ё"},
"ℏ" {:codepoints [8463], :characters "ℏ"},
"џ" {:codepoints [1119], :characters "џ"},
"⧞" {:codepoints [10718], :characters "⧞"},
"¦" {:codepoints [166], :characters "¦"},
"⇁" {:codepoints [8641], :characters "⇁"},
"⅓" {:codepoints [8531], :characters "⅓"},
"≙" {:codepoints [8793], :characters "≙"},
"⋟" {:codepoints [8927], :characters "⋟"},
"𝒥" {:codepoints [119973], :characters "𝒥"},
"⊔" {:codepoints [8852], :characters "⊔"},
"¿" {:codepoints [191], :characters "¿"},
"⊚" {:codepoints [8858], :characters "⊚"},
"⪥" {:codepoints [10917], :characters "⪥"},
"⋒" {:codepoints [8914], :characters "⋒"},
"У" {:codepoints [1059], :characters "У"},
"⪭︀" {:codepoints [10925 65024], :characters "⪭︀"},
"Ä" {:codepoints [196], :characters "Ä"},
"⥣" {:codepoints [10595], :characters "⥣"},
"∄" {:codepoints [8708], :characters "∄"},
"δ" {:codepoints [948], :characters "δ"},
"⇓" {:codepoints [8659], :characters "⇓"},
"⫑" {:codepoints [10961], :characters "⫑"},
"⫋︀" {:codepoints [10955 65024], :characters "⫋︀"},
"Њ" {:codepoints [1034], :characters "Њ"},
"≎̸" {:codepoints [8782 824], :characters "≎̸"},
"¤" {:codepoints [164], :characters "¤"},
"⫃" {:codepoints [10947], :characters "⫃"},
"⟈" {:codepoints [10184], :characters "⟈"},
"┼" {:codepoints [9532], :characters "┼"},
"⊐̸" {:codepoints [8848 824], :characters "⊐̸"},
"⊈" {:codepoints [8840], :characters "⊈"},
"╔" {:codepoints [9556], :characters "╔"},
"♣" {:codepoints [9827], :characters "♣"},
"ĺ" {:codepoints [314], :characters "ĺ"},
"⥴" {:codepoints [10612], :characters "⥴"},
"í" {:codepoints [237], :characters "í"},
"℗" {:codepoints [8471], :characters "℗"},
"⨤" {:codepoints [10788], :characters "⨤"},
"⊑" {:codepoints [8849], :characters "⊑"},
"Ƶ" {:codepoints [437], :characters "Ƶ"},
"≦" {:codepoints [8806], :characters "≦"},
"∵" {:codepoints [8757], :characters "∵"},
"𝒾" {:codepoints [119998], :characters "𝒾"},
"≿" {:codepoints [8831], :characters "≿"},
"∰" {:codepoints [8752], :characters "∰"},
"⏟" {:codepoints [9183], :characters "⏟"},
"≏" {:codepoints [8783], :characters "≏"},
"≠" {:codepoints [8800], :characters "≠"},
"⊙" {:codepoints [8857], :characters "⊙"},
"м" {:codepoints [1084], :characters "м"},
"⧣" {:codepoints [10723], :characters "⧣"},
"⩀" {:codepoints [10816], :characters "⩀"},
"▿" {:codepoints [9663], :characters "▿"},
"Ÿ" {:codepoints [376], :characters "Ÿ"},
"ī" {:codepoints [299], :characters "ī"},
"⇕" {:codepoints [8661], :characters "⇕"},
"†" {:codepoints [8224], :characters "†"},
"ℑ" {:codepoints [8465], :characters "ℑ"},
"▿" {:codepoints [9663], :characters "▿"},
"‾" {:codepoints [8254], :characters "‾"},
"↳" {:codepoints [8627], :characters "↳"},
"⪙" {:codepoints [10905], :characters "⪙"},
"ℍ" {:codepoints [8461], :characters "ℍ"},
"≲" {:codepoints [8818], :characters "≲"},
"├" {:codepoints [9500], :characters "├"},
"Γ" {:codepoints [915], :characters "Γ"},
"≏̸" {:codepoints [8783 824], :characters "≏̸"},
"⊃⃒" {:codepoints [8835 8402], :characters "⊃⃒"},
">" {:codepoints [62], :characters ">"},
"𝔾" {:codepoints [120126], :characters "𝔾"},
"⤠" {:codepoints [10528], :characters "⤠"},
"⩽" {:codepoints [10877], :characters "⩽"},
"η" {:codepoints [951], :characters "η"},
"←" {:codepoints [8592], :characters "←"},
"▽" {:codepoints [9661], :characters "▽"},
"Ľ" {:codepoints [317], :characters "Ľ"},
"𝔙" {:codepoints [120089], :characters "𝔙"},
"𝕝" {:codepoints [120157], :characters "𝕝"},
"▪" {:codepoints [9642], :characters "▪"},
"⟨" {:codepoints [10216], :characters "⟨"},
"𝔠" {:codepoints [120096], :characters "𝔠"},
"⩿" {:codepoints [10879], :characters "⩿"},
"ë" {:codepoints [235], :characters "ë"},
"⋨" {:codepoints [8936], :characters "⋨"},
"ņ" {:codepoints [326], :characters "ņ"},
"⟭" {:codepoints [10221], :characters "⟭"},
"
" {:codepoints [10], :characters "\n"},
"∥" {:codepoints [8741], :characters "∥"},
"​" {:codepoints [8203], :characters ""},
"⥔" {:codepoints [10580], :characters "⥔"},
"⪋" {:codepoints [10891], :characters "⪋"},
" " {:codepoints [8195], :characters " "},
"⨧" {:codepoints [10791], :characters "⨧"},
"↝" {:codepoints [8605], :characters "↝"},
"¹" {:codepoints [185], :characters "¹"},
"г" {:codepoints [1075], :characters "г"},
"⇃" {:codepoints [8643], :characters "⇃"},
"#" {:codepoints [35], :characters "#"},
"≪" {:codepoints [8810], :characters "≪"},
"▪" {:codepoints [9642], :characters "▪"},
"’" {:codepoints [8217], :characters "’"},
"Ī" {:codepoints [298], :characters "Ī"},
"⥲" {:codepoints [10610], :characters "⥲"},
"ℭ" {:codepoints [8493], :characters "ℭ"},
"˙" {:codepoints [729], :characters "˙"},
"𝔊" {:codepoints [120074], :characters "𝔊"},
"∸" {:codepoints [8760], :characters "∸"},
"⪗" {:codepoints [10903], :characters "⪗"},
"Ě" {:codepoints [282], :characters "Ě"},
"⇉" {:codepoints [8649], :characters "⇉"},
"⟶" {:codepoints [10230], :characters "⟶"},
"⫒" {:codepoints [10962], :characters "⫒"},
"⋙" {:codepoints [8921], :characters "⋙"},
"¼" {:codepoints [188], :characters "¼"},
"⪽" {:codepoints [10941], :characters "⪽"},
"╒" {:codepoints [9554], :characters "╒"},
"⅚" {:codepoints [8538], :characters "⅚"},
"⊝" {:codepoints [8861], :characters "⊝"},
"▄" {:codepoints [9604], :characters "▄"},
"♭" {:codepoints [9837], :characters "♭"},
"⇝" {:codepoints [8669], :characters "⇝"},
"⤍" {:codepoints [10509], :characters "⤍"},
"∵" {:codepoints [8757], :characters "∵"},
"ν" {:codepoints [957], :characters "ν"},
"ж" {:codepoints [1078], :characters "ж"},
"⫌︀" {:codepoints [10956 65024], :characters "⫌︀"},
"𝔛" {:codepoints [120091], :characters "𝔛"},
"‡" {:codepoints [8225], :characters "‡"},
"⪤" {:codepoints [10916], :characters "⪤"},
"<" {:codepoints [60], :characters "<"},
"⇍" {:codepoints [8653], :characters "⇍"},
"≩︀" {:codepoints [8809 65024], :characters "≩︀"},
"∣" {:codepoints [8739], :characters "∣"},
"↓" {:codepoints [8595], :characters "↓"},
"↙" {:codepoints [8601], :characters "↙"},
"⊹" {:codepoints [8889], :characters "⊹"},
"𝒰" {:codepoints [119984], :characters "𝒰"},
"⊇" {:codepoints [8839], :characters "⊇"},
"𝒹" {:codepoints [119993], :characters "𝒹"},
"∣" {:codepoints [8739], :characters "∣"},
"✓" {:codepoints [10003], :characters "✓"},
"⥫" {:codepoints [10603], :characters "⥫"},
"⧴" {:codepoints [10740], :characters "⧴"},
"⩾̸" {:codepoints [10878 824], :characters "⩾̸"},
"⌐" {:codepoints [8976], :characters "⌐"},
"ѕ" {:codepoints [1109], :characters "ѕ"},
"⩱" {:codepoints [10865], :characters "⩱"},
"⩾̸" {:codepoints [10878 824], :characters "⩾̸"},
">" {:codepoints [62], :characters ">"},
"↕" {:codepoints [8597], :characters "↕"},
"∅" {:codepoints [8709], :characters "∅"},
"⋄" {:codepoints [8900], :characters "⋄"},
"ĩ" {:codepoints [297], :characters "ĩ"},
"♦" {:codepoints [9830], :characters "♦"},
"⩺" {:codepoints [10874], :characters "⩺"},
"⋀" {:codepoints [8896], :characters "⋀"},
"⪝" {:codepoints [10909], :characters "⪝"},
"⪵" {:codepoints [10933], :characters "⪵"},
"⟨" {:codepoints [10216], :characters "⟨"},
"≈" {:codepoints [8776], :characters "≈"},
"⧤" {:codepoints [10724], :characters "⧤"},
"ℕ" {:codepoints [8469], :characters "ℕ"},
"⁃" {:codepoints [8259], :characters "⁃"},
"χ" {:codepoints [967], :characters "χ"},
"∦" {:codepoints [8742], :characters "∦"},
"⊵⃒" {:codepoints [8885 8402], :characters "⊵⃒"},
"⋄" {:codepoints [8900], :characters "⋄"},
"⊉" {:codepoints [8841], :characters "⊉"},
"Т" {:codepoints [1058], :characters "Т"},
"è" {:codepoints [232], :characters "è"},
"ù" {:codepoints [249], :characters "ù"},
"∔" {:codepoints [8724], :characters "∔"},
"⪔" {:codepoints [10900], :characters "⪔"},
"∋" {:codepoints [8715], :characters "∋"},
"⦹" {:codepoints [10681], :characters "⦹"},
"з" {:codepoints [1079], :characters "з"},
"𝔑" {:codepoints [120081], :characters "𝔑"},
"✠" {:codepoints [10016], :characters "✠"},
"ß" {:codepoints [223], :characters "ß"},
"⦓" {:codepoints [10643], :characters "⦓"},
"⊗" {:codepoints [8855], :characters "⊗"},
"⤥" {:codepoints [10533], :characters "⤥"},
"⊐" {:codepoints [8848], :characters "⊐"},
"≅" {:codepoints [8773], :characters "≅"},
"⨄" {:codepoints [10756], :characters "⨄"},
"╣" {:codepoints [9571], :characters "╣"},
"⇁" {:codepoints [8641], :characters "⇁"},
"|" {:codepoints [124], :characters "|"},
"∔" {:codepoints [8724], :characters "∔"},
"⋣" {:codepoints [8931], :characters "⋣"},
"⌶" {:codepoints [9014], :characters "⌶"},
"⥧" {:codepoints [10599], :characters "⥧"},
"≈" {:codepoints [8776], :characters "≈"},
"↞" {:codepoints [8606], :characters "↞"},
"Ι" {:codepoints [921], :characters "Ι"},
"≌" {:codepoints [8780], :characters "≌"},
"ℍ" {:codepoints [8461], :characters "ℍ"},
"𝕂" {:codepoints [120130], :characters "𝕂"},
"⇌" {:codepoints [8652], :characters "⇌"},
"⌞" {:codepoints [8990], :characters "⌞"},
"⥪" {:codepoints [10602], :characters "⥪"},
"⎴" {:codepoints [9140], :characters "⎴"},
"∮" {:codepoints [8750], :characters "∮"},
"Ĵ" {:codepoints [308], :characters "Ĵ"},
"ă" {:codepoints [259], :characters "ă"},
"±" {:codepoints [177], :characters "±"},
"⊥" {:codepoints [8869], :characters "⊥"},
"⦼" {:codepoints [10684], :characters "⦼"},
"╜" {:codepoints [9564], :characters "╜"},
"υ" {:codepoints [965], :characters "υ"},
"↘" {:codepoints [8600], :characters "↘"},
"∭" {:codepoints [8749], :characters "∭"},
"≀" {:codepoints [8768], :characters "≀"},
"⪖" {:codepoints [10902], :characters "⪖"},
"в" {:codepoints [1074], :characters "в"},
"⋚" {:codepoints [8922], :characters "⋚"},
"↘" {:codepoints [8600], :characters "↘"},
"◸" {:codepoints [9720], :characters "◸"},
"⋛︀" {:codepoints [8923 65024], :characters "⋛︀"},
"⩽̸" {:codepoints [10877 824], :characters "⩽̸"},
"⊎" {:codepoints [8846], :characters "⊎"},
"⪫" {:codepoints [10923], :characters "⪫"},
"☎" {:codepoints [9742], :characters "☎"},
"∴" {:codepoints [8756], :characters "∴"},
"⇐" {:codepoints [8656], :characters "⇐"},
"⫲" {:codepoints [10994], :characters "⫲"},
"⤤" {:codepoints [10532], :characters "⤤"},
"≶" {:codepoints [8822], :characters "≶"},
"⊳" {:codepoints [8883], :characters "⊳"},
"Ψ" {:codepoints [936], :characters "Ψ"},
"Н" {:codepoints [1053], :characters "Н"},
"⩈" {:codepoints [10824], :characters "⩈"},
"⋫" {:codepoints [8939], :characters "⋫"},
"≈" {:codepoints [8776], :characters "≈"},
"⨀" {:codepoints [10752], :characters "⨀"},
"∧" {:codepoints [8743], :characters "∧"},
"⪯" {:codepoints [10927], :characters "⪯"},
"⇀" {:codepoints [8640], :characters "⇀"},
"↪" {:codepoints [8618], :characters "↪"},
"↮" {:codepoints [8622], :characters "↮"},
"≶" {:codepoints [8822], :characters "≶"},
"⊟" {:codepoints [8863], :characters "⊟"},
"⊴" {:codepoints [8884], :characters "⊴"},
"ß" {:codepoints [223], :characters "ß"},
"⇁" {:codepoints [8641], :characters "⇁"},
"𝕃" {:codepoints [120131], :characters "𝕃"},
"⤟" {:codepoints [10527], :characters "⤟"},
"⫩" {:codepoints [10985], :characters "⫩"},
"⥨" {:codepoints [10600], :characters "⥨"},
"⊿" {:codepoints [8895], :characters "⊿"},
"↻" {:codepoints [8635], :characters "↻"},
"*" {:codepoints [42], :characters "*"},
"⨌" {:codepoints [10764], :characters "⨌"},
"”" {:codepoints [8221], :characters "”"},
"≷" {:codepoints [8823], :characters "≷"},
"⫌︀" {:codepoints [10956 65024], :characters "⫌︀"},
"⤳̸" {:codepoints [10547 824], :characters "⤳̸"},
"⋴" {:codepoints [8948], :characters "⋴"},
"∥" {:codepoints [8741], :characters "∥"},
"▵" {:codepoints [9653], :characters "▵"},
"⦐" {:codepoints [10640], :characters "⦐"},
"↭" {:codepoints [8621], :characters "↭"},
"⊢" {:codepoints [8866], :characters "⊢"},
"ϑ" {:codepoints [977], :characters "ϑ"},
"Ì" {:codepoints [204], :characters "Ì"},
"⊓" {:codepoints [8851], :characters "⊓"},
"ʼn" {:codepoints [329], :characters "ʼn"},
"𝓈" {:codepoints [120008], :characters "𝓈"},
"⪭" {:codepoints [10925], :characters "⪭"},
"⩸" {:codepoints [10872], :characters "⩸"},
"∝" {:codepoints [8733], :characters "∝"},
"↻" {:codepoints [8635], :characters "↻"},
"∖" {:codepoints [8726], :characters "∖"},
"⩄" {:codepoints [10820], :characters "⩄"},
"⤝" {:codepoints [10525], :characters "⤝"},
"℞" {:codepoints [8478], :characters "℞"},
"⋗" {:codepoints [8919], :characters "⋗"},
"≵" {:codepoints [8821], :characters "≵"},
"≵" {:codepoints [8821], :characters "≵"},
"⌕" {:codepoints [8981], :characters "⌕"},
"Λ" {:codepoints [923], :characters "Λ"},
"≰" {:codepoints [8816], :characters "≰"},
"≦̸" {:codepoints [8806 824], :characters "≦̸"},
"⋅" {:codepoints [8901], :characters "⋅"},
"û" {:codepoints [251], :characters "û"},
"  " {:codepoints [8287 8202], :characters " "},
"ℏ" {:codepoints [8463], :characters "ℏ"},
"○" {:codepoints [9675], :characters "○"},
"𝓂" {:codepoints [120002], :characters "𝓂"},
"⇏" {:codepoints [8655], :characters "⇏"},
"⥝" {:codepoints [10589], :characters "⥝"},
"ℛ" {:codepoints [8475], :characters "ℛ"},
"≮" {:codepoints [8814], :characters "≮"},
"⋇" {:codepoints [8903], :characters "⋇"},
"⫓" {:codepoints [10963], :characters "⫓"},
"≇" {:codepoints [8775], :characters "≇"},
"≯" {:codepoints [8815], :characters "≯"},
"║" {:codepoints [9553], :characters "║"},
"∉" {:codepoints [8713], :characters "∉"},
"─" {:codepoints [9472], :characters "─"},
"≿" {:codepoints [8831], :characters "≿"},
"⊃" {:codepoints [8835], :characters "⊃"},
"∓" {:codepoints [8723], :characters "∓"},
"⋯" {:codepoints [8943], :characters "⋯"},
"↭" {:codepoints [8621], :characters "↭"},
"⏧" {:codepoints [9191], :characters "⏧"},
"⨥" {:codepoints [10789], :characters "⨥"},
"∝" {:codepoints [8733], :characters "∝"},
"Ζ" {:codepoints [918], :characters "Ζ"},
"↦" {:codepoints [8614], :characters "↦"},
"к" {:codepoints [1082], :characters "к"},
"ℒ" {:codepoints [8466], :characters "ℒ"},
"↖" {:codepoints [8598], :characters "↖"},
" " {:codepoints [8202], :characters " "},
"𝕛" {:codepoints [120155], :characters "𝕛"},
"¬" {:codepoints [172], :characters "¬"},
"Г" {:codepoints [1043], :characters "Г"},
"|" {:codepoints [124], :characters "|"},
"⫛" {:codepoints [10971], :characters "⫛"},
"Á" {:codepoints [193], :characters "Á"},
"л" {:codepoints [1083], :characters "л"},
"⥉" {:codepoints [10569], :characters "⥉"},
"⊏" {:codepoints [8847], :characters "⊏"},
"⋡" {:codepoints [8929], :characters "⋡"},
"↟" {:codepoints [8607], :characters "↟"},
"û" {:codepoints [251], :characters "û"},
"ó" {:codepoints [243], :characters "ó"},
"℘" {:codepoints [8472], :characters "℘"},
"ℳ" {:codepoints [8499], :characters "ℳ"},
"√" {:codepoints [8730], :characters "√"},
"⋂" {:codepoints [8898], :characters "⋂"},
"⁡" {:codepoints [8289], :characters ""},
"∇" {:codepoints [8711], :characters "∇"},
"⩰" {:codepoints [10864], :characters "⩰"},
"ϕ" {:codepoints [981], :characters "ϕ"},
"Ќ" {:codepoints [1036], :characters "Ќ"},
"ª" {:codepoints [170], :characters "ª"},
"ã" {:codepoints [227], :characters "ã"},
"ϱ" {:codepoints [1009], :characters "ϱ"},
"⋻" {:codepoints [8955], :characters "⋻"},
"⤨" {:codepoints [10536], :characters "⤨"},
"⋖" {:codepoints [8918], :characters "⋖"},
"⥳" {:codepoints [10611], :characters "⥳"},
"≷" {:codepoints [8823], :characters "≷"},
"ò" {:codepoints [242], :characters "ò"},
"⇒" {:codepoints [8658], :characters "⇒"},
"⪶" {:codepoints [10934], :characters "⪶"},
"Ű" {:codepoints [368], :characters "Ű"},
"≂" {:codepoints [8770], :characters "≂"},
"℘" {:codepoints [8472], :characters "℘"},
"Ô" {:codepoints [212], :characters "Ô"},
"Ћ" {:codepoints [1035], :characters "Ћ"},
"⇵" {:codepoints [8693], :characters "⇵"},
"ℒ" {:codepoints [8466], :characters "ℒ"},
"⩽" {:codepoints [10877], :characters "⩽"},
"у" {:codepoints [1091], :characters "у"},
"⌈" {:codepoints [8968], :characters "⌈"},
"≉" {:codepoints [8777], :characters "≉"},
"ℕ" {:codepoints [8469], :characters "ℕ"},
"⪊" {:codepoints [10890], :characters "⪊"},
"Đ" {:codepoints [272], :characters "Đ"},
"⪹" {:codepoints [10937], :characters "⪹"},
"љ" {:codepoints [1113], :characters "љ"},
"⩅" {:codepoints [10821], :characters "⩅"},
"⎱" {:codepoints [9137], :characters "⎱"},
"⟵" {:codepoints [10229], :characters "⟵"},
";" {:codepoints [59], :characters ";"},
"∪" {:codepoints [8746], :characters "∪"},
"(" {:codepoints [40], :characters "("},
"Ŭ" {:codepoints [364], :characters "Ŭ"},
"⌈" {:codepoints [8968], :characters "⌈"},
"⊏̸" {:codepoints [8847 824], :characters "⊏̸"},
"⇀" {:codepoints [8640], :characters "⇀"},
"⪇" {:codepoints [10887], :characters "⪇"},
"Ϝ" {:codepoints [988], :characters "Ϝ"},
"𝒲" {:codepoints [119986], :characters "𝒲"},
"↾" {:codepoints [8638], :characters "↾"},
"&" {:codepoints [38], :characters "&"},
"Î" {:codepoints [206], :characters "Î"},
"⨂" {:codepoints [10754], :characters "⨂"},
"↱" {:codepoints [8625], :characters "↱"},
"≯" {:codepoints [8815], :characters "≯"},
"ř" {:codepoints [345], :characters "ř"},
"𝔗" {:codepoints [120087], :characters "𝔗"},
"⪂" {:codepoints [10882], :characters "⪂"},
"⩦" {:codepoints [10854], :characters "⩦"},
"ď" {:codepoints [271], :characters "ď"},
"∀" {:codepoints [8704], :characters "∀"},
"⪯̸" {:codepoints [10927 824], :characters "⪯̸"},
"√" {:codepoints [8730], :characters "√"},
"ñ" {:codepoints [241], :characters "ñ"},
"▽" {:codepoints [9661], :characters "▽"},
"⊊" {:codepoints [8842], :characters "⊊"},
"İ" {:codepoints [304], :characters "İ"},
"Ξ" {:codepoints [926], :characters "Ξ"},
"Õ" {:codepoints [213], :characters "Õ"},
"⫆̸" {:codepoints [10950 824], :characters "⫆̸"},
" " {:codepoints [8200], :characters " "},
"§" {:codepoints [167], :characters "§"},
"⨿" {:codepoints [10815], :characters "⨿"},
"≒" {:codepoints [8786], :characters "≒"},
"Ë" {:codepoints [203], :characters "Ë"},
"⩲" {:codepoints [10866], :characters "⩲"},
"⁣" {:codepoints [8291], :characters ""},
"⋫" {:codepoints [8939], :characters "⋫"},
"ℜ" {:codepoints [8476], :characters "ℜ"},
"ŧ" {:codepoints [359], :characters "ŧ"},
"ć" {:codepoints [263], :characters "ć"},
"𝕖" {:codepoints [120150], :characters "𝕖"},
"≄" {:codepoints [8772], :characters "≄"},
"⪕" {:codepoints [10901], :characters "⪕"},
"⊫" {:codepoints [8875], :characters "⊫"},
"ϕ" {:codepoints [981], :characters "ϕ"},
"®" {:codepoints [174], :characters "®"},
"¤" {:codepoints [164], :characters "¤"},
"č" {:codepoints [269], :characters "č"},
"đ" {:codepoints [273], :characters "đ"},
"⟶" {:codepoints [10230], :characters "⟶"},
"⤏" {:codepoints [10511], :characters "⤏"},
"¨" {:codepoints [168], :characters "¨"},
"⇚" {:codepoints [8666], :characters "⇚"},
"≃" {:codepoints [8771], :characters "≃"},
"Ŕ" {:codepoints [340], :characters "Ŕ"},
"⇊" {:codepoints [8650], :characters "⇊"},
"≋̸" {:codepoints [8779 824], :characters "≋̸"},
"⟷" {:codepoints [10231], :characters "⟷"},
"˘" {:codepoints [728], :characters "˘"},
"↓" {:codepoints [8595], :characters "↓"},
"⪿" {:codepoints [10943], :characters "⪿"},
"≀" {:codepoints [8768], :characters "≀"},
"≨" {:codepoints [8808], :characters "≨"},
"↦" {:codepoints [8614], :characters "↦"},
"✶" {:codepoints [10038], :characters "✶"},
"Û" {:codepoints [219], :characters "Û"},
"ℚ" {:codepoints [8474], :characters "ℚ"},
"Ó" {:codepoints [211], :characters "Ó"},
"⇉" {:codepoints [8649], :characters "⇉"},
"⊐" {:codepoints [8848], :characters "⊐"},
"⊸" {:codepoints [8888], :characters "⊸"},
"š" {:codepoints [353], :characters "š"},
"⇅" {:codepoints [8645], :characters "⇅"},
"≫" {:codepoints [8811], :characters "≫"},
"⪬" {:codepoints [10924], :characters "⪬"},
"р" {:codepoints [1088], :characters "р"},
"𝔏" {:codepoints [120079], :characters "𝔏"},
"˛" {:codepoints [731], :characters "˛"},
"⪌" {:codepoints [10892], :characters "⪌"},
"ˆ" {:codepoints [710], :characters "ˆ"},
"▸" {:codepoints [9656], :characters "▸"},
"³" {:codepoints [179], :characters "³"},
"Ķ" {:codepoints [310], :characters "Ķ"},
"©" {:codepoints [169], :characters "©"},
"⫽⃥" {:codepoints [11005 8421], :characters "⫽⃥"},
"⫅̸" {:codepoints [10949 824], :characters "⫅̸"},
"⩔" {:codepoints [10836], :characters "⩔"},
"®" {:codepoints [174], :characters "®"},
"⤜" {:codepoints [10524], :characters "⤜"},
"⪳" {:codepoints [10931], :characters "⪳"},
"ℸ" {:codepoints [8504], :characters "ℸ"},
"ℤ" {:codepoints [8484], :characters "ℤ"},
"ы" {:codepoints [1099], :characters "ы"},
"⊴" {:codepoints [8884], :characters "⊴"},
"℧" {:codepoints [8487], :characters "℧"},
"𝓌" {:codepoints [120012], :characters "𝓌"},
"≊" {:codepoints [8778], :characters "≊"},
"ш" {:codepoints [1096], :characters "ш"},
"⤂" {:codepoints [10498], :characters "⤂"},
"Ї" {:codepoints [1031], :characters "Ї"},
"⫐" {:codepoints [10960], :characters "⫐"},
"Ą" {:codepoints [260], :characters "Ą"},
"ℐ" {:codepoints [8464], :characters "ℐ"},
"⋬" {:codepoints [8940], :characters "⋬"},
"∁" {:codepoints [8705], :characters "∁"},
"ℴ" {:codepoints [8500], :characters "ℴ"},
"⋳" {:codepoints [8947], :characters "⋳"},
"¥" {:codepoints [165], :characters "¥"},
"𝔸" {:codepoints [120120], :characters "𝔸"},
"⦰" {:codepoints [10672], :characters "⦰"},
"𝔚" {:codepoints [120090], :characters "𝔚"},
"⪴" {:codepoints [10932], :characters "⪴"},
"⊢" {:codepoints [8866], :characters "⊢"},
"ń" {:codepoints [324], :characters "ń"},
"ℝ" {:codepoints [8477], :characters "ℝ"},
"⫇" {:codepoints [10951], :characters "⫇"},
"↤" {:codepoints [8612], :characters "↤"},
"⨕" {:codepoints [10773], :characters "⨕"},
"ј" {:codepoints [1112], :characters "ј"},
"Ŋ" {:codepoints [330], :characters "Ŋ"},
"ќ" {:codepoints [1116], :characters "ќ"},
"?" {:codepoints [63], :characters "?"},
"𝒸" {:codepoints [119992], :characters "𝒸"},
"ç" {:codepoints [231], :characters "ç"},
"´" {:codepoints [180], :characters "´"},
"φ" {:codepoints [966], :characters "φ"},
"Ē" {:codepoints [274], :characters "Ē"},
"⇀" {:codepoints [8640], :characters "⇀"},
"Ν" {:codepoints [925], :characters "Ν"},
"⊊" {:codepoints [8842], :characters "⊊"},
"⇔" {:codepoints [8660], :characters "⇔"},
"⤅" {:codepoints [10501], :characters "⤅"},
"╝" {:codepoints [9565], :characters "╝"},
" " {:codepoints [8201], :characters " "},
"≿" {:codepoints [8831], :characters "≿"},
"𝕆" {:codepoints [120134], :characters "𝕆"},
"Ģ" {:codepoints [290], :characters "Ģ"},
"¶" {:codepoints [182], :characters "¶"},
"π" {:codepoints [960], :characters "π"},
"≢" {:codepoints [8802], :characters "≢"},
"Б" {:codepoints [1041], :characters "Б"},
"⦋" {:codepoints [10635], :characters "⦋"},
"𝒯" {:codepoints [119983], :characters "𝒯"},
"Į" {:codepoints [302], :characters "Į"},
"⥖" {:codepoints [10582], :characters "⥖"},
"ϒ" {:codepoints [978], :characters "ϒ"},
"◬" {:codepoints [9708], :characters "◬"},
"▪" {:codepoints [9642], :characters "▪"},
"⋁" {:codepoints [8897], :characters "⋁"},
"Þ" {:codepoints [222], :characters "Þ"},
"⎰" {:codepoints [9136], :characters "⎰"},
"⦜" {:codepoints [10652], :characters "⦜"},
"é" {:codepoints [233], :characters "é"},
"⋚︀" {:codepoints [8922 65024], :characters "⋚︀"},
"Ū" {:codepoints [362], :characters "Ū"},
"≨︀" {:codepoints [8808 65024], :characters "≨︀"},
"ϖ" {:codepoints [982], :characters "ϖ"},
"§" {:codepoints [167], :characters "§"},
"⩽̸" {:codepoints [10877 824], :characters "⩽̸"},
"↗" {:codepoints [8599], :characters "↗"},
"⪉" {:codepoints [10889], :characters "⪉"},
"ú" {:codepoints [250], :characters "ú"},
"º" {:codepoints [186], :characters "º"},
"⊂" {:codepoints [8834], :characters "⊂"},
"′" {:codepoints [8242], :characters "′"},
"∑" {:codepoints [8721], :characters "∑"},
"ℰ" {:codepoints [8496], :characters "ℰ"},
"ℱ" {:codepoints [8497], :characters "ℱ"},
"⇑" {:codepoints [8657], :characters "⇑"},
"ℌ" {:codepoints [8460], :characters "ℌ"},
"¾" {:codepoints [190], :characters "¾"},
"ł" {:codepoints [322], :characters "ł"},
"≦" {:codepoints [8806], :characters "≦"},
"⎵" {:codepoints [9141], :characters "⎵"},
"⇇" {:codepoints [8647], :characters "⇇"},
"І" {:codepoints [1030], :characters "І"},
"œ" {:codepoints [339], :characters "œ"},
"ý" {:codepoints [253], :characters "ý"},
"⟸" {:codepoints [10232], :characters "⟸"},
"⧉" {:codepoints [10697], :characters "⧉"},
"⊒" {:codepoints [8850], :characters "⊒"},
"≐" {:codepoints [8784], :characters "≐"},
"θ" {:codepoints [952], :characters "θ"},
"¸" {:codepoints [184], :characters "¸"},
"⁢" {:codepoints [8290], :characters ""},
"‹" {:codepoints [8249], :characters "‹"},
"⊃⃒" {:codepoints [8835 8402], :characters "⊃⃒"},
"𝕕" {:codepoints [120149], :characters "𝕕"},
"𝔍" {:codepoints [120077], :characters "𝔍"},
"⊛" {:codepoints [8859], :characters "⊛"},
"Ļ" {:codepoints [315], :characters "Ļ"},
"≻" {:codepoints [8827], :characters "≻"},
"⇒" {:codepoints [8658], :characters "⇒"},
"◂" {:codepoints [9666], :characters "◂"},
"♥" {:codepoints [9829], :characters "♥"},
"⊤" {:codepoints [8868], :characters "⊤"},
"⥕" {:codepoints [10581], :characters "⥕"},
"Î" {:codepoints [206], :characters "Î"},
"Α" {:codepoints [913], :characters "Α"},
"∺" {:codepoints [8762], :characters "∺"},
"‘" {:codepoints [8216], :characters "‘"},
"ℓ" {:codepoints [8467], :characters "ℓ"},
"ϕ" {:codepoints [981], :characters "ϕ"},
"⌓" {:codepoints [8979], :characters "⌓"},
"⫨" {:codepoints [10984], :characters "⫨"},
"ℯ" {:codepoints [8495], :characters "ℯ"},
"≍" {:codepoints [8781], :characters "≍"},
"⌭" {:codepoints [9005], :characters "⌭"},
"⌣" {:codepoints [8995], :characters "⌣"},
"В" {:codepoints [1042], :characters "В"},
"≲" {:codepoints [8818], :characters "≲"},
"≩" {:codepoints [8809], :characters "≩"},
"⟵" {:codepoints [10229], :characters "⟵"},
"⪅" {:codepoints [10885], :characters "⪅"},
"∝" {:codepoints [8733], :characters "∝"},
"∦" {:codepoints [8742], :characters "∦"},
"⊖" {:codepoints [8854], :characters "⊖"},
"⋽" {:codepoints [8957], :characters "⋽"},
"ħ" {:codepoints [295], :characters "ħ"},
"⊟" {:codepoints [8863], :characters "⊟"},
"ο" {:codepoints [959], :characters "ο"},
"ũ" {:codepoints [361], :characters "ũ"},
"ŗ" {:codepoints [343], :characters "ŗ"},
"≶" {:codepoints [8822], :characters "≶"},
"î" {:codepoints [238], :characters "î"},
"_" {:codepoints [95], :characters "_"},
"𝔤" {:codepoints [120100], :characters "𝔤"},
"И" {:codepoints [1048], :characters "И"},
"⇂" {:codepoints [8642], :characters "⇂"},
"ĵ" {:codepoints [309], :characters "ĵ"},
"↿" {:codepoints [8639], :characters "↿"},
"į" {:codepoints [303], :characters "į"},
"↫" {:codepoints [8619], :characters "↫"},
"⪵" {:codepoints [10933], :characters "⪵"},
"⋏" {:codepoints [8911], :characters "⋏"},
"∥" {:codepoints [8741], :characters "∥"},
"ť" {:codepoints [357], :characters "ť"},
"𝕍" {:codepoints [120141], :characters "𝕍"},
"𝔮" {:codepoints [120110], :characters "𝔮"},
"⩝" {:codepoints [10845], :characters "⩝"},
"Ý" {:codepoints [221], :characters "Ý"},
"⋵̸" {:codepoints [8949 824], :characters "⋵̸"},
"𝔴" {:codepoints [120116], :characters "𝔴"},
"⊞" {:codepoints [8862], :characters "⊞"},
"⇐" {:codepoints [8656], :characters "⇐"},
"÷" {:codepoints [247], :characters "÷"},
"✓" {:codepoints [10003], :characters "✓"},
"≱" {:codepoints [8817], :characters "≱"},
"ℌ" {:codepoints [8460], :characters "ℌ"},
"⪰" {:codepoints [10928], :characters "⪰"},
"ℴ" {:codepoints [8500], :characters "ℴ"},
"ž" {:codepoints [382], :characters "ž"},
"¯" {:codepoints [175], :characters "¯"},
"⪡" {:codepoints [10913], :characters "⪡"},
"⪰" {:codepoints [10928], :characters "⪰"},
"𝓆" {:codepoints [120006], :characters "𝓆"},
"∲" {:codepoints [8754], :characters "∲"},
"→" {:codepoints [8594], :characters "→"},
"⩚" {:codepoints [10842], :characters "⩚"},
"⅔" {:codepoints [8532], :characters "⅔"},
"ê" {:codepoints [234], :characters "ê"},
"⤷" {:codepoints [10551], :characters "⤷"},
"×" {:codepoints [215], :characters "×"},
"<" {:codepoints [60], :characters "<"},
"⊂⃒" {:codepoints [8834 8402], :characters "⊂⃒"},
"…" {:codepoints [8230], :characters "…"},
"⤵" {:codepoints [10549], :characters "⤵"},
"⊩" {:codepoints [8873], :characters "⊩"},
"ѓ" {:codepoints [1107], :characters "ѓ"},
"ì" {:codepoints [236], :characters "ì"},
"ż" {:codepoints [380], :characters "ż"},
"»" {:codepoints [187], :characters "»"},
"╠" {:codepoints [9568], :characters "╠"},
"𝔱" {:codepoints [120113], :characters "𝔱"},
"ȷ" {:codepoints [567], :characters "ȷ"},
"Ы" {:codepoints [1067], :characters "Ы"},
"∃" {:codepoints [8707], :characters "∃"},
"⩍" {:codepoints [10829], :characters "⩍"},
"ℜ" {:codepoints [8476], :characters "ℜ"},
" " {:codepoints [160], :characters " "},
"╙" {:codepoints [9561], :characters "╙"},
"◼" {:codepoints [9724], :characters "◼"},
"‌" {:codepoints [8204], :characters ""},
"Í" {:codepoints [205], :characters "Í"},
"ö" {:codepoints [246], :characters "ö"},
"𝔉" {:codepoints [120073], :characters "𝔉"},
"©" {:codepoints [169], :characters "©"},
"⥋" {:codepoints [10571], :characters "⥋"},
"𝔒" {:codepoints [120082], :characters "𝔒"},
"↥" {:codepoints [8613], :characters "↥"},
"⋎" {:codepoints [8910], :characters "⋎"},
"⥭" {:codepoints [10605], :characters "⥭"},
"⊣" {:codepoints [8867], :characters "⊣"},
"‐" {:codepoints [8208], :characters "‐"},
"≫" {:codepoints [8811], :characters "≫"},
"ő" {:codepoints [337], :characters "ő"},
"ε" {:codepoints [949], :characters "ε"},
"⫳" {:codepoints [10995], :characters "⫳"},
"⪃" {:codepoints [10883], :characters "⪃"},
"∌" {:codepoints [8716], :characters "∌"},
"≂̸" {:codepoints [8770 824], :characters "≂̸"},
"Ž" {:codepoints [381], :characters "Ž"},
"“" {:codepoints [8220], :characters "“"},
"╢" {:codepoints [9570], :characters "╢"},
"Ч" {:codepoints [1063], :characters "Ч"},
"⎱" {:codepoints [9137], :characters "⎱"},
"⨌" {:codepoints [10764], :characters "⨌"},
"Ň" {:codepoints [327], :characters "Ň"},
"¨" {:codepoints [168], :characters "¨"},
"∌" {:codepoints [8716], :characters "∌"},
"⇙" {:codepoints [8665], :characters "⇙"},
"Ъ" {:codepoints [1066], :characters "Ъ"},
"∸" {:codepoints [8760], :characters "∸"},
"æ" {:codepoints [230], :characters "æ"},
"△" {:codepoints [9651], :characters "△"},
"ℜ" {:codepoints [8476], :characters "ℜ"},
"⇑" {:codepoints [8657], :characters "⇑"},
"𝒬" {:codepoints [119980], :characters "𝒬"},
"∥" {:codepoints [8741], :characters "∥"},
"б" {:codepoints [1073], :characters "б"},
"𝕙" {:codepoints [120153], :characters "𝕙"},
"⊴⃒" {:codepoints [8884 8402], :characters "⊴⃒"},
"⊋" {:codepoints [8843], :characters "⊋"},
"ű" {:codepoints [369], :characters "ű"},
"┬" {:codepoints [9516], :characters "┬"},
"й" {:codepoints [1081], :characters "й"},
"&" {:codepoints [38], :characters "&"},
"↽" {:codepoints [8637], :characters "↽"},
"𝓏" {:codepoints [120015], :characters "𝓏"},
"Р" {:codepoints [1056], :characters "Р"},
"⨁" {:codepoints [10753], :characters "⨁"},
"é" {:codepoints [233], :characters "é"},
"𝓃" {:codepoints [120003], :characters "𝓃"},
"å" {:codepoints [229], :characters "å"},
"⋭" {:codepoints [8941], :characters "⋭"},
"↝" {:codepoints [8605], :characters "↝"},
"±" {:codepoints [177], :characters "±"},
"⫤" {:codepoints [10980], :characters "⫤"},
"⫅̸" {:codepoints [10949 824], :characters "⫅̸"},
"½" {:codepoints [189], :characters "½"},
"⋘̸" {:codepoints [8920 824], :characters "⋘̸"},
"ò" {:codepoints [242], :characters "ò"},
"𝕠" {:codepoints [120160], :characters "𝕠"},
"ā" {:codepoints [257], :characters "ā"},
"ℒ" {:codepoints [8466], :characters "ℒ"},
"𝒫" {:codepoints [119979], :characters "𝒫"},
"ℱ" {:codepoints [8497], :characters "ℱ"},
"↛" {:codepoints [8603], :characters "↛"},