forked from PonteIneptique/choco-mufin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoriginal_mufi_json.json
3209 lines (1605 loc) · 446 KB
/
original_mufi_json.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
[
{"codepoint":"0020","mufichar":" ","alpha":"_formatting","ent":"&sp;","entmufi":"1","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"SPACE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"0021","mufichar":"!","alpha":"_punctuation","ent":"!","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"EXCLAMATION MARK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0022","mufichar":"\"","alpha":"_punctuation","ent":""","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"QUOTATION MARK","deprecated":"0","notes":"In SGML\/XML encoded documents, the quotation mark is used to delimit attributes. The entity \u2018"\u2019 refers to the quotation mark as such.","updated":"2020-07-08 06:16:24"},
{"codepoint":"0023","mufichar":"#","alpha":"_symbols","ent":"#","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"NUMBER SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"0024","mufichar":"$","alpha":"_symbols","ent":"$","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DOLLAR SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"0025","mufichar":"%","alpha":"_symbols","ent":"%","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"PERCENT SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"0026","mufichar":"&","alpha":"_spacing","ent":"&","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"AMPERSAND","deprecated":"0","notes":"In Medieval primary sources, the ampersand was used as an abbreviation for the conjunction \u2018and\u2019 (Latin \u2018et\u2019, Medieval Nordic \u2018ok\u2019, etc.), in which case it can be specified by markup, e.g. by the <abbr> element. In SGML\/XML encoded documents, the ampersand is the opening character of an entity name, as exemplified throughout this recommendation. To avoid confusion, the ampersand as such can be encoded with the entity \u2018&\u2019. In Medieval primary sources, the ampersand was used as an abbreviation for the conjunction \u2018and\u2019 (Latin \u2018et\u2019, Medieval Nordic \u2018ok\u2019, etc.), in which case it can be specified by markup, e.g. by the element.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0027","mufichar":"'","alpha":"_punctuation","ent":"'","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"APOSTROPHE","deprecated":"0","notes":"A sign looking like the apostrophe was used as an abbreviation for \u2018i\u2019 or \u2018e\u2019. Cf. D.A. Seip, Pal\u00e6ografi: Norge og Island (Nordisk kultur 23:B), Oslo etc. 1954, p. 125. In such cases, we recommend that the character 02BC LATIN ABBREVIATION SIGN APOSTROPHE in section 4 above should be used.","updated":"2020-07-08 06:16:24"},
{"codepoint":"0028","mufichar":"(","alpha":"_punctuation","ent":"(","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LEFT PARENTHESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0029","mufichar":")","alpha":"_punctuation","ent":")","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"RIGHT PARENTHESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"002A","mufichar":"*","alpha":"_symbols","ent":"*","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"ASTERISK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"002B","mufichar":"+","alpha":"_symbols","ent":"+","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"PLUS SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"002C","mufichar":",","alpha":"_punctuation","ent":",","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"COMMA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"002D","mufichar":"-","alpha":"_punctuation","ent":"‐","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"HYPHEN-MINUS","deprecated":"0","notes":"As the name HYPHEN-MINUS indicates, this character is ambiguous. For an unambiguous hyphen character, see 2010 HYPHEN in General Punctuation, and for an unambiguous minus character, see 2212 MINUS in Mathematical Operators.","updated":"2020-07-08 06:16:23"},
{"codepoint":"002E","mufichar":".","alpha":"_spacing","ent":".","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"FULL STOP","deprecated":"0","notes":"The full stop is often used as a mark of abbreviation, typically in suspended (truncated) words. If an encoder wants to make a distinction between the full stop as a punctuation mark and as an abbreviation mark, we recommend that the same character, 002E FULL STOP, should be used in both cases, but that the abbreviation mark is specified by markup, e.g. by the <abbr> element.","updated":"2020-07-08 06:16:23"},
{"codepoint":"002F","mufichar":"\/","alpha":"_punctuation","ent":"/","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"SOLIDUS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0030","mufichar":"0","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT ZERO","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0031","mufichar":"1","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT ONE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0032","mufichar":"2","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT TWO","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0033","mufichar":"3","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT THREE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0034","mufichar":"4","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT FOUR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0035","mufichar":"5","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT FIVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0036","mufichar":"6","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT SIX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0037","mufichar":"7","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT SEVEN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0038","mufichar":"8","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT EIGHT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0039","mufichar":"9","alpha":"_numbers","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"DIGIT NINE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"003A","mufichar":":","alpha":"_punctuation","ent":":","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"COLON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"003B","mufichar":";","alpha":"_spacing","ent":";","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"SEMICOLON","deprecated":"0","notes":"In Medieval script, a sign looking like the semicolon was commonly used as an abbreviation for \u2018e\u00f0\u2019 or \u2018ed\u2019, cf. LATIN ABBREVIATION SIGN SEMICOLON at F1AC on p. 133 below. If an encoder wants to use 003B SEMICOLON for the abbreviation sign, we recommend that this usage should be specified by markup, e.g. by the <abbr> element.","updated":"2020-07-08 06:16:23"},
{"codepoint":"003C","mufichar":"<","alpha":"_punctuation","ent":"<","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LESS-THAN SIGN","deprecated":"0","notes":"In SGML\/XML encoded doccuments, the less-than sign is used as the opening character of an element name, e.g. <text>. To be able to refer to the less-than sign as such, a separate entity is needed, \u2018<\u2019.","updated":"2020-07-08 06:16:24"},
{"codepoint":"003D","mufichar":"=","alpha":"_symbols","ent":"=","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"EQUALS SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"003E","mufichar":">","alpha":"_punctuation","ent":">","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"GREATER-THAN SIGN","deprecated":"0","notes":"In SGML\/XML encoded doccuments, the greater-than sign is used as a closing character of an element name, e.g. <text>. To be able to refer to the greater- than sign as such, a separate entity is needed, \u2018>\u2019.","updated":"2020-07-08 06:16:24"},
{"codepoint":"003F","mufichar":"?","alpha":"_punctuation","ent":"?","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"QUESTION MARK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0040","mufichar":"@","alpha":"_symbols","ent":"@","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"COMMERCIAL AT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"0041","mufichar":"A","alpha":"A","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0042","mufichar":"B","alpha":"B","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER B","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0043","mufichar":"C","alpha":"C","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER C","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0044","mufichar":"D","alpha":"D","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER D","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0045","mufichar":"E","alpha":"E","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0046","mufichar":"F","alpha":"F","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER F","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0047","mufichar":"G","alpha":"G","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER G","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0048","mufichar":"H","alpha":"H","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER H","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0049","mufichar":"I","alpha":"I","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"004A","mufichar":"J","alpha":"J","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER J","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"004B","mufichar":"K","alpha":"K","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER K","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"004C","mufichar":"L","alpha":"L","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER L","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"004D","mufichar":"M","alpha":"M","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER M","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"004E","mufichar":"N","alpha":"N","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER N","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"004F","mufichar":"O","alpha":"O","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0050","mufichar":"P","alpha":"P","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER P","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0051","mufichar":"Q","alpha":"Q","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Q","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0052","mufichar":"R","alpha":"R","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER R","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0053","mufichar":"S","alpha":"S","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER S","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0054","mufichar":"T","alpha":"T","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER T","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0055","mufichar":"U","alpha":"U","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0056","mufichar":"V","alpha":"V","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER V","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0057","mufichar":"W","alpha":"W","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER W","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0058","mufichar":"X","alpha":"X","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER X","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0059","mufichar":"Y","alpha":"Y","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Y","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"005A","mufichar":"Z","alpha":"Z","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Z","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"005B","mufichar":"[","alpha":"_punctuation","ent":"[","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LEFT SQUARE BRACKET","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"005C","mufichar":"\\","alpha":"_punctuation","ent":"\","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"REVERSE SOLIDUS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"005D","mufichar":"]","alpha":"_punctuation","ent":"]","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"RIGHT SQUARE BRACKET","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"005E","mufichar":"^","alpha":"_spacing","ent":"ˆ","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"CIRCUMFLEX ACCENT","deprecated":"0","notes":" \u0301","updated":"2020-07-08 06:16:23"},
{"codepoint":"005F","mufichar":"_","alpha":"_punctuation","ent":"_","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LOW LINE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0060","mufichar":"`","alpha":"_spacing","ent":"`","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"GRAVE ACCENT","deprecated":"0","notes":" \u0308","updated":"2020-07-08 06:16:23"},
{"codepoint":"0061","mufichar":"a","alpha":"A","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER A","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0062","mufichar":"b","alpha":"B","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER B","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0063","mufichar":"c","alpha":"C","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER C","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0064","mufichar":"d","alpha":"D","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER D","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0065","mufichar":"e","alpha":"E","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER E","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0066","mufichar":"f","alpha":"F","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER F","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0067","mufichar":"g","alpha":"G","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER G","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0068","mufichar":"h","alpha":"H","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER H","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0069","mufichar":"i","alpha":"I","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER I","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"006A","mufichar":"j","alpha":"J","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER J","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"006B","mufichar":"k","alpha":"K","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER K","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"006C","mufichar":"l","alpha":"L","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER L","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"006D","mufichar":"m","alpha":"M","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER M","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"006E","mufichar":"n","alpha":"N","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER N","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"006F","mufichar":"o","alpha":"O","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER O","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0070","mufichar":"p","alpha":"P","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER P","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0071","mufichar":"q","alpha":"Q","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER Q","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0072","mufichar":"r","alpha":"R","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER R","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0073","mufichar":"s","alpha":"S","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER S","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0074","mufichar":"t","alpha":"T","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER T","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0075","mufichar":"u","alpha":"U","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER U","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0076","mufichar":"v","alpha":"V","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER V","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0077","mufichar":"w","alpha":"W","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER W","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0078","mufichar":"x","alpha":"X","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER X","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0079","mufichar":"y","alpha":"Y","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER Y","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"007A","mufichar":"z","alpha":"Z","ent":"\u2014","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LATIN SMALL LETTER Z","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"007B","mufichar":"{","alpha":"_punctuation","ent":"{","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"LEFT CURLY BRACKET","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"007C","mufichar":"|","alpha":"_punctuation","ent":"|","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"VERTICAL LINE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"007D","mufichar":"}","alpha":"_punctuation","ent":"}","entmufi":"0","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"RIGHT CURLY BRACKET","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"007E","mufichar":"~","alpha":"_spacing","ent":"&tld;","entmufi":"1","codepointalt":"","range":"BasLat","mufiversion":"3.0","description":"TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"007F","mufichar":"","alpha":"_formatting","ent":"&del;","entmufi":"1","codepointalt":"","range":"BasLat","mufiversion":"4.0 additions","description":"DELETE","deprecated":"0","notes":"","updated":"2020-07-08 06:17:05"},
{"codepoint":"00A0","mufichar":"\u00a0","alpha":"_formatting","ent":" ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"NO-BREAK SPACE","deprecated":"0","notes":" ","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A1","mufichar":"\u00a1","alpha":"_punctuation","ent":"¡","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"INVERTED EXCLAMATION MARK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00A2","mufichar":"\u00a2","alpha":"_symbols","ent":"¢","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"CENT SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A3","mufichar":"\u00a3","alpha":"_symbols","ent":"£","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"POUND SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A4","mufichar":"\u00a4","alpha":"_symbols","ent":"¤","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"CURRENCY SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A5","mufichar":"\u00a5","alpha":"_symbols","ent":"¥","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"YEN SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A6","mufichar":"\u00a6","alpha":"_punctuation","ent":"¦","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"BROKEN BAR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00A7","mufichar":"\u00a7","alpha":"_symbols","ent":"§","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"SECTION SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A8","mufichar":"\u00a8","alpha":"_spacing","ent":"¨","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"DIAERESIS","deprecated":"0","notes":"The entities \u2018&die;\u2019 and \u2018&Ddot;\u2019 are also being used for this character.","updated":"2020-07-08 06:16:24"},
{"codepoint":"00A9","mufichar":"\u00a9","alpha":"_symbols","ent":"©","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"COPYRIGHT SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00AA","mufichar":"\u00aa","alpha":"A","ent":"ª","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"FEMININE ORDINAL INDICATOR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00AB","mufichar":"\u00ab","alpha":"_punctuation","ent":"«","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LEFT-POINTING DOUBLE ANGLE QUOTATION MARK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00AC","mufichar":"\u00ac","alpha":"_symbols","ent":"¬","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"NOT SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00AD","mufichar":"\u00ad","alpha":"_formatting","ent":"­","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"SOFT HYPHEN","deprecated":"0","notes":"The soft hyphen is an invisible character.","updated":"2020-07-08 06:16:24"},
{"codepoint":"00AE","mufichar":"\u00ae","alpha":"_symbols","ent":"®","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"REGISTERED SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00AF","mufichar":"\u00af","alpha":"_spacing","ent":"¯","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"4.0 additions","description":"MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:17:05"},
{"codepoint":"00B0","mufichar":"\u00b0","alpha":"_symbols","ent":"°","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"DEGREE SIGN","deprecated":"0","notes":"The degree sign should not to be confused with 00BA MASCULINE ORDINAL INDICATOR in Lat1Suppl, typically used in Romance languages.","updated":"2020-07-08 06:16:24"},
{"codepoint":"00B1","mufichar":"\u00b1","alpha":"_symbols","ent":"±","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"PLUS-MINUS SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00B2","mufichar":"\u00b2","alpha":"_numbers","ent":"²","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"SUPERSCRIPT TWO","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00B3","mufichar":"\u00b3","alpha":"_numbers","ent":"³","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"SUPERSCRIPT THREE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00B4","mufichar":"\u00b4","alpha":"_spacing","ent":"´","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"4.0 additions","description":"ACUTE ACCENT","deprecated":"0","notes":"","updated":"2020-07-08 06:17:05"},
{"codepoint":"00B5","mufichar":"\u03bc","alpha":"_symbols","ent":"µ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"MICRO SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00B6","mufichar":"\u00b6","alpha":"_symbols","ent":"¶","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"PILCROW SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00B7","mufichar":"\u00b7","alpha":"_punctuation","ent":"·","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"MIDDLE DOT","deprecated":"0","notes":"A high dot, F1F8 DISTINCTIO, is listed in the section on Medieval punctuation p. 145 below.","updated":"2020-07-08 06:16:23"},
{"codepoint":"00B8","mufichar":"\u00b8","alpha":"_spacing","ent":"¸","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"4.0 additions","description":"CEDILLA","deprecated":"0","notes":"","updated":"2020-07-08 06:17:05"},
{"codepoint":"00B9","mufichar":"\u00b9","alpha":"_numbers","ent":"¹","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"SUPERSCRIPT ONE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00BA","mufichar":"\u00ba","alpha":"O","ent":"º","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"MASCULINE ORDINAL INDICATOR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00BB","mufichar":"\u00bb","alpha":"_punctuation","ent":"»","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00BC","mufichar":"\u00bc","alpha":"_numbers","ent":"¼","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"VULGAR FRACTION ONE QUARTER","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00BD","mufichar":"\u00bd","alpha":"_numbers","ent":"½","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"VULGAR FRACTION ONE HALF","deprecated":"0","notes":"The entity \u2018½\u2019 is also being used for this character.","updated":"2020-07-08 06:16:23"},
{"codepoint":"00BE","mufichar":"\u00be","alpha":"_numbers","ent":"¾","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"VULGAR FRACTION THREE QUARTERS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00BF","mufichar":"\u00bf","alpha":"_punctuation","ent":"¿","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"INVERTED QUESTION MARK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00C0","mufichar":"\u00c0","alpha":"A","ent":"À","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C1","mufichar":"\u00c1","alpha":"A","ent":"Á","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C2","mufichar":"\u00c2","alpha":"A","ent":"Â","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C3","mufichar":"\u00c3","alpha":"A","ent":"Ã","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C4","mufichar":"\u00c4","alpha":"A","ent":"Ä","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C5","mufichar":"\u00c5","alpha":"A","ent":"Å","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH RING ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C6","mufichar":"\u00c6","alpha":"A","ent":"Æ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER AE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C7","mufichar":"\u00c7","alpha":"C","ent":"Ç","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER C WITH CEDILLA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C8","mufichar":"\u00c8","alpha":"E","ent":"È","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00C9","mufichar":"\u00c9","alpha":"E","ent":"É","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00CA","mufichar":"\u00ca","alpha":"E","ent":"Ê","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00CB","mufichar":"\u00cb","alpha":"E","ent":"Ë","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00CC","mufichar":"\u00cc","alpha":"I","ent":"Ì","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00CD","mufichar":"\u00cd","alpha":"I","ent":"Í","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00CE","mufichar":"\u00ce","alpha":"I","ent":"Î","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00CF","mufichar":"\u00cf","alpha":"I","ent":"Ï","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00D0","mufichar":"\u00d0","alpha":"D","ent":"Ð","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER ETH","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00D1","mufichar":"\u00d1","alpha":"N","ent":"Ñ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER N WITH TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D2","mufichar":"\u00d2","alpha":"O","ent":"Ò","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D3","mufichar":"\u00d3","alpha":"O","ent":"Ó","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D4","mufichar":"\u00d4","alpha":"O","ent":"Ô","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D5","mufichar":"\u00d5","alpha":"O","ent":"Õ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D6","mufichar":"\u00d6","alpha":"O","ent":"Ö","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D7","mufichar":"\u00d7","alpha":"_symbols","ent":"×","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"MULTIPLICATION SIGN","deprecated":"0","notes":"The multiplication sign, 00D7, can also be used as a metrical character. The Unicode character 00D7 MULTIPLICATION SIGN can also be used as an encoding for METRICAL ANCEPS. We also recommend retaining the entity name \u2018×\u2019 in this context.","updated":"2020-07-08 06:16:24"},
{"codepoint":"00D8","mufichar":"\u00d8","alpha":"O","ent":"Ø","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00D9","mufichar":"\u00d9","alpha":"U","ent":"Ù","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00DA","mufichar":"\u00da","alpha":"U","ent":"Ú","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00DB","mufichar":"\u00db","alpha":"U","ent":"Û","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00DC","mufichar":"\u00dc","alpha":"U","ent":"Ü","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00DD","mufichar":"\u00dd","alpha":"Y","ent":"Ý","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Y WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00DE","mufichar":"\u00de","alpha":"\u00de","ent":"Þ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN CAPITAL LETTER THORN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00DF","mufichar":"\u00df","alpha":"S","ent":"ß","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER SHARP S","deprecated":"0","notes":"Originally, the \u2018sharp s\u2019 was a ligature of 017F \u2018s\u2019 and 0073 \u2018s\u2019. The \u2018sharp s\u2019 is also listed as an abbreviation character in section 4 below. In Medieval sources, the \u201csharp s\u201d can also be used as an abbreviation character, in which case it may be specified by markup, e.g. by the element","updated":"2020-07-08 06:16:23"},
{"codepoint":"00E0","mufichar":"\u00e0","alpha":"A","ent":"à","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E1","mufichar":"\u00e1","alpha":"A","ent":"á","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E2","mufichar":"\u00e2","alpha":"A","ent":"â","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E3","mufichar":"\u00e3","alpha":"A","ent":"ã","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E4","mufichar":"\u00e4","alpha":"A","ent":"ä","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E5","mufichar":"\u00e5","alpha":"A","ent":"å","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH RING ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E6","mufichar":"\u00e6","alpha":"A","ent":"æ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER AE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E7","mufichar":"\u00e7","alpha":"C","ent":"ç","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER C WITH CEDILLA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E8","mufichar":"\u00e8","alpha":"E","ent":"è","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00E9","mufichar":"\u00e9","alpha":"E","ent":"é","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00EA","mufichar":"\u00ea","alpha":"E","ent":"ê","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00EB","mufichar":"\u00eb","alpha":"E","ent":"ë","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00EC","mufichar":"\u00ec","alpha":"I","ent":"ì","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00ED","mufichar":"\u00ed","alpha":"I","ent":"í","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00EE","mufichar":"\u00ee","alpha":"I","ent":"î","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00EF","mufichar":"\u00ef","alpha":"I","ent":"ï","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00F0","mufichar":"\u00f0","alpha":"D","ent":"ð","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER ETH","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"00F1","mufichar":"\u00f1","alpha":"N","ent":"ñ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER N WITH TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F2","mufichar":"\u00f2","alpha":"O","ent":"ò","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F3","mufichar":"\u00f3","alpha":"O","ent":"ó","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F4","mufichar":"\u00f4","alpha":"O","ent":"ô","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F5","mufichar":"\u00f5","alpha":"O","ent":"õ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F6","mufichar":"\u00f6","alpha":"O","ent":"ö","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F7","mufichar":"\u00f7","alpha":"_symbols","ent":"÷","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"DIVISION SIGN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"00F8","mufichar":"\u00f8","alpha":"O","ent":"ø","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00F9","mufichar":"\u00f9","alpha":"U","ent":"ù","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH GRAVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00FA","mufichar":"\u00fa","alpha":"U","ent":"ú","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00FB","mufichar":"\u00fb","alpha":"U","ent":"û","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00FC","mufichar":"\u00fc","alpha":"U","ent":"ü","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00FD","mufichar":"\u00fd","alpha":"Y","ent":"ý","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER Y WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00FE","mufichar":"\u00fe","alpha":"\u00de","ent":"þ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER THORN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"00FF","mufichar":"\u00ff","alpha":"Y","ent":"ÿ","entmufi":"0","codepointalt":"","range":"Lat1Suppl","mufiversion":"3.0","description":"LATIN SMALL LETTER Y WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0100","mufichar":"\u0100","alpha":"A","ent":"Ā","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0101","mufichar":"\u0101","alpha":"A","ent":"ā","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0102","mufichar":"\u0102","alpha":"A","ent":"Ă","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0103","mufichar":"\u0103","alpha":"A","ent":"ă","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0104","mufichar":"\u0104","alpha":"A","ent":"Ą","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0105","mufichar":"\u0105","alpha":"A","ent":"ą","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0106","mufichar":"\u0106","alpha":"C","ent":"Ć","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER C WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0107","mufichar":"\u0107","alpha":"C","ent":"ć","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER C WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"010A","mufichar":"\u010a","alpha":"C","ent":"Ċ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER C WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"010B","mufichar":"\u010b","alpha":"C","ent":"ċ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER C WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0110","mufichar":"\u0110","alpha":"D","ent":"Đ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER D WITH STROKE","deprecated":"0","notes":"For the minuscle and majuscule forms of eth in Medieval Nordic (and Modern Icelandic) 00F0 and 00D0 in Lat1Suppl should be used (see below).","updated":"2020-07-08 06:16:22"},
{"codepoint":"0111","mufichar":"\u0111","alpha":"D","ent":"đ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER D WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0112","mufichar":"\u0112","alpha":"E","ent":"Ē","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0113","mufichar":"\u0113","alpha":"E","ent":"ē","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0114","mufichar":"\u0114","alpha":"E","ent":"&Ebreve;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0115","mufichar":"\u0115","alpha":"E","ent":"&ebreve;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0116","mufichar":"\u0116","alpha":"E","ent":"Ė","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0117","mufichar":"\u0117","alpha":"E","ent":"ė","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0118","mufichar":"\u0118","alpha":"E","ent":"Ę","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0119","mufichar":"\u0119","alpha":"E","ent":"ę","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0120","mufichar":"\u0120","alpha":"G","ent":"Ġ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER G WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0121","mufichar":"\u0121","alpha":"G","ent":"ġ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER G WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0127","mufichar":"\u0127","alpha":"H","ent":"ħ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER H WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"012A","mufichar":"\u012a","alpha":"I","ent":"Ī","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"012B","mufichar":"\u012b","alpha":"I","ent":"ī","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"012C","mufichar":"\u012c","alpha":"I","ent":"&Ibreve;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"012D","mufichar":"\u012d","alpha":"I","ent":"&ibreve;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"012E","mufichar":"\u012e","alpha":"I","ent":"Į","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"012F","mufichar":"\u012f","alpha":"I","ent":"į","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0130","mufichar":"\u0130","alpha":"I","ent":"İ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER I WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0131","mufichar":"\u0131","alpha":"I","ent":"ı","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER DOTLESS I","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0132","mufichar":"IJ","alpha":"I","ent":"IJ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LIGATURE IJ","deprecated":"0","notes":"Superscript letters","updated":"2020-07-08 06:16:22"},
{"codepoint":"0133","mufichar":"ij","alpha":"I","ent":"ij","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LIGATURE IJ","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0139","mufichar":"\u0139","alpha":"L","ent":"Ĺ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER L WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"013A","mufichar":"\u013a","alpha":"L","ent":"ĺ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER L WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0141","mufichar":"\u0141","alpha":"L","ent":"Ł","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER L WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0142","mufichar":"\u0142","alpha":"L","ent":"ł","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER L WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0143","mufichar":"\u0143","alpha":"N","ent":"Ń","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER N WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0144","mufichar":"\u0144","alpha":"N","ent":"ń","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER N WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"014A","mufichar":"\u014a","alpha":"N","ent":"Ŋ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER ENG","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"014B","mufichar":"\u014b","alpha":"N","ent":"ŋ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER ENG","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"014C","mufichar":"\u014c","alpha":"O","ent":"Ō","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"014D","mufichar":"\u014d","alpha":"O","ent":"ō","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"014E","mufichar":"\u014e","alpha":"O","ent":"&Obreve;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"014F","mufichar":"\u014f","alpha":"O","ent":"&obreve;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0150","mufichar":"\u0150","alpha":"O","ent":"Ő","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH DOUBLE ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0151","mufichar":"\u0151","alpha":"O","ent":"ő","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH DOUBLE ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0152","mufichar":"\u0152","alpha":"O","ent":"Œ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LIGATURE OE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0153","mufichar":"\u0153","alpha":"O","ent":"œ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LIGATURE OE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0154","mufichar":"\u0154","alpha":"R","ent":"Ŕ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER R WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0155","mufichar":"\u0155","alpha":"R","ent":"ŕ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER R WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"015A","mufichar":"\u015a","alpha":"S","ent":"Ś","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER S WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"015B","mufichar":"\u015b","alpha":"S","ent":"ś","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER S WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"016A","mufichar":"\u016a","alpha":"U","ent":"Ū","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"016B","mufichar":"\u016b","alpha":"U","ent":"ū","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"016C","mufichar":"\u016c","alpha":"U","ent":"Ŭ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"016D","mufichar":"\u016d","alpha":"U","ent":"ŭ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"016E","mufichar":"\u016e","alpha":"U","ent":"Ů","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH RING ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"016F","mufichar":"\u016f","alpha":"U","ent":"ů","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH RING ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0170","mufichar":"\u0170","alpha":"U","ent":"Ű","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH DOUBLE ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0171","mufichar":"\u0171","alpha":"U","ent":"ű","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH DOUBLE ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0172","mufichar":"\u0172","alpha":"U","ent":"Ų","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0173","mufichar":"\u0173","alpha":"U","ent":"ų","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0174","mufichar":"\u0174","alpha":"W","ent":"Ŵ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER W WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0175","mufichar":"\u0175","alpha":"W","ent":"ŵ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER W WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0176","mufichar":"\u0176","alpha":"Y","ent":"Ŷ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Y WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0177","mufichar":"\u0177","alpha":"Y","ent":"ŷ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER Y WITH CIRCUMFLEX","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0178","mufichar":"\u0178","alpha":"Y","ent":"Ÿ","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Y WITH DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"017B","mufichar":"\u017b","alpha":"Z","ent":"Ż","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Z WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"017C","mufichar":"\u017c","alpha":"Z","ent":"ż","entmufi":"0","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER Z WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"017F","mufichar":"\u017f","alpha":"S","ent":"&slong;","entmufi":"1","codepointalt":"","range":"LatExtA","mufiversion":"3.0","description":"LATIN SMALL LETTER LONG S","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0180","mufichar":"\u0180","alpha":"B","ent":"&bstrok;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER B WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0195","mufichar":"\u0195","alpha":"H","ent":"&hwair;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER HV","deprecated":"0","notes":"The Unicode name for this character is LATIN SMALL LETTER HV but should rather be LATIN SMALL LETTER HWAIR, in analogy with the capital form, 01F6 LATIN CAPITAL LETTER HWAIR. It is being used in the transcription of texts in Gothic (an extinct East Germanic language).","updated":"2020-07-08 06:16:22"},
{"codepoint":"0199","mufichar":"\u0199","alpha":"K","ent":"&khook;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER K WITH HOOK","deprecated":"0","notes":"For a similar-looking but separate character, the ligature of \u2018k\u2019 and long \u2018s\u2019, see PUA subrange 5, p. 98. (Note the hackle of the long \u2018s\u2019 in that character.)","updated":"2020-07-08 06:16:23"},
{"codepoint":"019A","mufichar":"\u019a","alpha":"L","ent":"&lbar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER L WITH BAR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"019C","mufichar":"\u019c","alpha":"M","ent":"&Mturn;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"4.0 additions","description":"LATIN CAPITAL LETTER TURNED M","deprecated":"0","notes":"The small variant is located in IPA Extensions at 026F. Note that both 019C and 026F can be described as ligatures of uu, as has been done in subrange 1 of the Private Use Area (p. 91\u201392 below), and that the precomposed characters with uu + double acute accent are assigned to subrange 17 (p. 130\u2013131 below).","updated":"2020-07-08 06:17:05"},
{"codepoint":"019E","mufichar":"\u019e","alpha":"N","ent":"&nlrleg;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER N WITH LONG RIGHT LEG","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01A6","mufichar":"\u01a6","alpha":"R","ent":"&YR;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN LETTER YR","deprecated":"0","notes":"The character 01A6 is the capital form of the small capital character 0280 when used for transliterating the runic character \u16e3 in the common Germanic runes and as such of very marginal use (e.g. if runic transliteration should be capitalised as part of a book title or in similar, derived contexts).","updated":"2020-07-08 06:16:23"},
{"codepoint":"01B5","mufichar":"\u01b5","alpha":"Z","ent":"&Zstrok;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Z WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01B6","mufichar":"\u01b6","alpha":"Z","ent":"&zstrok;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER Z WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01B7","mufichar":"\u01b7","alpha":"\u021d","ent":"&EZH;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER EZH","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01BF","mufichar":"\u01bf","alpha":"V","ent":"&wynn;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN LETTER WYNN","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01D1","mufichar":"\u01d1","alpha":"O","ent":"&Ocar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH CARON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01D2","mufichar":"\u01d2","alpha":"O","ent":"&ocar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH CARON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01D3","mufichar":"\u01d3","alpha":"U","ent":"&Ucar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH CARON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01D4","mufichar":"\u01d4","alpha":"U","ent":"&ucar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH CARON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01D5","mufichar":"\u01d5","alpha":"U","ent":"Ümacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01D6","mufichar":"\u01d6","alpha":"U","ent":"ümacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER U WITH DIAERESIS AND MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01E2","mufichar":"\u01e2","alpha":"A","ent":"Æmacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER AE WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01E3","mufichar":"\u01e3","alpha":"A","ent":"æmacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER AE WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01E4","mufichar":"\u01e4","alpha":"G","ent":"&Gstrok;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER G WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01E5","mufichar":"\u01e5","alpha":"G","ent":"&gstrok;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER G WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01EA","mufichar":"\u01ea","alpha":"O","ent":"&Oogon;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01EB","mufichar":"\u01eb","alpha":"O","ent":"&oogon;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01EC","mufichar":"\u01ec","alpha":"O","ent":"&Oogonmacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH OGONEK AND MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01ED","mufichar":"\u01ed","alpha":"O","ent":"&oogonmacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH OGONEK AND MACRON","deprecated":"0","notes":"The Unicode Standard v. 5.1 erroneously claims that the pair of characters above is used in Old Icelandic.","updated":"2020-07-08 06:16:23"},
{"codepoint":"01F4","mufichar":"\u01f4","alpha":"G","ent":"&Gacute;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER G WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01F5","mufichar":"\u01f5","alpha":"G","ent":"ǵ","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER G WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01F6","mufichar":"\u01f6","alpha":"H","ent":"&HWAIR;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER HWAIR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01F7","mufichar":"\u01f7","alpha":"V","ent":"&WYNN;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER WYNN","deprecated":"0","notes":"The character WYNN was originally a Runic letter in the common Germanic runic alphabet, \u16b9 (16B9), called wynn in the Anglo-Saxon Rune poem. It was borrowed into the Latin alphabet in England to denote \/w\/ and is usually rendered with \u2039w\u203a in simplified transcriptions.","updated":"2020-07-08 06:16:23"},
{"codepoint":"01FC","mufichar":"\u01fc","alpha":"A","ent":"Æacute;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER AE WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01FD","mufichar":"\u01fd","alpha":"A","ent":"æacute;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER AE WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"01FE","mufichar":"\u01fe","alpha":"O","ent":"Øacute;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH STROKE AND ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"01FF","mufichar":"\u01ff","alpha":"O","ent":"øacute;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH STROKE AND ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"021C","mufichar":"\u021c","alpha":"\u021d","ent":"&YOGH;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER YOGH","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"021D","mufichar":"\u021d","alpha":"\u021d","ent":"&yogh;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER YOGH","deprecated":"0","notes":"The \u2018yogh\u2019 character is usually drawn with a rounded top in contradistinction to the at top of EZH (0292 and 01B7).","updated":"2020-07-08 06:16:23"},
{"codepoint":"0226","mufichar":"\u0226","alpha":"A","ent":"&Adot;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER A WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0227","mufichar":"\u0227","alpha":"A","ent":"&adot;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER A WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"022A","mufichar":"\u022a","alpha":"O","ent":"Ömacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"022B","mufichar":"\u022b","alpha":"O","ent":"ömacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH DIAERESIS AND MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"022E","mufichar":"\u022e","alpha":"O","ent":"&Odot;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"022F","mufichar":"\u022f","alpha":"O","ent":"⊙","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0232","mufichar":"\u0232","alpha":"Y","ent":"&Ymacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER Y WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0233","mufichar":"\u0233","alpha":"Y","ent":"&ymacr;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER Y WITH MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0237","mufichar":"\u0237","alpha":"J","ent":"&jnodot;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER DOTLESS J","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0248","mufichar":"\u0248","alpha":"J","ent":"&Jbar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN CAPITAL LETTER J WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0249","mufichar":"\u0249","alpha":"J","ent":"&jbar;","entmufi":"1","codepointalt":"","range":"LatExtB","mufiversion":"3.0","description":"LATIN SMALL LETTER J WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0254","mufichar":"\u0254","alpha":"O","ent":"&oopen;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER OPEN O","deprecated":"0","notes":"This character is primarily used in phonetic transcriptions, e.g. for the Old Norse low back vowel \u2039\u01eb\u203a. It can also be used for the Latin abbreviation sign \u2018con\u2019, but we recommend using the reversed \u2018c\u2019 for this usage; see under the letter \u2018C\u2019 above.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0256","mufichar":"\u0256","alpha":"D","ent":"&dtail;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER D WITH TAIL","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0259","mufichar":"\u0259","alpha":"E","ent":"&schwa;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER SCHWA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"025F","mufichar":"\u025f","alpha":"J","ent":"&jnodotstrok;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER DOTLESS J WITH STROKE","deprecated":"0","notes":"In many fonts, this character looks like an \u2018f\u2019 which has been turned (i.e. rotated 180\u00b0), but according to the descriptive name it should be designed as a dotless \u2018j\u2019 with a horizontal stroke. The turned \u2018f\u2019 should be seen as a typographical short-cut which was understandable in the days of lead typesetting.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0261","mufichar":"\u0261","alpha":"G","ent":"&gopen;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER SCRIPT G","deprecated":"0","notes":"Although this character is intended to be used as a variant letter forms (one of many \u2018g\u2019 forms), there is no reason why an existing Unicode character should not be used. Because this character will otherwise only be used in phonetic notations, no conflict is likely to arise. The same considerations apply to the usage of small capitals, also used as phonetic characters.","updated":"2020-07-08 06:16:22"},
{"codepoint":"0262","mufichar":"\u0262","alpha":"G","ent":"&gscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL G","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"0266","mufichar":"\u0266","alpha":"H","ent":"&hhook;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER H WITH HOOK","deprecated":"0","notes":"See PUA subrange 5 (p. 98) for a similar-looking but separate character, the ligature of \u2018h\u2019 and long \u2018s\u2019 (note the hackle of the long \u2018s\u2019 in that character).","updated":"2020-07-08 06:16:22"},
{"codepoint":"0268","mufichar":"\u0268","alpha":"I","ent":"&istrok;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER I WITH STROKE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"026A","mufichar":"\u026a","alpha":"I","ent":"&iscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL I","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"026F","mufichar":"\u026f","alpha":"M","ent":"&mturn;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"4.0 additions","description":"LATIN SMALL LETTER TURNED M","deprecated":"0","notes":"The capital variant is located in Latin Extended-B at 019C. Note that both 026F and 019C can be described as ligatures of <i>uu<\/i>, as has been done in subrange 1 of the Private Use Area (pp. 91\u201392), and that the precomposed characters with <i>uu<\/i> + double acute accent are assigned to subrange 17 (pp. 130\u2013131).","updated":"2020-07-08 06:17:05"},
{"codepoint":"0272","mufichar":"\u0272","alpha":"N","ent":"&nlfhook;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER N WITH LEFT HOOK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0274","mufichar":"\u0274","alpha":"N","ent":"&nscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL N","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0276","mufichar":"\u0276","alpha":"O","ent":"&oeligscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL OE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"027C","mufichar":"\u027c","alpha":"R","ent":"&rdes;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER R WITH LONG LEG","deprecated":"0","notes":"The character 027C is primarily used in phonetic transcriptions. It can also be used for a variant of 0072 LATIN SMALL LETTER R used in Carolingian style. Note that it should not be mixed with LATIN SMALL LETTER LONG S DESCENDING (see variant letter forms under S below) and probably not with LATIN ENLARGED SMALL LETTER R WITH DESCENDER (see variant letter forms under R below).","updated":"2020-07-08 06:16:23"},
{"codepoint":"0280","mufichar":"\u0280","alpha":"R","ent":"&rscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL R","deprecated":"0","notes":"The runic character \u16e3 in the common Germanic runes (the older futhark) had the name yr and has in modern times been transliterated with 0280 LATIN LETTER SMALL CAPITAL R. Since runes do not exhibit any distinction between small and capital form, the small capital letter R is all that is needed for transliterating purposes, but a capital counrterpart has nonetheless been accepted by the Unicode Standard; cf. 01A6 below.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0289","mufichar":"\u0289","alpha":"U","ent":"&ubar;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER U BAR","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"028F","mufichar":"\u028f","alpha":"Y","ent":"&yscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL Y","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0292","mufichar":"\u0292","alpha":"\u021d","ent":"&ezh;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN SMALL LETTER EZH","deprecated":"0","notes":"The capital form of \u2018ezh\u2019 is located at 01B7 in Latin Extended-B above.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0299","mufichar":"\u0299","alpha":"B","ent":"&bscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL B","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"029C","mufichar":"\u029c","alpha":"H","ent":"&hscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL H","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"029F","mufichar":"\u029f","alpha":"L","ent":"&lscap;","entmufi":"1","codepointalt":"","range":"IPAExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL L","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"02BC","mufichar":"\u02bc","alpha":"_spacing","ent":"&apomod;","entmufi":"1","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"MODIFIER LETTER APOSTROPHE","deprecated":"0","notes":"LATIN ABBREVIATION SIGN APOSTROPHE \u2014 The ordinary apostrophe, 0027 APOSTROPHE, has been listed in section 5 below. We recommend that the character 02BC should be used to encode ab- breviations, and that 0027 should be used in all other contexts.","updated":"2020-07-08 06:16:23"},
{"codepoint":"02C8","mufichar":"\u02c8","alpha":"_spacing","ent":"&verbarup;","entmufi":"1","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"MODIFIER LETTER VERTICAL LINE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"02D8","mufichar":"\u02d8","alpha":"_spacing","ent":"˘","entmufi":"0","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"02D9","mufichar":"\u02d9","alpha":"_spacing","ent":"˙","entmufi":"0","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"02DA","mufichar":"\u02da","alpha":"_spacing","ent":"˚","entmufi":"0","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"RING ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"02DB","mufichar":"\u02db","alpha":"_spacing","ent":"˛","entmufi":"0","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"02DC","mufichar":"\u02dc","alpha":"_spacing","ent":"˜","entmufi":"0","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"SMALL TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"02DD","mufichar":"\u02dd","alpha":"_spacing","ent":"˝","entmufi":"0","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"DOUBLE ACUTE ACCENT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"02E3","mufichar":"\u02e3","alpha":"X","ent":"&xmod;","entmufi":"1","codepointalt":"","range":"SpModLet","mufiversion":"3.0","description":"MODIFIER LETTER SMALL X","deprecated":"0","notes":"This character is used to indicate paper manuscripts by the Ordbog over det norr\u00f8ne prosasprog project in Copenhagen and by the international Old Norse skaldic project. Since it easily can be confused with superscript Roman numeral \u2018x\u2019 it should either be designed with a cursive form, or there should be a cursive (italic) counterpart to this character in the typeface.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0300","mufichar":"\u25cc\u0300","alpha":"_combining","ent":"&combgrave;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING GRAVE ACCENT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0301","mufichar":"\u25cc\u0301","alpha":"_combining","ent":"&combacute;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING ACUTE ACCENT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0302","mufichar":"\u25cc\u0302","alpha":"_combining","ent":"&combcirc;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING CIRCUMFLEX ACCENT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0303","mufichar":"\u25cc\u0303","alpha":"_combining","ent":"&combtilde;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING TILDE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0304","mufichar":"\u25cc\u0304","alpha":"_combining","ent":"&combmacr;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING MACRON","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0305","mufichar":"\u25cc\u0305","alpha":"_combining","ent":"&bar;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING OVERLINE","deprecated":"0","notes":"COMBINING ABBREVIATION MARK BAR ABOVE \u2014 The character above is frequently used as an abbreviation mark in Medieval (and Classical) manuscripts. We therefore recommend the entity name \u2018&bar;\u2019 rather than the more cumbersome \u2018&combovl;\u2019. As a rule, abbreviation marks behave as overlines, i.e. they should connect with adjoining characters. In that way, a continuous overline over more than one character can be displayed by a sequence of single-character overlines.","updated":"2020-07-08 06:16:23"},
{"codepoint":"0306","mufichar":"\u25cc\u0306","alpha":"_combining","ent":"&combbreve;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING BREVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0307","mufichar":"\u25cc\u0307","alpha":"_combining","ent":"&combdot;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0308","mufichar":"\u25cc\u0308","alpha":"_combining","ent":"&combuml;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DIAERESIS","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0309","mufichar":"\u25cc\u0309","alpha":"_combining","ent":"&combhook;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING HOOK ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"030A","mufichar":"\u25cc\u030a","alpha":"_combining","ent":"&combring;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING RING ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"030B","mufichar":"\u25cc\u030b","alpha":"_combining","ent":"&combdblac;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOUBLE ACUTE ACCENT","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"030D","mufichar":"\u25cc\u030d","alpha":"_combining","ent":"&combsgvertl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING VERTICAL LINE ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"030E","mufichar":"\u25cc\u030e","alpha":"_combining","ent":"&combdbvertl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOUBLE VERTICAL LINE ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0315","mufichar":"\u25cc\u0315","alpha":"_combining","ent":"&combcomma;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING COMMA ABOVE RIGHT","deprecated":"0","notes":"COMBINING ABBREVIATION MARK COMMA ABOVE RIGHT","updated":"2020-07-08 06:16:23"},
{"codepoint":"0323","mufichar":"\u25cc\u0323","alpha":"_combining","ent":"&combdotbl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0327","mufichar":"\u25cc\u0327","alpha":"_combining","ent":"&combced;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING CEDILLA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0328","mufichar":"\u25cc\u0328","alpha":"_combining","ent":"&combogon;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING OGONEK","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0332","mufichar":"\u25cc\u0332","alpha":"_combining","ent":"&barbl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LOW LINE","deprecated":"0","notes":"COMBINING ABBREVIATION MARK BAR BELOW","updated":"2020-07-08 06:16:23"},
{"codepoint":"0333","mufichar":"\u25cc\u0333","alpha":"_combining","ent":"&dblbarbl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOUBLE LOW LINE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0336","mufichar":"\u25cc\u0336","alpha":"_combining","ent":"&baracr;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LONG STROKE OVERLAY","deprecated":"0","notes":"COMBINING ABBREVIATION MARK BAR ACROSS","updated":"2020-07-08 06:16:23"},
{"codepoint":"033E","mufichar":"\u25cc\u033e","alpha":"_combining","ent":"&combtildevert;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING VERTICAL TILDE","deprecated":"0","notes":"COMBINING ABBREVIATION MARK VERTICAL TILDE","updated":"2020-07-08 06:16:23"},
{"codepoint":"033F","mufichar":"\u25cc\u033f","alpha":"_combining","ent":"&dblovl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOUBLE OVERLINE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0359","mufichar":"\u25cc\u0359","alpha":"_combining","ent":"&combastbl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING ASTERISK BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"035B","mufichar":"\u25cc\u035b","alpha":"_combining","ent":"&er;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING ZIGZAG ABOVE","deprecated":"0","notes":"COMBINING ABBREVIATION MARK ZIGZAG ABOVE","updated":"2020-07-08 06:16:23"},
{"codepoint":"035C","mufichar":"\u25cc\u035c\u25cc","alpha":"_combining","ent":"&combdblbrevebl;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING DOUBLE BREVE BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0360","mufichar":"\u25cc\u0360","alpha":"_combining","ent":"","entmufi":"0","codepointalt":"","range":"CombDiaMk","mufiversion":"Characters added after v. 4.0","description":"COMBINING DOUBLE TILDE","deprecated":"0","notes":"Added by TW 13\/3\/17 - cf. https:\/\/en.wikisource.org\/wiki\/Page:Public_General_Statutes_1896.djvu\/34 ","updated":"2020-07-08 06:16:24"},
{"codepoint":"0363","mufichar":"\u25cc\u0363","alpha":"_combining","ent":"&asup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER A","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0364","mufichar":"\u25cc\u0364","alpha":"_combining","ent":"&esup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER E","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0365","mufichar":"\u25cc\u0365","alpha":"_combining","ent":"&isup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER I","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0366","mufichar":"\u25cc\u0366","alpha":"_combining","ent":"&osup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER O","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0367","mufichar":"\u25cc\u0367","alpha":"_combining","ent":"&usup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER U","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0368","mufichar":"\u25cc\u0368","alpha":"_combining","ent":"⫐","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER C","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0369","mufichar":"\u25cc\u0369","alpha":"_combining","ent":"&dsup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER D","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"036A","mufichar":"\u25cc\u036a","alpha":"_combining","ent":"&hsup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER H","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"036B","mufichar":"\u25cc\u036b","alpha":"_combining","ent":"&msup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER M","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"036C","mufichar":"\u25cc\u036c","alpha":"_combining","ent":"&rsup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER R","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"036D","mufichar":"\u25cc\u036d","alpha":"_combining","ent":"&tsup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER T","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"036E","mufichar":"\u25cc\u036e","alpha":"_combining","ent":"&vsup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER V","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"036F","mufichar":"\u25cc\u036f","alpha":"_combining","ent":"&xsup;","entmufi":"1","codepointalt":"","range":"CombDiaMk","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER X","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"0398","mufichar":"\u0398","alpha":"T","ent":"Θ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"3.0","description":"GREEK CAPITAL LETTER THETA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B1","mufichar":"\u03b1","alpha":"(Greek)","ent":"α","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER ALPHA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B2","mufichar":"\u03b2","alpha":"(Greek)","ent":"β","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER BETA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B3","mufichar":"\u03b3","alpha":"(Greek)","ent":"γ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER GAMMA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B4","mufichar":"\u03b4","alpha":"(Greek)","ent":"δ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER DELTA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B5","mufichar":"\u03b5","alpha":"(Greek)","ent":"ε","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER EPSILON","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B6","mufichar":"\u03b6","alpha":"(Greek)","ent":"ζ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER ZETA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B7","mufichar":"\u03b7","alpha":"(Greek)","ent":"η","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER ETA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B8","mufichar":"\u03b8","alpha":"T","ent":"θ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"3.0","description":"GREEK SMALL LETTER THETA","deprecated":"0","notes":"The theta characters are sometimes used as an abbreviation sign for obiit \u2018he\/she died\u2019, but we recommend using the alternative obiit pair of characters in subrange 5 of the Private Use Area (p. 76 below). See also the introduction in Ernst W.E. H\u00fcbner, Exempla Scripturae Epigraphicae Latinae, Berlin: Reimer 1885 (rpt. Berlin: de Gruyter, 1979), in which he states that the theta should be kept apart from the obiit sign (barred \u2018o\u2019).","updated":"2020-07-08 06:16:24"},
{"codepoint":"03B9","mufichar":"\u03b9","alpha":"(Greek)","ent":"ι","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER IOTA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03BA","mufichar":"\u03ba","alpha":"(Greek)","ent":"κ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER KAPPA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03BB","mufichar":"\u03bb","alpha":"(Greek)","ent":"&lamda;","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER LAMDA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03BC","mufichar":"\u03bc","alpha":"(Greek)","ent":"μ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER MU","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03BD","mufichar":"\u03bd","alpha":"(Greek)","ent":"ν","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER NU","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03BE","mufichar":"\u03be","alpha":"(Greek)","ent":"ξ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER XI","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"03C3","mufichar":"\u03c3","alpha":"(Greek)","ent":"σ","entmufi":"0","codepointalt":"","range":"GkCo","mufiversion":"Greek","description":"GREEK SMALL LETTER SIGMA","deprecated":"0","notes":"Used in numbering manuscripts","updated":"2020-07-08 06:16:24"},
{"codepoint":"10FB","mufichar":"\u10fb","alpha":"_punctuation","ent":"&tridotright;","entmufi":"1","codepointalt":"","range":"Georgian","mufiversion":"3.0","description":"GEORGIAN PARAGRAPH SEPARATOR","deprecated":"0","notes":"PUNCTUATION MARK RIGHT-POINTING TRIANGULAR DOTS \u2014 Also used as a punctuation mark in languages other than Georgian.","updated":"2020-07-08 06:16:23"},
{"codepoint":"16A0","mufichar":"\u16a0","alpha":"F","ent":"&fMedrun;","entmufi":"1","codepointalt":"","range":"Run","mufiversion":"3.0","description":"RUNIC LETTER FEHU FEOH FE F","deprecated":"0","notes":"RUNIC MEDIEVAL LETTER F \u2014\u00a0Runes are alphabetical signs in their own right, but in Medieval Nordic manuscripts written in the Latin alphabet they function as abbreviation characters, e.g. the f rune, meaning \u2018f\u00e9\u2019 (cattle and\/or goods). The Unicode descriptive name for this character is RUNIC LETTER FEHU FEOH FE F, but here a simpler name has been given, RUNIC MEDIEVAL LETTER F.","updated":"2020-07-08 06:16:23"},
{"codepoint":"16A1","mufichar":"\u16a1","alpha":"V","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER V","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A2","mufichar":"\u16a2","alpha":"U","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER URUZ UR U","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A3","mufichar":"\u16a3","alpha":"Y","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER YR","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A4","mufichar":"\u16a4","alpha":"Y","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER Y","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A5","mufichar":"\u16a5","alpha":"W","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER W","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A6","mufichar":"\u16a6","alpha":"\u00de","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER THURISAZ THURS THORN","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A7","mufichar":"\u16a7","alpha":"D","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER ETH","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16A8","mufichar":"\u16a8","alpha":"A","ent":"","entmufi":"0","codepointalt":"","range":"Run","mufiversion":"Runic","description":"RUNIC LETTER ANSUZ A","deprecated":"0","notes":"","updated":"2020-07-08 06:22:51"},
{"codepoint":"16D8","mufichar":"\u16d8","alpha":"_spacing","ent":"&mMedrun;","entmufi":"1","codepointalt":"","range":"Run","mufiversion":"3.0","description":"RUNIC MEDIEVAL LETTER M","deprecated":"0","notes":"RUNIC MEDIEVAL LETTER M \u2014\u00a0In Medieval Nordic manuscripts written in the Latin alphabet, the m rune serves as an abbreviation for \u2018ma\u00f0r\u2019 (man). The Unicode descriptive name for this character is RUNIC LETTER LONG-BRANCH-MADR M, but here a simpler name has been given, RUNIC MEDIEVAL LETTER M.","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D00","mufichar":"\u1d00","alpha":"A","ent":"&ascap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL A","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1D01","mufichar":"\u1d01","alpha":"A","ent":"æscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL AE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1D04","mufichar":"\u1d04","alpha":"C","ent":"&cscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL C","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1D05","mufichar":"\u1d05","alpha":"D","ent":"&dscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL D","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1D06","mufichar":"\u1d06","alpha":"D","ent":"ðscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL ETH","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1D07","mufichar":"\u1d07","alpha":"E","ent":"&escap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL E","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1D0A","mufichar":"\u1d0a","alpha":"J","ent":"&jscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL J","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D0B","mufichar":"\u1d0b","alpha":"K","ent":"&kscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL K","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D0D","mufichar":"\u1d0d","alpha":"M","ent":"&mscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL M","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D0F","mufichar":"\u1d0f","alpha":"O","ent":"&oscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL O","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D18","mufichar":"\u1d18","alpha":"P","ent":"&pscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL P","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D1B","mufichar":"\u1d1b","alpha":"T","ent":"&tscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL T","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D1C","mufichar":"\u1d1c","alpha":"U","ent":"&uscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL U","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D20","mufichar":"\u1d20","alpha":"V","ent":"&vscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL V","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D21","mufichar":"\u1d21","alpha":"W","ent":"&wscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL W","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D22","mufichar":"\u1d22","alpha":"Z","ent":"&zscap;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN LETTER SMALL CAPITAL Z","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D35","mufichar":"\u1d35","alpha":"_numbers","ent":"&Imod;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"MODIFIER CAPITAL LETTER I","deprecated":"0","notes":"This is a spacing character, which can be used for raised Roman numerals; cf. subrange 11 in the Private Use Area below (p. 111\u2013112).","updated":"2020-07-08 06:16:23"},
{"codepoint":"1D6B","mufichar":"\u1d6b","alpha":"U","ent":"&uelig;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"4.0 additions","description":"LATIN SMALL LETTER UE","deprecated":"0","notes":"The capital variant is assigned to E8C8 in subrange 1 of the Private Use Area (p. 91). Note that both 1D6B and E8C8 can be described as ligatures of ue, and for this reason, they have both been included in subrange 1 below, pp. 91\u201392.","updated":"2020-07-08 06:17:05"},
{"codepoint":"1D79","mufichar":"\u1d79","alpha":"G","ent":"&gins;","entmufi":"1","codepointalt":"","range":"PhonExt","mufiversion":"3.0","description":"LATIN SMALL LETTER INSULAR G","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1DCD","mufichar":"\u25cc\u1dcd\u25cc","alpha":"_combining","ent":"&combcircdbl;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING DOUBLE CIRCUMFLEX ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DCE","mufichar":"\u25cc\u1dce","alpha":"_combining","ent":"&combcurl;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING OGONEK ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DCF","mufichar":"\u25cc\u1dcf","alpha":"_combining","ent":"&ersub;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING ZIGZAG BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD0","mufichar":"\u25cc\u1dd0","alpha":"_combining","ent":"&combisbelow;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING IS BELOW","deprecated":"0","notes":"4: Spacing abbreviation and modifying characters","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD1","mufichar":"\u25cc\u1dd1","alpha":"_combining","ent":"&ur;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING UR ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD2","mufichar":"\u25cc\u1dd2","alpha":"_combining","ent":"&us;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING US ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD3","mufichar":"\u25cc\u1dd3","alpha":"_combining","ent":"&ra;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER FLATTENED OPEN A ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD4","mufichar":"\u25cc\u1dd4","alpha":"_combining","ent":"æsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER AE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD5","mufichar":"\u25cc\u1dd5","alpha":"_combining","ent":"&aoligsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LIGATURE AO","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD6","mufichar":"\u25cc\u1dd6","alpha":"_combining","ent":"&avligsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LIGATURE AV","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD7","mufichar":"\u25cc\u1dd7","alpha":"_combining","ent":"çsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER C CEDILLA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD8","mufichar":"\u25cc\u1dd8","alpha":"_combining","ent":"&drotsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN LETTER INSULAR D","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DD9","mufichar":"\u25cc\u1dd9","alpha":"_combining","ent":"ðsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER ETH","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DDA","mufichar":"\u25cc\u1dda","alpha":"_combining","ent":"&gsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER G","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DDB","mufichar":"\u25cc\u1ddb","alpha":"_combining","ent":"&gscapsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN LETTER SMALL CAPITAL G","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DDC","mufichar":"\u25cc\u1ddc","alpha":"_combining","ent":"&ksup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER K","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DDD","mufichar":"\u25cc\u1ddd","alpha":"_combining","ent":"&lsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER L","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DDE","mufichar":"\u25cc\u1dde","alpha":"_combining","ent":"&lscapsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN LETTER SMALL CAPITAL L","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DDF","mufichar":"\u25cc\u1ddf","alpha":"_combining","ent":"&mscapsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN LETTER SMALL CAPITAL M","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE0","mufichar":"\u25cc\u1de0","alpha":"_combining","ent":"⊅","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER N","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE1","mufichar":"\u25cc\u1de1","alpha":"_combining","ent":"&nscapsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN LETTER SMALL CAPITAL N","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE2","mufichar":"\u25cc\u1de2","alpha":"_combining","ent":"&rscapsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN LETTER SMALL CAPITAL R","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE3","mufichar":"\u25cc\u1de3","alpha":"_combining","ent":"&rrotsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER R ROTUNDA","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE4","mufichar":"\u25cc\u1de4","alpha":"_combining","ent":"&ssup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER S","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE5","mufichar":"\u25cc\u1de5","alpha":"_combining","ent":"&slongsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER LONG S","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1DE6","mufichar":"\u25cc\u1de6","alpha":"_combining","ent":"&zsup;","entmufi":"1","codepointalt":"","range":"CombDiaMkS","mufiversion":"3.0","description":"COMBINING LATIN SMALL LETTER Z","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E02","mufichar":"\u1e02","alpha":"B","ent":"&Bdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER B WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E03","mufichar":"\u1e03","alpha":"B","ent":"&bdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER B WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E04","mufichar":"\u1e04","alpha":"B","ent":"&Bdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER B WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E05","mufichar":"\u1e05","alpha":"B","ent":"&bdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER B WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E0A","mufichar":"\u1e0a","alpha":"D","ent":"&Ddot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER D WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E0B","mufichar":"\u1e0b","alpha":"D","ent":"&ddot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER D WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E0C","mufichar":"\u1e0c","alpha":"D","ent":"&Ddotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER D WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E0D","mufichar":"\u1e0d","alpha":"D","ent":"&ddotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER D WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E16","mufichar":"\u1e16","alpha":"E","ent":"&Emacracute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER E WITH MACRON AND ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E17","mufichar":"\u1e17","alpha":"E","ent":"&emacracute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER E WITH MACRON AND ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E1E","mufichar":"\u1e1e","alpha":"F","ent":"&Fdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER F WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E1F","mufichar":"\u1e1f","alpha":"F","ent":"&fdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER F WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E22","mufichar":"\u1e22","alpha":"H","ent":"&hdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER H WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E23","mufichar":"\u1e23","alpha":"H","ent":"&Hdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER H WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E24","mufichar":"\u1e24","alpha":"H","ent":"&Hdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER H WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E25","mufichar":"\u1e25","alpha":"H","ent":"&hdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER H WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:22"},
{"codepoint":"1E30","mufichar":"\u1e30","alpha":"K","ent":"&Kacute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER K WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E31","mufichar":"\u1e31","alpha":"K","ent":"&kacute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER K WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E32","mufichar":"\u1e32","alpha":"K","ent":"&Kdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER K WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E33","mufichar":"\u1e33","alpha":"K","ent":"&kdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER K WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E36","mufichar":"\u1e36","alpha":"L","ent":"&Ldotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER L WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E37","mufichar":"\u1e37","alpha":"L","ent":"&ldotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER L WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E3E","mufichar":"\u1e3e","alpha":"M","ent":"&Macute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER M WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E3F","mufichar":"\u1e3f","alpha":"M","ent":"&macute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER M WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E40","mufichar":"\u1e40","alpha":"M","ent":"&Mdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER M WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E41","mufichar":"\u1e41","alpha":"M","ent":"&mdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER M WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E42","mufichar":"\u1e42","alpha":"M","ent":"&Mdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER M WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E43","mufichar":"\u1e43","alpha":"M","ent":"&mdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER M WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E44","mufichar":"\u1e44","alpha":"N","ent":"&Ndot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER N WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E45","mufichar":"\u1e45","alpha":"N","ent":"&ndot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER N WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E46","mufichar":"\u1e46","alpha":"N","ent":"&Ndotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER N WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E47","mufichar":"\u1e47","alpha":"N","ent":"&ndotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER N WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E52","mufichar":"\u1e52","alpha":"O","ent":"&Omacracute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER O WITH MACRON AND ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E53","mufichar":"\u1e53","alpha":"O","ent":"&omacracute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER O WITH MACRON AND ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E54","mufichar":"\u1e54","alpha":"P","ent":"&Pacute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER P WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E55","mufichar":"\u1e55","alpha":"P","ent":"&pacute;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER P WITH ACUTE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E56","mufichar":"\u1e56","alpha":"P","ent":"&Pdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER P WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E57","mufichar":"\u1e57","alpha":"P","ent":"&pdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER P WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E58","mufichar":"\u1e58","alpha":"R","ent":"&Rdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER R WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E59","mufichar":"\u1e59","alpha":"R","ent":"&rdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER R WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E5A","mufichar":"\u1e5a","alpha":"R","ent":"&Rdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER R WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E5B","mufichar":"\u1e5b","alpha":"R","ent":"&rdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER R WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E60","mufichar":"\u1e60","alpha":"S","ent":"&Sdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER S WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E61","mufichar":"\u1e61","alpha":"S","ent":"⋅","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER S WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E62","mufichar":"\u1e62","alpha":"S","ent":"&Sdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER S WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E63","mufichar":"\u1e63","alpha":"S","ent":"&sdotbl;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER S WITH DOT BELOW","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E6A","mufichar":"\u1e6a","alpha":"T","ent":"&Tdot;","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN CAPITAL LETTER T WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},
{"codepoint":"1E6B","mufichar":"\u1e6b","alpha":"T","ent":"⃛","entmufi":"1","codepointalt":"","range":"LatExtAdd","mufiversion":"3.0","description":"LATIN SMALL LETTER T WITH DOT ABOVE","deprecated":"0","notes":"","updated":"2020-07-08 06:16:23"},