-
Notifications
You must be signed in to change notification settings - Fork 7
/
tcpchars.xml
2245 lines (2245 loc) · 109 KB
/
tcpchars.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:XSL="http://www.w3.org/1999/XSL/Transform">
<teiHeader>
<fileDesc>
<titleStmt>
<title type="main">TCP characters</title>
<editor>Paul Schaffner</editor>
</titleStmt>
<publicationStmt>
<p>https://github.com/textcreationpartnership/TCPTools</p>
</publicationStmt>
<sourceDesc>
<p>from charmap.sgm, maintained by TCP</p>
</sourceDesc>
</fileDesc>
<encodingDesc>
<charDecl>
<desc>reversed (mirror-image) Greek capital gamma. Glyph variant of Ggr.</desc>
<char xml:id="Ggr-rev">
<mapping type="default">{Ggr-rev}</mapping>
<mapping type="Arial Unicode MS">Γ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Prefer the disambiguous entites Moonfirst, Moonlast, Moonnew, Moonround. Generic symbol for Moon (planet) or alchemical silver, currently displays as first quarter moon (as does Moonfirst).</desc>
<char xml:id="Moon">
<charName>MOON</charName>
<mapping type="default">{Moon}</mapping>
<mapping type="Arial Unicode MS">☽</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>new moon calendrical symbol, most often depicted by black circle; see also Moonfirst, Moonlast, Moonround</desc>
<char xml:id="Moonnew">
<mapping type="default">{new moon}</mapping>
<mapping type="Arial Unicode MS">●</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>full moon calendrical symbol, most often depicted by white circle; see also Moonfirst, Moonlast, Moonnew</desc>
<char xml:id="Moonround">
<mapping type="default">{full moon}</mapping>
<mapping type="Arial Unicode MS">❍</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>reversed (mirror-image) Greek capital rho. Glyph variant of Rgr.</desc>
<char xml:id="Rgr-rev">
<mapping type="default">{Rgr-rev}</mapping>
<mapping type="Arial Unicode MS">Ρ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>reversed (mirror-image) Greek capital sigma. Glyph variant of Sgr.</desc>
<char xml:id="Sgr-rev">
<mapping type="default">{Sgr-rev}</mapping>
<mapping type="Arial Unicode MS">Σ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>upper-case swash form of V (ambiguous character sometimes behaves like U, sometimes like V)</desc>
<char xml:id="V">
<mapping type="default">{V}</mapping>
<mapping type="Arial Unicode MS">Ʋ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for PRI (P topped by an apostrophe or decadent superscript i)</desc>
<char xml:id="abPRI">
<mapping type="default">{PRI}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>upper case version of the abbreviation symbol for '-QUE'; Cp. abque.</desc>
<char xml:id="abQUE">
<mapping type="default">{QUE}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>upper case version of the abbreviation symbol for '-US'; Cp. abus.</desc>
<char xml:id="abUS">
<mapping type="default">{US}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>An apostrophe standing in for an abbreviation, especially what would be another existing tcp abbreviation entity such as abus; mostly found in legal French or Latin texts. Do not use for normal apostrophe abbreviations in English words such as it's or heal'd, rather use an apostrophe ' (').</desc>
<char xml:id="abbrapo">
<mapping type="default">{'}</mapping>
<mapping type="Arial Unicode MS">’</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation string for '-bus' resembling -bz</desc>
<char xml:id="abbus">
<mapping type="default">{bus}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation sybol for 'er' or 're'; may take several forms including COMBINING OGONEK ABOVE (U+1DCE) or APOSTROPHE</desc>
<char xml:id="aber">
<mapping type="default">{er}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for pre (usu p topped by a horizontal bar or tilde); most cases will continue to be captured as p~</desc>
<char xml:id="abpre">
<mapping type="default">{pre}</mapping>
<mapping type="Unicode">p̄</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for pri (p topped by an apostrophe or decadent superscript i)</desc>
<char xml:id="abpri">
<mapping type="default">{pri}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for French que or qu', resembles a letter q or g with the loop of the descender continued in a half circle clockwise up past the top of the letter. Rather like an @ sign flipped vertically.</desc>
<char xml:id="abqu">
<mapping type="default">{qu}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation for Latin quam</desc>
<char xml:id="abquam">
<mapping type="default">{quam}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for '-que'</desc>
<char xml:id="abque">
<mapping type="default">{que}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for qui (atypical barred-q form only?)</desc>
<char xml:id="abqui">
<mapping type="default">{qui}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>2-shaped r with stroke (like abrum entity), abbreviation symbol for '-rim'</desc>
<char xml:id="abris">
<mapping type="default">{ris}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for 'sed'. For uncertain cases use sloop</desc>
<char xml:id="absed">
<mapping type="default">{sed}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>abbreviation symbol for 'ser'. For uncertain cases use sloop</desc>
<char xml:id="abser">
<mapping type="default">{ser}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for alum: a simple circle. Unicode references a different glyph for this meaning.</desc>
<char xml:id="alum">
<mapping type="default">{alum}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical sign for alum, alternative form; horizontally divided circle with + attached to left side. Unicode references a different glyph for this meaning.</desc>
<char xml:id="alum2">
<mapping type="default">{alum}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>math. Mark that identifies following listed points as defining an angle, physically rendered as horizontal brace or similar mark, Cp. ang</desc>
<char xml:id="angulum">
<mapping type="default">{angulum}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical symbol for antimony. Unicode attaches both 'earth' and 'antimony' to the same (earth) codepoint. TCP separates into two entities.</desc>
<char xml:id="antimony">
<mapping type="default">{antimony}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for arsenic: two small circles joined at their midpoints by vertical line, or attached, forming an 8-shaped symbol, usu tilted to the right.</desc>
<char xml:id="arsenic2">
<mapping type="default">{arsenic}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>final barline or close, glyph variant of musical barline (U+1D100).</desc>
<char xml:id="barlinef">
<charName>MUSICAL SYMBOL SINGLE FINAL BARLINE</charName>
<mapping type="default">{final barline}</mapping>
<mapping type="Unicode">𝄀</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for bezoar minerale (a preparation of antimony); resembles the astrological sign for Leo (in our only example, printer presumably hijacked the available glyph). DISPLAY AS LEO (U+264C)</desc>
<char xml:id="bezoarMin">
<mapping type="default">{Bezoar minerale}</mapping>
<mapping type="Arial Unicode MS">♌</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for blood; resembles a down-pointing triangle bisected horizontally by a line and with a dot in the upper half</desc>
<char xml:id="blood">
<mapping type="default">{blood}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical sign for cinnabar, alternative form; downward-pointing open triangle surmounted by +</desc>
<char xml:id="cinnabar2">
<mapping type="default">{cinnabar}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>open circle with central dot, like sun ☉ or circled dot operator but without those meanings</desc>
<char xml:id="circdot">
<mapping type="default">{circdot}</mapping>
<mapping type="Times New Roman">⊙</mapping>
<mapping type="Arial Unicode MS">⊙</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Entity stand-in for character kludge "~"</desc>
<char xml:id="cmbAbbrStroke">
<charName>COMBINING MACRON-LIKE ABBREVIATION STROKE</charName>
<mapping type="Arial Unicode MS">̄</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Looks like reversed cut time symbol. May be the same as timeimperf-prolatimperf-rev-str</desc>
<char xml:id="commonTime-allegro">
<charName>MUSICAL SYMBOL COMMON TIME ALLEGRO</charName>
<mapping type="default">{common time (allegro)}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Appears to be 'cut time'; may be same as timeimperf-prolatimperf-str</desc>
<char xml:id="commonTime-largo">
<charName>MUSICAL SYMBOL CUT TIME</charName>
<mapping type="default">{common time (largro)}</mapping>
<mapping type="PUA">𝄵</mapping>
</char>
</charDecl>
<charDecl>
<desc>an upright cross symbol + , different from the ISOpub cross entity (a ballot cross), perhaps we should rename our entity.</desc>
<char xml:id="cross">
<mapping type="default">{cross}</mapping>
<mapping type="Arial Unicode MS">✚</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for day: resembles a small circle with a vertical line sticking up from it (vertically or slanted to the right), conjunction (U+260C). Unicode attaches both 'conjunction' and 'day' to this 'conjunction' codepoint. TCP separates these senses into two entities.</desc>
<char xml:id="day">
<mapping type="default">{day}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>decimal separator symbol resembling lower left box-drawing character (L), sometimes extended under decimal portion of number. Use without surrounding spaces.</desc>
<char xml:id="decimalL">
<charName>L-shaped decimal separator</charName>
<mapping type="default">{.}</mapping>
<mapping type="Arial Unicode MS">⌊</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>decimal separator symbol resembling small letter c or mirror image of (comma-like) Arabic decimal separator</desc>
<char xml:id="decimalc">
<mapping type="default">{.}</mapping>
<mapping type="Arial Unicode MS">.</mapping>
<mapping type="Arial Unicode MS">.</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>lower case d with a hook or loop attached at upper right, or similar. Essentially an abbreviating d, with many meanings, e.g. for pence (d.)</desc>
<char xml:id="dhook">
<charName>LATIN SMALL LETTER D WITH COMBINING REVERSED COMMA ABOVE</charName>
<mapping type="default">{dhook}</mapping>
<mapping type="Arial Unicode MS">d̔</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical direct symbol (resembles check mark)</desc>
<char xml:id="direct">
<mapping type="default">{direct}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for divisor or divided by (formally identical to eccentric greater than symbol (entity morethan), ⫍ SQUARE LEFT OPEN BOX OPERATOR displays as box</desc>
<char xml:id="divisor">
<mapping type="default">{divisor}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>in dance instructions: designates female dancer; repurposing of symbol for Moon (or silver; display as FIRST QUARTER MOON.</desc>
<char xml:id="dnc-female">
<mapping type="default">{female dancer}</mapping>
<mapping type="Arial Unicode MS">☽</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>in dance instructions: designates male dancer; repurposing of symbol for Sun (or gold); display as Sun.</desc>
<char xml:id="dnc-male">
<mapping type="default">{male dancer}</mapping>
<mapping type="Arial Unicode MS">☉</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>in dance instructions: repeat preceding strain once.</desc>
<char xml:id="dnc-repeat">
<mapping type="default">{repeat strain once}</mapping>
<mapping type="Arial Unicode MS"> .̲̲ </mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>in dance instructions: repeat preceding strain twice.</desc>
<char xml:id="dnc-repeat2">
<mapping type="default">{repeat strain twice}</mapping>
<mapping type="Arial Unicode MS"> :̲̲ </mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>in dance instructions: repeat preceding strain thrice.</desc>
<char xml:id="dnc-repeat3">
<mapping type="default">{repeat strain once}</mapping>
<mapping type="Arial Unicode MS"> .̲:̲̲ </mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>in dance instructions: repeat entire tune. Possibly a variant of the standard musical Repeat sign. Display as DOTTED CROSS.</desc>
<char xml:id="dnc-startover">
<mapping type="default">{repeat entire tune}</mapping>
<mapping type="Arial Unicode MS">⁜</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>dra(ch)m, Unicode treats as equivalent with LATIN SMALL LETTER EZH; TCP treats separately</desc>
<char xml:id="dram">
<charName>DRAM</charName>
<mapping type="default">{dram}</mapping>
<mapping type="Arial Unicode MS">ʒ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>three asterisks arranged in down-pointing triangle like dtridot. An inverted asterism.</desc>
<char xml:id="dtristar">
<mapping type="default">{inverted asterism}</mapping>
<mapping type="Arial Unicode MS">{inverted ⁂}</mapping>
<mapping type="Unicode">*⁎*</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>last in a series of marginal quotation marks (used only by keyers, removed in review)</desc>
<char xml:id="endq">
<mapping type="default">{endq}</mapping>
<mapping type="Times New Roman">”</mapping>
<mapping type="Arial Unicode MS">”</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>9-shaped abbrev. for 'es'</desc>
<char xml:id="es">
<mapping type="default">{es}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>single character or ligature meaning ampersand+c or etc, especially in early Caxtons</desc>
<char xml:id="etc">
<mapping type="default">{etc}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>female, as distinguished from Venus. Display as Venus.</desc>
<char xml:id="female">
<charName>FEMALE SIGN</charName>
<mapping type="default">{female}</mapping>
<mapping type="Times New Roman">♀</mapping>
<mapping type="Arial Unicode MS">♀</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<char xml:id="finallamed">
<charName>HEBREW LETTER FINAL LAMED</charName>
<mapping type="default">{final lamed}</mapping>
<mapping type="Arial Unicode MS">ﬥ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>five dashes arranged as quincunx (like fivespot on dice)</desc>
<char xml:id="fivedash">
<mapping type="default">{fivedash}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>No Unicode 41 equiviant.</desc>
<char xml:id="fjlig">
<charName>LATIN SMALL LIGATURE FJ</charName>
<mapping type="default">{fj}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical sign for glass; circle with horizontal line attached externally at center right</desc>
<char xml:id="glass">
<mapping type="default">{glass}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>horizontal (or lazy) double dagger (pointing neither left nor right)</desc>
<char xml:id="hDagger">
<mapping type="default">{horizontal double dagger}</mapping>
<mapping type="Arial Unicode MS">{horizontal ‡}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>cross with left arm removed. Cp. trine2, trine</desc>
<char xml:id="halfcross">
<mapping type="default">{half cross}</mapping>
<mapping type="Arial Unicode MS">⊢</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>heart-shaped symbol</desc>
<char xml:id="heart">
<mapping type="default">{heart}</mapping>
<mapping type="Times New Roman">♡</mapping>
<mapping type="Arial Unicode MS">♡</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for higher or more acute term (open triangle pointing up with horizontal stroke below), ⩟ LOGICAL AND WITH UNDERBAR displays as box</desc>
<char xml:id="higherterm">
<mapping type="default">{higher term}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for higher or more acute (open triangle pointing up)</desc>
<char xml:id="higherthan">
<mapping type="default">{higher than}</mapping>
<mapping type="Times New Roman">∧</mapping>
<mapping type="Arial Unicode MS">∧</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Greek and Syriac critical siglum as used by Origen and his successors. This is a glyph variant of the generic OBELUS entity (U+2E13) (horizontal line with dot above), which may in some examples have distinctive meaning. Display as mathematical DOT MINUS.</desc>
<char xml:id="hyperlemnisc">
<charName>SINGLE-DOTTED OBELOS (dot above)</charName>
<mapping type="default">{hyperlemniscus}</mapping>
<mapping type="Times New Roman">.—̇</mapping>
<mapping type="Arial Unicode MS">∸</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Greek and Syriac critical siglum as used by Origen and his successors. This is a glyph variant of the generic OBELUS entity (U+2E13) (horizontal line with dot below), which may in some examples have distinctive meaning. Display as the Syriac derivative (SYRIAC HARKLEAN OBELUS; but may need to change this because of RTL property of Syriac)</desc>
<char xml:id="hypolemnisc">
<charName>SINGLE-DOTTED OBELOS (dot below)</charName>
<mapping type="default">{hypolemniscus}</mapping>
<mapping type="Times New Roman">.6</mapping>
<mapping type="Arial Unicode MS">܋</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>inverted dagger (blade up, hilt down)</desc>
<char xml:id="idagger">
<mapping type="default">{inverted dagger}</mapping>
<mapping type="Arial Unicode MS">{inverted †}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Intended for rotated pilcrow (i.e. normal pilcrow sort used upside-down); not in Unicode. Displays as reversed pilcrow instead.</desc>
<char xml:id="ipara">
<charName>INVERTED PILCROW SIGN</charName>
<mapping type="default">{inverted pilcrow}</mapping>
<mapping type="Arial Unicode MS">⁋</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>left dagger (blade left, hilt right) found in E000392 REF 11</desc>
<char xml:id="ldagger">
<mapping type="default">{left dagger}</mapping>
<mapping type="Arial Unicode MS">{left †}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Left-pointing Greek diple, display as quotation mark. For dotted diples add dots. consider reassigning this to U+2329</desc>
<char xml:id="ldiple">
<mapping type="default">{diple}</mapping>
<mapping type="Arial Unicode MS">‹</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>stylized leaf</desc>
<char xml:id="leaf">
<mapping type="default">{leaf}</mapping>
<mapping type="Arial Unicode MS">❧</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>span deliberately left blank, to be filled in by hand, as in a legal form</desc>
<char xml:id="leftblank">
<mapping type="default">{left blank}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Greek and Syriac critical siglum as used by Origen and his successors. This is a glyph variant of the generic OBELUS entity (U+2E13) (horizontal line with dot above and below), which may in some examples have distinctive meaning. Display as division sign.</desc>
<char xml:id="lemnisc">
<charName>DOUBLE-DOTTED OBELOS</charName>
<mapping type="default">{lemniscus}</mapping>
<mapping type="Times New Roman">∻</mapping>
<mapping type="Arial Unicode MS">÷</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>math. Defined as 'minus [quam]' unusual form of less than used with angles (may filter to lt)</desc>
<char xml:id="lessthan">
<mapping type="default">{less than}</mapping>
<mapping type="Times New Roman"><</mapping>
<mapping type="Arial Unicode MS">‹</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Generic abbreviation symbol attached to 'l'; If this glyph serves as a brevigraph for Welsh double-l, prefer to capture as entity ll (i.e. treat it as a glyph variant of ll).</desc>
<char xml:id="lloop">
<charName>LATIN SMALL LETTER L WITH MODIFIER LETTER RIGHT HALF RING</charName>
<mapping type="default">{lloop}</mapping>
<mapping type="Arial Unicode MS">lʾ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for logarithm</desc>
<char xml:id="logarithm">
<mapping type="default">{logarithm}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for lower or graver term (open triangle pointing down with horizontal stroke above)</desc>
<char xml:id="lowerterm">
<mapping type="default">{lower term}</mapping>
<mapping type="Arial Unicode MS">⊽</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for lower or graver than (open triangle pointing down)</desc>
<char xml:id="lowerthan">
<mapping type="default">{lower than}</mapping>
<mapping type="Times New Roman">∨</mapping>
<mapping type="Arial Unicode MS">∨</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<char xml:id="lpunctel">
<charName>REVERSED PUNCTUS ELEVATUS</charName>
<mapping type="default">{reversed punctus elevatus}</mapping>
<mapping type="Times New Roman">؛</mapping>
<mapping type="Arial Unicode MS">؛</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>reversed (mirror-image) question mark. Resembles lpunctel but serves as query mark, not as opening bracketing punctuation; cf. INVERTED QUESTION MARK ¿</desc>
<char xml:id="lquest">
<mapping type="default">{reversed question mark}</mapping>
<mapping type="Arial Unicode MS">{reversed ?}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>chemical or alchemical sign, possibly for magnesia/um (based on symbols.com). Resembles circle with cross or arrow attached to right side.</desc>
<char xml:id="magnesia">
<mapping type="default">{magnesia}</mapping>
<mapping type="Arial Unicode MS">○→</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>male, as distinguished from Mars. Display as Mars.</desc>
<char xml:id="male">
<charName>MALE SIGN</charName>
<mapping type="default">{male}</mapping>
<mapping type="Times New Roman">♂</mapping>
<mapping type="Arial Unicode MS">♂</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for drop (minim), using the zodiacal sign for Scorpio (U+264F). Display as U+264F.</desc>
<char xml:id="minim">
<mapping type="default">{drop}</mapping>
<mapping type="Arial Unicode MS">♏</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for drop (minim), using the zodiacal sign for Virgo (U+264D). Display as U+264D.</desc>
<char xml:id="minim2">
<mapping type="default">{drop}</mapping>
<mapping type="Arial Unicode MS">♍</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>math. Defined as 'maius [quam]' unusual form of greater than used with angles (may filter to gt)</desc>
<char xml:id="morethan">
<mapping type="default">{more than}</mapping>
<mapping type="Times New Roman">></mapping>
<mapping type="Arial Unicode MS">›</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for multiplier or multiplied by (resembles m followed by tilde)</desc>
<char xml:id="multiplier">
<mapping type="default">{multiplier}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>generic musical note symbol. Display as dingbat-type quarter note (U+2669)</desc>
<char xml:id="musicNote">
<mapping type="default">♩</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical symbol demisemiquaver note, 𝅘𝅥𝅰 MUSICAL SYMBOL THIRTY-SECOND NOTE displays as box.</desc>
<char xml:id="notedemisemiquaver">
<mapping type="default">{demisemiquaver note}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical or medical sign for oil, glyph variant resembling two concentric circles. DISPLAY AS CIRCLED WHITE BULLET (U+29BE).</desc>
<char xml:id="oil2">
<mapping type="default">{oil}</mapping>
<mapping type="Arial Unicode MS">⦾</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>See comments at http://www.textcreationpartnership.org/docs/dox/cantillation.html.</desc>
<char xml:id="pashtayin">
<charName>HEBREW ACCENT PASHTAYIN</charName>
<mapping type="default">{pashtayin}</mapping>
<mapping type="Times New Roman">֙ ֨</mapping>
<mapping type="Arial Unicode MS">֙ ֨</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol of potestas or power (perhaps a form of powerof1 entity)</desc>
<char xml:id="potestas">
<mapping type="default">{potestas}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for root or quantity to the first power</desc>
<char xml:id="powerof1">
<mapping type="default">{powerof1}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for square or quadrat or quantity to the power of two</desc>
<char xml:id="powerof2">
<mapping type="default">{powerof2}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for cube or quantity to the power of three</desc>
<char xml:id="powerof3">
<mapping type="default">{powerof3}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for square of square (foursquared quadrat or quadrat of quadrat) or quantity to the power of four</desc>
<char xml:id="powerof4">
<mapping type="default">{powerof4}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for sursolid or quantity to the power of five</desc>
<char xml:id="powerof5">
<mapping type="default">{powerof5}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for squared cube (quadrat of cube) or quantity to the power of six</desc>
<char xml:id="powerof6">
<mapping type="default">{powerof6}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>penta-prime (five prime marks), follos prime, Prime (double prime), tprime (triple prime), qprime (quadra-prime)). Not in Unicode.</desc>
<char xml:id="pprime">
<mapping type="default">{penta-prime}</mapping>
<mapping type="Arial Unicode MS">'''''</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for multiplication product (resembles m with superscripted i or acute)</desc>
<char xml:id="product">
<mapping type="default">{product}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for continued proportion</desc>
<char xml:id="proportion2">
<mapping type="default">{continued proportion}</mapping>
<mapping type="Times New Roman">∝</mapping>
<mapping type="Arial Unicode MS">∝</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>fallback character for ambiguous dot-like punctuation marks that could be : . , ; etc.</desc>
<char xml:id="punc">
<mapping type="default">{.}</mapping>
<mapping type="Arial Unicode MS">▪</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>punctus elevatus (inverted and reversed semicolon, similar to question mark)</desc>
<char xml:id="punctel">
<charName>PUNCTUS ELEVATUS</charName>
<mapping type="default">{punctel}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>quadruple prime</desc>
<char xml:id="qprime">
<mapping type="default">{quadruple prime}</mapping>
<mapping type="Arial Unicode MS">''''</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>quad dot leaning left (without specific meaning). Displays as alternating high dots and periods (full stops).</desc>
<char xml:id="quaddotl">
<mapping type="default">˙.˙.</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>quad dot leaning right (without specific meaning) Displays as alternating high dots and periods (full stops).</desc>
<char xml:id="quaddotr">
<mapping type="default">.˙.˙</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>hollow square used as symbol for quadrine or quartile or quadrant or quadrature, 90 degrees</desc>
<char xml:id="quadrine">
<mapping type="default">{quadrine}</mapping>
<mapping type="Times New Roman">□</mapping>
<mapping type="Arial Unicode MS">□</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for quotient (resembles divisor with slight hook)</desc>
<char xml:id="quotient">
<mapping type="default">{quotient}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for ratio(n) (a special use of the Rx symbol)</desc>
<char xml:id="ration">
<mapping type="default">{ration}</mapping>
<mapping type="Arial Unicode MS">ℛ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>right dagger (blade right, hilt left) ound in E000392 REF 11</desc>
<char xml:id="rdagger">
<mapping type="default">{right dagger}</mapping>
<mapping type="Arial Unicode MS">{right †}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>Right-pointing Greek diple, display as quotation mark. For dotted diples either add dots separately or use ddiple. consider reassigning this to U+232A. Added complication: only clear example actually calls it an obelus (!)</desc>
<char xml:id="rdiple">
<mapping type="default">{diple}</mapping>
<mapping type="Arial Unicode MS">›</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical repeat symbol resembles :||: (not in Unicode except as combination of 𝄈, 𝄁, and 𝄈), 𝄈 MUSICAL SYMBOL REPEAT DOTS displays as box.</desc>
<char xml:id="repeat">
<mapping type="default">{repeat}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical symbol demisemiquaver rest, 𝅀 MUSICAL SYMBOL THIRTY-SECOND REST displays as box.</desc>
<char xml:id="restdemisemiquaver">
<mapping type="default">{demisemiquaver rest}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical symbol quaver rest or rest commensurate with nota semiminima black, 𝄾 MUSICAL SYMBOL EIGHTH REST displays as box.</desc>
<char xml:id="restquaver">
<mapping type="default">{quaver rest}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical symbol semiquaver rest or rest commensurate with nota fusa black, 𝄿 MUSICAL SYMBOL SIXTEENTH REST displays as box.</desc>
<char xml:id="restsemiquaver">
<mapping type="default">{semiquaver rest}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>cross with right arm removed. Cp. halfcross</desc>
<char xml:id="rhalfcross">
<mapping type="default">{right half cross}</mapping>
<mapping type="Arial Unicode MS">⊣</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>roman numeral 1000000 (quadrupled M)</desc>
<char xml:id="rn1000000">
<mapping type="default">{roman 1000000}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>roman numeral 500000 (quadrupled D)</desc>
<char xml:id="rn500000">
<mapping type="default">{roman 500000}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>mathematical symbol for surd root or radical (a special use of the Rx symbol). {root}Q is square root {root}C is cube root etc.</desc>
<char xml:id="root">
<mapping type="default">{root}</mapping>
<mapping type="Arial Unicode MS">ℛ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>reversed (mirror-image) section symbol</desc>
<char xml:id="rsect">
<mapping type="default">{reversed section}</mapping>
<mapping type="Arial Unicode MS">{reversed §}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>alchemical symbol for sal armoniac, possible alternative form</desc>
<char xml:id="salarmon2">
<mapping type="default">{sal armoniac}</mapping>
<mapping type="Arial Unicode MS">⊕</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical sharp symbol, x-shaped variant form; possibly ancestor of modern double sharp; use this entity regardless of which meaning it has; use this entity if shape is roughly like x; later versions resemble modern sharp symbol. for modern #-shaped sharp (with horizontal strokes), use ISO entity sharp, 𝄪 MUSICAL SYMBOL DOUBLE SHARP (but display U+266F, ♯).</desc>
<char xml:id="sharp2">
<mapping type="default">♯</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>musical sharp symbol resembling mirror image of modern natural symbol (Use for p/d-shaped symbol regardless of whether it equates to a sharp or a natural; for b/q-shaped symbol use ISO natur entity), U+1D1CF MUSICAL SYMBOL CROIX.</desc>
<char xml:id="sharpb">
<mapping type="default">{sharpb}</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>s-like and virgule-like shilling/pence separator, e.g. 2/3 or 2/- . Cp. slong. Perhaps uses the sort for slong. For 'sz'-type shilling abbrev use entity s followed by entity z.</desc>
<char xml:id="shilling">
<mapping type="default">{/}</mapping>
<mapping type="Arial Unicode MS">ʃ</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>lower case long s with a loop (backwards c) through the upright, or similar. Use when meaning uncertain or other (i.e. not sed or ser). Displays currently as round s with macron.</desc>
<char xml:id="sloop">
<charName>LATIN SMALL LETTER ESH WITH OVERSTRUCK STROKE</charName>
<mapping type="default">{s with loop}</mapping>
<mapping type="Arial Unicode MS">s̄</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>This entity represents a dot on a line of text below the level of a perioid used only for spacing, and does not combine with the preceding character. For combining use cmbdotb.</desc>
<char xml:id="spcdotb">
<charName>DOT BELOW</charName>
<mapping type="default">{.}</mapping>
<mapping type="Arial Unicode MS">․</mapping>
<mapping type="PUA"></mapping>
</char>
</charDecl>
<charDecl>
<desc>first in a series of marginal quotation marks (used only by keyers, removed in review)</desc>
<char xml:id="startq">
<mapping type="default">{startq}</mapping>
<mapping type="Times New Roman">“</mapping>
<mapping type="Arial Unicode MS">“</mapping>
<mapping type="PUA"></mapping>
</char>