-
Notifications
You must be signed in to change notification settings - Fork 388
/
Copy pathen.xml
3920 lines (3919 loc) · 286 KB
/
en.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" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2024 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-3.0
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
the U.S. and other countries. CLDR data files are interpreted according to
the LDML specification (http://unicode.org/reports/tr35/) Warnings: All cp
values have U+FE0F characters removed. See /annotationsDerived/ for derived
annotations.
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="en"/>
</identity>
<annotations>
<annotation cp="{">brace | bracket | curly | gullwing | open</annotation>
<annotation cp="{" type="tts">open curly bracket</annotation>
<annotation cp="🏻">1–2 | light | skin | tone | type</annotation>
<annotation cp="🏻" type="tts">light skin tone</annotation>
<annotation cp="🏼">3 | medium-light | skin | tone | type</annotation>
<annotation cp="🏼" type="tts">medium-light skin tone</annotation>
<annotation cp="🏽">4 | medium | skin | tone | type</annotation>
<annotation cp="🏽" type="tts">medium skin tone</annotation>
<annotation cp="🏾">5 | medium-dark | skin | tone | type</annotation>
<annotation cp="🏾" type="tts">medium-dark skin tone</annotation>
<annotation cp="🏿">6 | dark | skin | tone | type</annotation>
<annotation cp="🏿" type="tts">dark skin tone</annotation>
<annotation cp="‾">overline | overstrike | vinculum</annotation>
<annotation cp="‾" type="tts">overline</annotation>
<annotation cp="_">dash | line | low | underdash | underline</annotation>
<annotation cp="_" type="tts">low line</annotation>
<annotation cp="-">dash | hyphen | hyphen-minus | minus</annotation>
<annotation cp="-" type="tts">hyphen-minus</annotation>
<annotation cp="‐">dash | hyphen</annotation>
<annotation cp="‐" type="tts">hyphen</annotation>
<annotation cp="–">dash | en</annotation>
<annotation cp="–" type="tts">en dash</annotation>
<annotation cp="—">dash | em</annotation>
<annotation cp="—" type="tts">em dash</annotation>
<annotation cp="―">bar | dash | horizontal | line</annotation>
<annotation cp="―" type="tts">horizontal bar</annotation>
<annotation cp="・">dot | dots | interpunct | katakana | middle | middot</annotation>
<annotation cp="・" type="tts">katakana middle dot</annotation>
<!-- causes tool breakage
<annotation cp="">whitespace</annotation>
<annotation cp="" type="tts">space</annotation>
-->
<annotation cp=",">comma</annotation>
<annotation cp="," type="tts">comma</annotation>
<annotation cp="،">arabic | comma</annotation>
<annotation cp="،" type="tts">arabic comma</annotation>
<annotation cp="、">comma | ideographic</annotation>
<annotation cp="、" type="tts">ideographic comma</annotation>
<annotation cp=";">semi-colon | semicolon</annotation>
<annotation cp=";" type="tts">semicolon</annotation>
<annotation cp="؛">arabic | semi-colon | semicolon</annotation>
<annotation cp="؛" type="tts">arabic semicolon</annotation>
<annotation cp=":">colon</annotation>
<annotation cp=":" type="tts">colon</annotation>
<annotation cp="!">bang | exclamation | mark | point</annotation>
<annotation cp="!" type="tts">exclamation mark</annotation>
<annotation cp="¡">bang | exclamation | inverted | mark | point</annotation>
<annotation cp="¡" type="tts">inverted exclamation mark</annotation>
<annotation cp="?">mark | question</annotation>
<annotation cp="?" type="tts">question mark</annotation>
<annotation cp="¿">inverted | mark | question</annotation>
<annotation cp="¿" type="tts">inverted question mark</annotation>
<annotation cp="؟">arabic | mark | question</annotation>
<annotation cp="؟" type="tts">arabic question mark</annotation>
<annotation cp="‽">interabang | interrobang</annotation>
<annotation cp="‽" type="tts">interrobang</annotation>
<annotation cp=".">dot | full | period | stop</annotation>
<annotation cp="." type="tts">period</annotation>
<annotation cp="…">dots | ellipsis | omission</annotation>
<annotation cp="…" type="tts">ellipsis</annotation>
<annotation cp="。">full | ideographic | period | stop</annotation>
<annotation cp="。" type="tts">ideographic period</annotation>
<annotation cp="·">dot | interpunct | middle | middot</annotation>
<annotation cp="·" type="tts">middle dot</annotation>
<annotation cp="'">apostrophe | quote | single | typewriter</annotation>
<annotation cp="'" type="tts">typewriter apostrophe</annotation>
<annotation cp="‘">apostrophe | left | quote | single | smart</annotation>
<annotation cp="‘" type="tts">left apostrophe</annotation>
<annotation cp="’">apostrophe | quote | right | single | smart</annotation>
<annotation cp="’" type="tts">right apostrophe</annotation>
<annotation cp="‚">apostrophe | low | quote | right</annotation>
<annotation cp="‚" type="tts">low right apostrophe</annotation>
<annotation cp="“">double | left | mark | quotation | quote | smart</annotation>
<annotation cp="“" type="tts">left quotation mark</annotation>
<annotation cp="”">double | mark | quotation | quote | right | smart</annotation>
<annotation cp="”" type="tts">right quotation mark</annotation>
<annotation cp="„">double | low | mark | quotation | quote | right | smart</annotation>
<annotation cp="„" type="tts">low right quotation mark</annotation>
<annotation cp="«">angle | brackets | carets | chevron | guillemet | left | quote</annotation>
<annotation cp="«" type="tts">left guillemet</annotation>
<annotation cp="»">angle | brackets | carets | chevron | guillemet | quote | right</annotation>
<annotation cp="»" type="tts">right guillemet</annotation>
<annotation cp=")">bracket | close | paren | parens | parenthesis | round</annotation>
<annotation cp=")" type="tts">close parenthesis</annotation>
<annotation cp="[">bracket | crotchet | open | square</annotation>
<annotation cp="[" type="tts">open square bracket</annotation>
<annotation cp="]">bracket | close | crotchet | square</annotation>
<annotation cp="]" type="tts">close square bracket</annotation>
<annotation cp="}">brace | bracket | close | curly | gullwing</annotation>
<annotation cp="}" type="tts">close curly bracket</annotation>
<annotation cp="〈">angle | bracket | brackets | chevron | diamond | open | pointy | tuple</annotation>
<annotation cp="〈" type="tts">open angle bracket</annotation>
<annotation cp="〉">angle | bracket | brackets | chevron | close | diamond | pointy | tuple</annotation>
<annotation cp="〉" type="tts">close angle bracket</annotation>
<annotation cp="《">angle | bracket | double | open</annotation>
<annotation cp="《" type="tts">open double angle bracket</annotation>
<annotation cp="》">angle | bracket | close | double</annotation>
<annotation cp="》" type="tts">close double angle bracket</annotation>
<annotation cp="「">bracket | corner | open</annotation>
<annotation cp="「" type="tts">open corner bracket</annotation>
<annotation cp="」">bracket | close | corner</annotation>
<annotation cp="」" type="tts">close corner bracket</annotation>
<annotation cp="『">bracket | corner | hollow | open</annotation>
<annotation cp="『" type="tts">open hollow corner bracket</annotation>
<annotation cp="』">bracket | close | corner | hollow</annotation>
<annotation cp="』" type="tts">close hollow corner bracket</annotation>
<annotation cp="【">black | bracket | lens | lenticular | open</annotation>
<annotation cp="【" type="tts">open black lens bracket</annotation>
<annotation cp="】">black | bracket | close | lens | lenticular</annotation>
<annotation cp="】" type="tts">close black lens bracket</annotation>
<annotation cp="〔">bracket | open | shell | tortoise</annotation>
<annotation cp="〔" type="tts">open tortoise shell bracket</annotation>
<annotation cp="〕">bracket | close | shell | tortoise</annotation>
<annotation cp="〕" type="tts">close tortoise shell bracket</annotation>
<annotation cp="〖">bracket | hollow | lens | lenticular | open</annotation>
<annotation cp="〖" type="tts">open hollow lens bracket</annotation>
<annotation cp="〗">bracket | close | hollow | lens | lenticular</annotation>
<annotation cp="〗" type="tts">close hollow lens bracket</annotation>
<annotation cp="§">paragraph | part | section | silcrow</annotation>
<annotation cp="§" type="tts">section</annotation>
<annotation cp="¶">alinea | mark | paragraph | paraph | pilcrow</annotation>
<annotation cp="¶" type="tts">paragraph mark</annotation>
<annotation cp="@">ampersat | arobase | arroba | at | at-sign | commercial | mark | sign | strudel</annotation>
<annotation cp="@" type="tts">at-sign</annotation>
<annotation cp="*">asterisk | star | wildcard</annotation>
<annotation cp="*" type="tts">asterisk</annotation>
<annotation cp="/">oblique | slash | solidus | stroke | virgule | whack</annotation>
<annotation cp="/" type="tts">slash</annotation>
<annotation cp="\">backslash | reverse | solidus | whack</annotation>
<annotation cp="\" type="tts">backslash</annotation>
<annotation cp="&">ampersand | and | et</annotation>
<annotation cp="&" type="tts">ampersand</annotation>
<annotation cp="#">hash | hashtag | lb | number | pound | sign</annotation>
<annotation cp="#" type="tts">hash sign</annotation>
<annotation cp="%">cent | per | per-cent | percent</annotation>
<annotation cp="%" type="tts">percent</annotation>
<annotation cp="‰">mil | mille | per | permil | permille</annotation>
<annotation cp="‰" type="tts">per mille</annotation>
<annotation cp="†">dagger | obelisk | obelus | sign</annotation>
<annotation cp="†" type="tts">dagger sign</annotation>
<annotation cp="‡">dagger | double | obelisk | obelus | sign</annotation>
<annotation cp="‡" type="tts">double dagger sign</annotation>
<annotation cp="•">bullet | dot</annotation>
<annotation cp="•" type="tts">bullet</annotation>
<annotation cp="‧">dash | hyphen | hyphenation | point</annotation>
<annotation cp="‧" type="tts">hyphenation point</annotation>
<annotation cp="′">prime</annotation>
<annotation cp="′" type="tts">prime</annotation>
<annotation cp="″">double | prime</annotation>
<annotation cp="″" type="tts">double prime</annotation>
<annotation cp="‴">prime | triple</annotation>
<annotation cp="‴" type="tts">triple prime</annotation>
<annotation cp="‸">caret</annotation>
<annotation cp="‸" type="tts">caret</annotation>
<annotation cp="※">mark | reference</annotation>
<annotation cp="※" type="tts">reference mark</annotation>
<annotation cp="⁂">asterism | dinkus | stars</annotation>
<annotation cp="⁂" type="tts">asterism</annotation>
<annotation cp="`">accent | grave | tone</annotation>
<annotation cp="`" type="tts">grave accent</annotation>
<annotation cp="´">accent | acute | tone</annotation>
<annotation cp="´" type="tts">acute accent</annotation>
<annotation cp="^">accent | caret | chevron | circumflex | control | hat | pointer | power | sign | wedge | xor</annotation>
<annotation cp="^" type="tts">circumflex accent</annotation>
<annotation cp="¨">diaeresis | tréma | umlaut</annotation>
<annotation cp="¨" type="tts">diaeresis</annotation>
<annotation cp="°">degree | hour | proof</annotation>
<annotation cp="°" type="tts">degree</annotation>
<annotation cp="℗">copyright | recording | sound</annotation>
<annotation cp="℗" type="tts">sound recording copyright</annotation>
<annotation cp="←">arrow | left | left-pointing</annotation>
<annotation cp="←" type="tts">left-pointing arrow</annotation>
<annotation cp="↚">arrow | leftwards | stroke</annotation>
<annotation cp="↚" type="tts">leftwards arrow stroke</annotation>
<annotation cp="→">arrow | right | right-pointing</annotation>
<annotation cp="→" type="tts">right-pointing arrow</annotation>
<annotation cp="↛">arrow | rightwards | stroke</annotation>
<annotation cp="↛" type="tts">rightwards arrow stroke</annotation>
<annotation cp="↑">arrow | up | up-pointing</annotation>
<annotation cp="↑" type="tts">up-pointing arrow</annotation>
<annotation cp="↓">arrow | down | down-pointing</annotation>
<annotation cp="↓" type="tts">down-pointing arrow</annotation>
<annotation cp="↜">arrow | leftwards | wave</annotation>
<annotation cp="↜" type="tts">leftwards wave arrow</annotation>
<annotation cp="↝">arrow | rightwards | wave</annotation>
<annotation cp="↝" type="tts">rightwards wave arrow</annotation>
<annotation cp="↞">arrow | headed | leftwards | two</annotation>
<annotation cp="↞" type="tts">leftwards two headed arrow</annotation>
<annotation cp="↟">arrow | headed | two | upwards</annotation>
<annotation cp="↟" type="tts">upwards two headed arrow</annotation>
<annotation cp="↠">arrow | headed | rightwards | two</annotation>
<annotation cp="↠" type="tts">rightwards two headed arrow</annotation>
<annotation cp="↡">arrow | downwards | headed | two</annotation>
<annotation cp="↡" type="tts">downwards two headed arrow</annotation>
<annotation cp="↢">arrow | leftwards | tail</annotation>
<annotation cp="↢" type="tts">leftwards arrow tail</annotation>
<annotation cp="↣">arrow | rightwards | tail</annotation>
<annotation cp="↣" type="tts">rightwards arrow tail</annotation>
<annotation cp="↤">arrow | bar | from | leftwards</annotation>
<annotation cp="↤" type="tts">leftwards arrow from bar</annotation>
<annotation cp="↥">arrow | bar | from | upwards</annotation>
<annotation cp="↥" type="tts">upwards arrow from bar</annotation>
<annotation cp="↦">arrow | bar | from | rightwards</annotation>
<annotation cp="↦" type="tts">rightwards arrow from bar</annotation>
<annotation cp="↧">arrow | bar | downwards | from</annotation>
<annotation cp="↧" type="tts">downwards arrow from bar</annotation>
<annotation cp="↨">arrow | base | down | up | with</annotation>
<annotation cp="↨" type="tts">up down arrow with base</annotation>
<annotation cp="↫">arrow | leftwards | loop</annotation>
<annotation cp="↫" type="tts">leftwards arrow loop</annotation>
<annotation cp="↬">arrow | loop | rightwards</annotation>
<annotation cp="↬" type="tts">rightwards arrow loop</annotation>
<annotation cp="↭">arrow | left | right | wave</annotation>
<annotation cp="↭" type="tts">left right wave arrow</annotation>
<annotation cp="↯">arrow | downwards | zigzag</annotation>
<annotation cp="↯" type="tts">downwards zigzag arrow</annotation>
<annotation cp="↰">arrow | leftwards | tip | upwards</annotation>
<annotation cp="↰" type="tts">upwards arrow tip leftwards</annotation>
<annotation cp="↱">arrow | rightwards | tip | upwards</annotation>
<annotation cp="↱" type="tts">upwards arrow tip rightwards</annotation>
<annotation cp="↲">arrow | downwards | leftwards | tip</annotation>
<annotation cp="↲" type="tts">downwards arrow tip leftwards</annotation>
<annotation cp="↳">arrow | downwards | rightwards | tip</annotation>
<annotation cp="↳" type="tts">downwards arrow tip rightwards</annotation>
<annotation cp="↴">arrow | corner | downwards | rightwards</annotation>
<annotation cp="↴" type="tts">rightwards arrow corner downwards</annotation>
<annotation cp="↵">arrow | corner | downwards | leftwards</annotation>
<annotation cp="↵" type="tts">downwards arrow corner leftwards</annotation>
<annotation cp="↶">anticlockwise | arrow | semicircle | top</annotation>
<annotation cp="↶" type="tts">anticlockwise top semicircle arrow</annotation>
<annotation cp="↷">arrow | clockwise | semicircle | top</annotation>
<annotation cp="↷" type="tts">clockwise top semicircle arrow</annotation>
<annotation cp="↸">arrow | bar | long | north | west</annotation>
<annotation cp="↸" type="tts">north west arrow long bar</annotation>
<annotation cp="↹">arrow | bar | bars | leftwards | over | rightwards</annotation>
<annotation cp="↹" type="tts">leftwards over rightwards arrow bars</annotation>
<annotation cp="↺">anticlockwise | arrow | circle | open</annotation>
<annotation cp="↺" type="tts">anticlockwise open circle arrow</annotation>
<annotation cp="↻">arrow | circle | clockwise | open</annotation>
<annotation cp="↻" type="tts">clockwise open circle arrow</annotation>
<annotation cp="↼">barb | harpoon | leftwards | upwards</annotation>
<annotation cp="↼" type="tts">leftwards harpoon barb upwards</annotation>
<annotation cp="↽">barb | downwards | harpoon | leftwards</annotation>
<annotation cp="↽" type="tts">leftwards harpoon barb downwards</annotation>
<annotation cp="↾">barb | harpoon | rightwards | upwards</annotation>
<annotation cp="↾" type="tts">upwards harpoon barb rightwards</annotation>
<annotation cp="↿">barb | harpoon | leftwards | upwards</annotation>
<annotation cp="↿" type="tts">upwards harpoon barb leftwards</annotation>
<annotation cp="⇀">barb | harpoon | rightwards | upwards</annotation>
<annotation cp="⇀" type="tts">rightwards harpoon barb upwards</annotation>
<annotation cp="⇁">barb | downwards | harpoon | rightwards</annotation>
<annotation cp="⇁" type="tts">rightwards harpoon barb downwards</annotation>
<annotation cp="⇂">barb | downwards | harpoon | rightwards</annotation>
<annotation cp="⇂" type="tts">downwards harpoon barb rightwards</annotation>
<annotation cp="⇃">barb | downwards | harpoon | leftwards</annotation>
<annotation cp="⇃" type="tts">downwards harpoon barb leftwards</annotation>
<annotation cp="⇄">arrow | leftwards | over | rightwards</annotation>
<annotation cp="⇄" type="tts">rightwards arrow over leftwards arrow</annotation>
<annotation cp="⇅">and | arrow | arrows | down | down-pointing | up | up-pointing</annotation>
<annotation cp="⇅" type="tts">up-pointing and down-pointing arrows</annotation>
<annotation cp="⇆">arrow | arrows | left | left-pointing | over | right | right-pointing</annotation>
<annotation cp="⇆" type="tts">left-pointing over right-pointing arrows</annotation>
<annotation cp="⇇">arrows | leftwards | paired</annotation>
<annotation cp="⇇" type="tts">leftwards paired arrows</annotation>
<annotation cp="⇈">arrows | paired | upwards</annotation>
<annotation cp="⇈" type="tts">upwards paired arrows</annotation>
<annotation cp="⇉">arrows | paired | rightwards</annotation>
<annotation cp="⇉" type="tts">rightwards paired arrows</annotation>
<annotation cp="⇊">arrows | downwards | paired</annotation>
<annotation cp="⇊" type="tts">downwards paired arrows</annotation>
<annotation cp="⇋">harpoon | leftwards | over | rightwards</annotation>
<annotation cp="⇋" type="tts">leftwards harpoon over rightwards harpoon</annotation>
<annotation cp="⇌">harpoon | leftwards | over | rightwards</annotation>
<annotation cp="⇌" type="tts">rightwards harpoon over leftwards harpoon</annotation>
<annotation cp="⇐">arrow | double | leftwards</annotation>
<annotation cp="⇐" type="tts">leftwards double arrow</annotation>
<annotation cp="⇍">arrow | double | leftwards | stroke</annotation>
<annotation cp="⇍" type="tts">leftwards double arrow stroke</annotation>
<annotation cp="⇑">arrow | double | upwards</annotation>
<annotation cp="⇑" type="tts">upwards double arrow</annotation>
<annotation cp="⇒">arrow | double | rightwards</annotation>
<annotation cp="⇒" type="tts">rightwards double arrow</annotation>
<annotation cp="⇏">arrow | double | rightwards | stroke</annotation>
<annotation cp="⇏" type="tts">rightwards double arrow stroke</annotation>
<annotation cp="⇓">arrow | double | downwards</annotation>
<annotation cp="⇓" type="tts">downwards double arrow</annotation>
<annotation cp="⇔">arrow | double | left | right</annotation>
<annotation cp="⇔" type="tts">left right double arrow</annotation>
<annotation cp="⇎">arrow | double | left | right | stroke</annotation>
<annotation cp="⇎" type="tts">left right double arrow stroke</annotation>
<annotation cp="⇖">arrow | double | north | west</annotation>
<annotation cp="⇖" type="tts">north west double arrow</annotation>
<annotation cp="⇗">arrow | double | east | north</annotation>
<annotation cp="⇗" type="tts">north east double arrow</annotation>
<annotation cp="⇘">arrow | double | east | south</annotation>
<annotation cp="⇘" type="tts">south east double arrow</annotation>
<annotation cp="⇙">arrow | double | south | west</annotation>
<annotation cp="⇙" type="tts">south west double arrow</annotation>
<annotation cp="⇚">arrow | leftwards | triple</annotation>
<annotation cp="⇚" type="tts">leftwards triple arrow</annotation>
<annotation cp="⇛">arrow | rightwards | triple</annotation>
<annotation cp="⇛" type="tts">rightwards triple arrow</annotation>
<annotation cp="⇜">arrow | leftwards | squiggle</annotation>
<annotation cp="⇜" type="tts">leftwards squiggle arrow</annotation>
<annotation cp="⇝">arrow | rightwards | squiggle</annotation>
<annotation cp="⇝" type="tts">rightwards squiggle arrow</annotation>
<annotation cp="⇞">arrow | double | stroke | upwards</annotation>
<annotation cp="⇞" type="tts">upwards arrow double stroke</annotation>
<annotation cp="⇟">arrow | double | downwards | stroke</annotation>
<annotation cp="⇟" type="tts">downwards arrow double stroke</annotation>
<annotation cp="⇠">arrow | dashed | leftwards</annotation>
<annotation cp="⇠" type="tts">leftwards dashed arrow</annotation>
<annotation cp="⇡">arrow | dashed | upwards</annotation>
<annotation cp="⇡" type="tts">upwards dashed arrow</annotation>
<annotation cp="⇢">arrow | dashed | rightwards</annotation>
<annotation cp="⇢" type="tts">rightwards dashed arrow</annotation>
<annotation cp="⇣">arrow | dashed | downwards</annotation>
<annotation cp="⇣" type="tts">downwards dashed arrow</annotation>
<annotation cp="⇤">arrow | bar | leftwards</annotation>
<annotation cp="⇤" type="tts">leftwards arrow bar</annotation>
<annotation cp="⇥">arrow | bar | rightwards</annotation>
<annotation cp="⇥" type="tts">rightwards arrow bar</annotation>
<annotation cp="⇦">arrow | hollow | leftwards</annotation>
<annotation cp="⇦" type="tts">leftwards hollow arrow</annotation>
<annotation cp="⇧">arrow | hollow | upwards</annotation>
<annotation cp="⇧" type="tts">upwards hollow arrow</annotation>
<annotation cp="⇨">arrow | hollow | rightwards</annotation>
<annotation cp="⇨" type="tts">rightwards hollow arrow</annotation>
<annotation cp="⇩">arrow | downwards | hollow</annotation>
<annotation cp="⇩" type="tts">downwards hollow arrow</annotation>
<annotation cp="⇪">arrow | bar | from | hollow | upwards</annotation>
<annotation cp="⇪" type="tts">upwards hollow arrow from bar</annotation>
<annotation cp="⇵">arrow | downwards | leftwards | upwards</annotation>
<annotation cp="⇵" type="tts">downwards arrow leftwards upwards arrow</annotation>
<annotation cp="∀">all | any | for | given | universal</annotation>
<annotation cp="∀" type="tts">for all</annotation>
<annotation cp="∂">differential | partial</annotation>
<annotation cp="∂" type="tts">partial differential</annotation>
<annotation cp="∃">exists | there</annotation>
<annotation cp="∃" type="tts">there exists</annotation>
<annotation cp="∅">empty | mathematics | operator | set</annotation>
<annotation cp="∅" type="tts">empty set</annotation>
<annotation cp="∆">increment | triangle</annotation>
<annotation cp="∆" type="tts">increment</annotation>
<annotation cp="∇">nabla | triangle</annotation>
<annotation cp="∇" type="tts">nabla</annotation>
<annotation cp="∈">contains | element | membership | of | set</annotation>
<annotation cp="∈" type="tts">element of</annotation>
<annotation cp="∉">an | element | not</annotation>
<annotation cp="∉" type="tts">not an element</annotation>
<annotation cp="∋">as | contains | element | member</annotation>
<annotation cp="∋" type="tts">contains as member</annotation>
<annotation cp="∎">end | halmos | proof | q.e.d. | qed | tombstone</annotation>
<annotation cp="∎" type="tts">end proof</annotation>
<annotation cp="∏">logic | n-ary | product</annotation>
<annotation cp="∏" type="tts">n-ary product</annotation>
<annotation cp="∑">mathematics | n-ary | summation</annotation>
<annotation cp="∑" type="tts">n-ary summation</annotation>
<annotation cp="+">add | plus | sign</annotation>
<annotation cp="+" type="tts">plus sign</annotation>
<annotation cp="±">plus-minus</annotation>
<annotation cp="±" type="tts">plus-minus</annotation>
<annotation cp="÷">divide | division | obelus | sign</annotation>
<annotation cp="÷" type="tts">division sign</annotation>
<annotation cp="×">multiplication | multiply | sign | times</annotation>
<annotation cp="×" type="tts">multiplication sign</annotation>
<annotation cp="<">less | less-than | open | tag | than</annotation>
<annotation cp="<" type="tts">less-than</annotation>
<annotation cp="≮">inequality | less-than | mathematics | not</annotation>
<annotation cp="≮" type="tts">not less-than</annotation>
<annotation cp="=">equal | equals</annotation>
<annotation cp="=" type="tts">equal</annotation>
<annotation cp="≠">equal | inequality | inequation | not</annotation>
<annotation cp="≠" type="tts">not equal</annotation>
<annotation cp=">">close | greater | greater-than | tag | than</annotation>
<annotation cp=">" type="tts">greater-than</annotation>
<annotation cp="≯">greater-than | inequality | mathematics | not</annotation>
<annotation cp="≯" type="tts">not greater-than</annotation>
<annotation cp="¬">negation | not</annotation>
<annotation cp="¬" type="tts">negation</annotation>
<annotation cp="|">bar | line | pike | pipe | sheffer | stick | stroke | vbar | vertical</annotation>
<annotation cp="|" type="tts">vertical line</annotation>
<annotation cp="~">tilde</annotation>
<annotation cp="~" type="tts">tilde</annotation>
<annotation cp="−">minus | sign | subtract</annotation>
<annotation cp="−" type="tts">minus sign</annotation>
<annotation cp="⁻">minus | superscript</annotation>
<annotation cp="⁻" type="tts">superscript minus</annotation>
<annotation cp="∓">minus-or-plus | plus-minus</annotation>
<annotation cp="∓" type="tts">minus-or-plus</annotation>
<annotation cp="∕">division | slash | stroke | virgule</annotation>
<annotation cp="∕" type="tts">division slash</annotation>
<annotation cp="⁄">fraction | slash | stroke | virgule</annotation>
<annotation cp="⁄" type="tts">fraction slash</annotation>
<annotation cp="∗">asterisk | operator | star</annotation>
<annotation cp="∗" type="tts">asterisk operator</annotation>
<annotation cp="∘">composition | operator | ring</annotation>
<annotation cp="∘" type="tts">ring operator</annotation>
<annotation cp="∙">bullet | operator</annotation>
<annotation cp="∙" type="tts">bullet operator</annotation>
<annotation cp="√">radical | radix | root | square | surd</annotation>
<annotation cp="√" type="tts">square root</annotation>
<annotation cp="∝">proportional | proportionality</annotation>
<annotation cp="∝" type="tts">proportional</annotation>
<annotation cp="∞">infinity | sign</annotation>
<annotation cp="∞" type="tts">infinity sign</annotation>
<annotation cp="∟">angle | mathematics | right</annotation>
<annotation cp="∟" type="tts">right angle</annotation>
<annotation cp="∠">acute | angle</annotation>
<annotation cp="∠" type="tts">angle</annotation>
<annotation cp="∣">divides | divisor</annotation>
<annotation cp="∣" type="tts">divides</annotation>
<annotation cp="∥">parallel</annotation>
<annotation cp="∥" type="tts">parallel</annotation>
<annotation cp="∧">ac | and | atque | logical | wedge</annotation>
<annotation cp="∧" type="tts">logical and</annotation>
<annotation cp="∩">intersection | set</annotation>
<annotation cp="∩" type="tts">intersection</annotation>
<annotation cp="∪">collection | set | union</annotation>
<annotation cp="∪" type="tts">union</annotation>
<annotation cp="∫">calculus | integral</annotation>
<annotation cp="∫" type="tts">integral</annotation>
<annotation cp="∬">calculus | double | integral</annotation>
<annotation cp="∬" type="tts">double integral</annotation>
<annotation cp="∮">contour | integral</annotation>
<annotation cp="∮" type="tts">contour integral</annotation>
<annotation cp="∴">logic | therefore</annotation>
<annotation cp="∴" type="tts">therefore</annotation>
<annotation cp="∵">because | logic</annotation>
<annotation cp="∵" type="tts">because</annotation>
<annotation cp="∶">ratio</annotation>
<annotation cp="∶" type="tts">ratio</annotation>
<annotation cp="∷">proportion | proportionality</annotation>
<annotation cp="∷" type="tts">proportion</annotation>
<annotation cp="∼">operator | tilde</annotation>
<annotation cp="∼" type="tts">tilde operator</annotation>
<annotation cp="∽">reversed | tilde</annotation>
<annotation cp="∽" type="tts">reversed tilde</annotation>
<annotation cp="∾">inverted | lazy | s</annotation>
<annotation cp="∾" type="tts">inverted lazy s</annotation>
<annotation cp="≃">asymptote | asymptotically | equal | mathematics</annotation>
<annotation cp="≃" type="tts">asymptotically equal</annotation>
<annotation cp="≅">approximately | congruence | equal | equality | isomorphism | mathematics</annotation>
<annotation cp="≅" type="tts">approximately equal</annotation>
<annotation cp="≈">almost | approximate | approximation | equal</annotation>
<annotation cp="≈" type="tts">almost equal</annotation>
<annotation cp="≌">all | equal | equality | mathematics</annotation>
<annotation cp="≌" type="tts">all equal</annotation>
<annotation cp="≒">approximately | equal | image | the</annotation>
<annotation cp="≒" type="tts">approximately equal the image</annotation>
<annotation cp="≖">equal | equality | in | mathematics | ring</annotation>
<annotation cp="≖" type="tts">ring in equal</annotation>
<annotation cp="≡">exact | identical | to | triple</annotation>
<annotation cp="≡" type="tts">identical to</annotation>
<annotation cp="≣">equality | equivalent | mathematics | strictly</annotation>
<annotation cp="≣" type="tts">strictly equivalent</annotation>
<annotation cp="≤">equal | equals | inequality | less-than | or</annotation>
<annotation cp="≤" type="tts">less-than or equal</annotation>
<annotation cp="≥">equal | equals | greater-than | inequality | or</annotation>
<annotation cp="≥" type="tts">greater-than or equal</annotation>
<annotation cp="≦">equal | inequality | less-than | mathematics | over</annotation>
<annotation cp="≦" type="tts">less-than over equal</annotation>
<annotation cp="≧">equal | greater-than | inequality | mathematics | over</annotation>
<annotation cp="≧" type="tts">greater-than over equal</annotation>
<annotation cp="≪">inequality | less-than | mathematics | much</annotation>
<annotation cp="≪" type="tts">much less-than</annotation>
<annotation cp="≫">greater-than | inequality | mathematics | much</annotation>
<annotation cp="≫" type="tts">much greater-than</annotation>
<annotation cp="≬">between</annotation>
<annotation cp="≬" type="tts">between</annotation>
<annotation cp="≳">equivalent | greater-than | inequality | mathematics</annotation>
<annotation cp="≳" type="tts">greater-than equivalent</annotation>
<annotation cp="≺">mathematics | operator | precedes | set</annotation>
<annotation cp="≺" type="tts">precedes</annotation>
<annotation cp="≻">mathematics | operator | set | succeeds</annotation>
<annotation cp="≻" type="tts">succeeds</annotation>
<annotation cp="⊁">does | mathematics | not | operator | set | succeed</annotation>
<annotation cp="⊁" type="tts">does not succeed</annotation>
<annotation cp="⊂">of | set | subset</annotation>
<annotation cp="⊂" type="tts">subset of</annotation>
<annotation cp="⊃">mathematics | operator | set | superset</annotation>
<annotation cp="⊃" type="tts">superset</annotation>
<annotation cp="⊆">equal | subset</annotation>
<annotation cp="⊆" type="tts">subset equal</annotation>
<annotation cp="⊇">equal | equality | mathematics | superset</annotation>
<annotation cp="⊇" type="tts">superset equal</annotation>
<annotation cp="⊕">circled | plus</annotation>
<annotation cp="⊕" type="tts">circled plus</annotation>
<annotation cp="⊖">circled | difference | erosion | minus | symmetric</annotation>
<annotation cp="⊖" type="tts">circled minus</annotation>
<annotation cp="⊗">circled | product | tensor | times</annotation>
<annotation cp="⊗" type="tts">circled times</annotation>
<annotation cp="⊘">circled | division | division-like | mathematics | slash</annotation>
<annotation cp="⊘" type="tts">circled division slash</annotation>
<annotation cp="⊙">circled | dot | operator | XNOR</annotation>
<annotation cp="⊙" type="tts">circled dot operator</annotation>
<annotation cp="⊚">circled | operator | ring</annotation>
<annotation cp="⊚" type="tts">circled ring operator</annotation>
<annotation cp="⊛">asterisk | circled | operator</annotation>
<annotation cp="⊛" type="tts">circled asterisk operator</annotation>
<annotation cp="⊞">addition-like | mathematics | plus | squared</annotation>
<annotation cp="⊞" type="tts">squared plus</annotation>
<annotation cp="⊟">mathematics | minus | squared | subtraction-like</annotation>
<annotation cp="⊟" type="tts">squared minus</annotation>
<annotation cp="⊥">eet | falsum | tack | up</annotation>
<annotation cp="⊥" type="tts">up tack</annotation>
<annotation cp="⊮">does | force | not</annotation>
<annotation cp="⊮" type="tts">does not force</annotation>
<annotation cp="⊰">mathematics | operator | precedes | relation | set | under</annotation>
<annotation cp="⊰" type="tts">precedes under relation</annotation>
<annotation cp="⊱">mathematics | operator | relation | set | succeeds | under</annotation>
<annotation cp="⊱" type="tts">succeeds under relation</annotation>
<annotation cp="⋭">as | contain | does | equal | group | mathematics | normal | not | subgroup | theory</annotation>
<annotation cp="⋭" type="tts">does not contain as normal subgroup equal</annotation>
<annotation cp="⊶">original</annotation>
<annotation cp="⊶" type="tts">original</annotation>
<annotation cp="⊹">conjugate | hermitian | mathematics | matrix | self-adjoint | square</annotation>
<annotation cp="⊹" type="tts">hermitian conjugate matrix</annotation>
<annotation cp="⊿">mathematics | right | right-angled | triangle</annotation>
<annotation cp="⊿" type="tts">right triangle</annotation>
<annotation cp="⋁">disjunction | logic | logical | n-ary | or</annotation>
<annotation cp="⋁" type="tts">n-ary logical or</annotation>
<annotation cp="⋂">intersection | mathematics | n-ary | operator | set</annotation>
<annotation cp="⋂" type="tts">n-ary intersection</annotation>
<annotation cp="⋃">mathematics | n-ary | operator | set | union</annotation>
<annotation cp="⋃" type="tts">n-ary union</annotation>
<annotation cp="⋅">dot | operator</annotation>
<annotation cp="⋅" type="tts">dot operator</annotation>
<annotation cp="⋆">operator | star</annotation>
<annotation cp="⋆" type="tts">star operator</annotation>
<annotation cp="⋈">binary | bowtie | join | natural | operator</annotation>
<annotation cp="⋈" type="tts">natural join</annotation>
<annotation cp="⋒">double | intersection | mathematics | operator | set</annotation>
<annotation cp="⋒" type="tts">double intersection</annotation>
<annotation cp="⋘">inequality | less-than | mathematics | much | very</annotation>
<annotation cp="⋘" type="tts">very much less-than</annotation>
<annotation cp="⋙">greater-than | inequality | mathematics | much | very</annotation>
<annotation cp="⋙" type="tts">very much greater-than</annotation>
<annotation cp="⋮">ellipsis | mathematics | vertical</annotation>
<annotation cp="⋮" type="tts">vertical ellipsis</annotation>
<annotation cp="⋯">ellipsis | horizontal | midline</annotation>
<annotation cp="⋯" type="tts">midline horizontal ellipsis</annotation>
<annotation cp="⋰">diagonal | ellipsis | mathematics | right | up</annotation>
<annotation cp="⋰" type="tts">up right diagonal ellipsis</annotation>
<annotation cp="⋱">diagonal | down | ellipsis | mathematics | right</annotation>
<annotation cp="⋱" type="tts">down right diagonal ellipsis</annotation>
<annotation cp="■">filled | square</annotation>
<annotation cp="■" type="tts">filled square</annotation>
<annotation cp="□">hollow | square</annotation>
<annotation cp="□" type="tts">hollow square</annotation>
<annotation cp="▢">corners | hollow | rounded | square | with</annotation>
<annotation cp="▢" type="tts">hollow square with rounded corners</annotation>
<annotation cp="▣">containing | filled | hollow | square</annotation>
<annotation cp="▣" type="tts">hollow square containing filled square</annotation>
<annotation cp="▤">fill | horizontal | square | with</annotation>
<annotation cp="▤" type="tts">square with horizontal fill</annotation>
<annotation cp="▥">fill | square | vertical | with</annotation>
<annotation cp="▥" type="tts">square with vertical fill</annotation>
<annotation cp="▦">crosshatch | fill | orthogonal | square</annotation>
<annotation cp="▦" type="tts">square orthogonal crosshatch fill</annotation>
<annotation cp="▧">fill | left | lower | right | square | upper</annotation>
<annotation cp="▧" type="tts">square upper left lower right fill</annotation>
<annotation cp="▨">fill | left | lower | right | square | upper</annotation>
<annotation cp="▨" type="tts">square upper right lower left fill</annotation>
<annotation cp="▩">crosshatch | diagonal | fill | square</annotation>
<annotation cp="▩" type="tts">square diagonal crosshatch fill</annotation>
<annotation cp="▬">filled | rectangle</annotation>
<annotation cp="▬" type="tts">filled rectangle</annotation>
<annotation cp="▭">hollow | rectangle</annotation>
<annotation cp="▭" type="tts">hollow rectangle</annotation>
<annotation cp="▮">filled | rectangle | vertical</annotation>
<annotation cp="▮" type="tts">filled vertical rectangle</annotation>
<annotation cp="▰">filled | parallelogram</annotation>
<annotation cp="▰" type="tts">filled parallelogram</annotation>
<annotation cp="▲">arrow | filled | triangle | up | up-pointing</annotation>
<annotation cp="▲" type="tts">filled up-pointing triangle</annotation>
<annotation cp="△">hollow | triangle | up-pointing</annotation>
<annotation cp="△" type="tts">hollow up-pointing triangle</annotation>
<annotation cp="▴">filled | small | triangle | up-pointing</annotation>
<annotation cp="▴" type="tts">filled up-pointing small triangle</annotation>
<annotation cp="▵">hollow | small | triangle | up-pointing</annotation>
<annotation cp="▵" type="tts">hollow up-pointing small triangle</annotation>
<annotation cp="▷">hollow | right-pointing | triangle</annotation>
<annotation cp="▷" type="tts">hollow right-pointing triangle</annotation>
<annotation cp="▸">filled | right-pointing | small | triangle</annotation>
<annotation cp="▸" type="tts">filled right-pointing small triangle</annotation>
<annotation cp="▹">hollow | right-pointing | small | triangle</annotation>
<annotation cp="▹" type="tts">hollow right-pointing small triangle</annotation>
<annotation cp="►">filled | pointer | right-pointing</annotation>
<annotation cp="►" type="tts">filled right-pointing pointer</annotation>
<annotation cp="▻">hollow | pointer | right-pointing</annotation>
<annotation cp="▻" type="tts">hollow right-pointing pointer</annotation>
<annotation cp="▼">arrow | down | down-pointing | filled | triangle</annotation>
<annotation cp="▼" type="tts">filled down-pointing triangle</annotation>
<annotation cp="▽">down-pointing | hollow | triangle</annotation>
<annotation cp="▽" type="tts">hollow down-pointing triangle</annotation>
<annotation cp="▾">down-pointing | filled | small | triangle</annotation>
<annotation cp="▾" type="tts">filled down-pointing small triangle</annotation>
<annotation cp="▿">down-pointing | hollow | small | triangle</annotation>
<annotation cp="▿" type="tts">hollow down-pointing small triangle</annotation>
<annotation cp="◁">hollow | left-pointing | triangle</annotation>
<annotation cp="◁" type="tts">hollow left-pointing triangle</annotation>
<annotation cp="◂">filled | left-pointing | small | triangle</annotation>
<annotation cp="◂" type="tts">filled left-pointing small triangle</annotation>
<annotation cp="◃">hollow | left-pointing | small | triangle</annotation>
<annotation cp="◃" type="tts">hollow left-pointing small triangle</annotation>
<annotation cp="◄">filled | left-pointing | pointer</annotation>
<annotation cp="◄" type="tts">filled left-pointing pointer</annotation>
<annotation cp="◅">hollow | left-pointing | pointer</annotation>
<annotation cp="◅" type="tts">hollow left-pointing pointer</annotation>
<annotation cp="◆">diamond | filled</annotation>
<annotation cp="◆" type="tts">filled diamond</annotation>
<annotation cp="◇">diamond | hollow</annotation>
<annotation cp="◇" type="tts">hollow diamond</annotation>
<annotation cp="◈">containing | diamond | filled | hollow</annotation>
<annotation cp="◈" type="tts">hollow diamond containing filled diamond</annotation>
<annotation cp="◉">cicles | circle | circled | concentric | containing | dot | filled | fisheye | hollow | ward</annotation>
<annotation cp="◉" type="tts">hollow circle containing filled circle</annotation>
<annotation cp="◊">diamond | lozenge | rhombus</annotation>
<annotation cp="◊" type="tts">lozenge</annotation>
<annotation cp="○">circle | hollow | ring</annotation>
<annotation cp="○" type="tts">hollow circle</annotation>
<annotation cp="◌">circle | dotted</annotation>
<annotation cp="◌" type="tts">dotted circle</annotation>
<annotation cp="◍">circle | fill | vertical | with</annotation>
<annotation cp="◍" type="tts">circle with vertical fill</annotation>
<annotation cp="◎">circle | circles | concentric | double | target</annotation>
<annotation cp="◎" type="tts">concentric circles</annotation>
<annotation cp="●">circle | filled</annotation>
<annotation cp="●" type="tts">filled circle</annotation>
<annotation cp="◐">circle | filled | half | left</annotation>
<annotation cp="◐" type="tts">circle left half filled</annotation>
<annotation cp="◑">circle | filled | half | right</annotation>
<annotation cp="◑" type="tts">circle right half filled</annotation>
<annotation cp="◒">circle | filled | half | lower</annotation>
<annotation cp="◒" type="tts">circle lower half filled</annotation>
<annotation cp="◓">circle | filled | half | upper</annotation>
<annotation cp="◓" type="tts">circle upper half filled</annotation>
<annotation cp="◔">circle | filled | quadrant | right | upper</annotation>
<annotation cp="◔" type="tts">circle upper right quadrant filled</annotation>
<annotation cp="◕">all | but | circle | filled | left | quadrant | upper</annotation>
<annotation cp="◕" type="tts">circle all but upper left quadrant filled</annotation>
<annotation cp="◖">circle | filled | half | left</annotation>
<annotation cp="◖" type="tts">left half filled circle</annotation>
<annotation cp="◗">circle | filled | half | right</annotation>
<annotation cp="◗" type="tts">right half filled circle</annotation>
<annotation cp="◘">bullet | inverse</annotation>
<annotation cp="◘" type="tts">inverse bullet</annotation>
<annotation cp="◙">circle | containing | filled | hollow | inverse | square</annotation>
<annotation cp="◙" type="tts">filled square containing hollow circle</annotation>
<annotation cp="◜">arc | circular | left | quadrant | upper</annotation>
<annotation cp="◜" type="tts">upper left quadrant circular arc</annotation>
<annotation cp="◝">arc | circular | quadrant | right | upper</annotation>
<annotation cp="◝" type="tts">upper right quadrant circular arc</annotation>
<annotation cp="◞">arc | circular | lower | quadrant | right</annotation>
<annotation cp="◞" type="tts">lower right quadrant circular arc</annotation>
<annotation cp="◟">arc | circular | left | lower | quadrant</annotation>
<annotation cp="◟" type="tts">lower left quadrant circular arc</annotation>
<annotation cp="◠">circle | half | upper</annotation>
<annotation cp="◠" type="tts">upper half circle</annotation>
<annotation cp="◡">circle | half | lower</annotation>
<annotation cp="◡" type="tts">lower half circle</annotation>
<annotation cp="◢">filled | lower | right | triangle</annotation>
<annotation cp="◢" type="tts">filled lower right triangle</annotation>
<annotation cp="◣">filled | left | lower | triangle</annotation>
<annotation cp="◣" type="tts">filled lower left triangle</annotation>
<annotation cp="◤">filled | left | triangle | upper</annotation>
<annotation cp="◤" type="tts">filled upper left triangle</annotation>
<annotation cp="◥">filled | right | triangle | upper</annotation>
<annotation cp="◥" type="tts">filled upper right triangle</annotation>
<annotation cp="◦">bullet | hollow</annotation>
<annotation cp="◦" type="tts">hollow bullet</annotation>
<annotation cp="◯">circle | hollow | large | ring</annotation>
<annotation cp="◯" type="tts">large hollow circle</annotation>
<annotation cp="◳">hollow | quadrant | right | square | upper</annotation>
<annotation cp="◳" type="tts">hollow square upper right quadrant</annotation>
<annotation cp="◷">circle | hollow | quadrant | right | upper | with</annotation>
<annotation cp="◷" type="tts">hollow circle with upper right quadrant</annotation>
<annotation cp="◿">lower | right | triangle</annotation>
<annotation cp="◿" type="tts">lower right triangle</annotation>
<annotation cp="♪">eighth | music | note</annotation>
<annotation cp="♪" type="tts">eighth note</annotation>
<annotation cp="⨧">plus | subscript | two</annotation>
<annotation cp="⨧" type="tts">plus subscript two</annotation>
<annotation cp="⨯">cross | product | vector</annotation>
<annotation cp="⨯" type="tts">vector cross product</annotation>
<annotation cp="⨼">interior | product</annotation>
<annotation cp="⨼" type="tts">interior product</annotation>
<annotation cp="⩣">double | logical | or | underbar</annotation>
<annotation cp="⩣" type="tts">logical or double underbar</annotation>
<annotation cp="⩽">equal | less-than | slanted</annotation>
<annotation cp="⩽" type="tts">less-than slanted equal</annotation>
<annotation cp="⪍">above | equal | less-than | similar</annotation>
<annotation cp="⪍" type="tts">less-than above similar equal</annotation>
<annotation cp="⪚">double-line | equal | greater-than | inequality | mathematics</annotation>
<annotation cp="⪚" type="tts">double-line equal greater-than</annotation>
<annotation cp="⪺">above | almost | equal | not | succeeds</annotation>
<annotation cp="⪺" type="tts">succeeds above not almost equal</annotation>
<annotation cp="♭">bemolle | flat | music | note</annotation>
<annotation cp="♭" type="tts">flat</annotation>
<annotation cp="♯">dièse | diesis | music | note | sharp</annotation>
<annotation cp="♯" type="tts">sharp</annotation>
<annotation cp="😀">cheerful | cheery | face | grin | grinning | happy | laugh | nice | smile | smiling | teeth</annotation>
<annotation cp="😀" type="tts">grinning face</annotation>
<annotation cp="😃">awesome | big | eyes | face | grin | grinning | happy | mouth | open | smile | smiling | teeth | yay</annotation>
<annotation cp="😃" type="tts">grinning face with big eyes</annotation>
<annotation cp="😄">eye | eyes | face | grin | grinning | happy | laugh | lol | mouth | open | smile | smiling</annotation>
<annotation cp="😄" type="tts">grinning face with smiling eyes</annotation>
<annotation cp="😁">beaming | eye | eyes | face | grin | grinning | happy | nice | smile | smiling | teeth</annotation>
<annotation cp="😁" type="tts">beaming face with smiling eyes</annotation>
<annotation cp="😆">closed | eyes | face | grinning | haha | hahaha | happy | laugh | lol | mouth | open | rofl | smile | smiling | squinting</annotation>
<annotation cp="😆" type="tts">grinning squinting face</annotation>
<annotation cp="😅">cold | dejected | excited | face | grinning | mouth | nervous | open | smile | smiling | stress | stressed | sweat</annotation>
<annotation cp="😅" type="tts">grinning face with sweat</annotation>
<annotation cp="🤣">crying | face | floor | funny | haha | happy | hehe | hilarious | joy | laugh | lmao | lol | rofl | roflmao | rolling | tear</annotation>
<annotation cp="🤣" type="tts">rolling on the floor laughing</annotation>
<annotation cp="😂">crying | face | feels | funny | haha | happy | hehe | hilarious | joy | laugh | lmao | lol | rofl | roflmao | tear</annotation>
<annotation cp="😂" type="tts">face with tears of joy</annotation>
<annotation cp="🙂">face | happy | slightly | smile | smiling</annotation>
<annotation cp="🙂" type="tts">slightly smiling face</annotation>
<annotation cp="🙃">face | hehe | smile | upside-down</annotation>
<annotation cp="🙃" type="tts">upside-down face</annotation>
<annotation cp="🫠">disappear | dissolve | embarrassed | face | haha | heat | hot | liquid | lol | melt | melting | sarcasm | sarcastic</annotation> <!-- 1FAE0 -->
<annotation cp="🫠" type="tts">melting face</annotation>
<annotation cp="😉">face | flirt | heartbreaker | sexy | slide | tease | wink | winking | winks</annotation>
<annotation cp="😉" type="tts">winking face</annotation>
<annotation cp="😊">blush | eye | eyes | face | glad | satisfied | smile | smiling</annotation>
<annotation cp="😊" type="tts">smiling face with smiling eyes</annotation>
<annotation cp="😇">angel | angelic | angels | blessed | face | fairy | fairytale | fantasy | halo | happy | innocent | peaceful | smile | smiling | spirit | tale</annotation>
<annotation cp="😇" type="tts">smiling face with halo</annotation>
<annotation cp="🥰">3 | adore | crush | face | heart | hearts | ily | love | romance | smile | smiling | you</annotation>
<annotation cp="🥰" type="tts">smiling face with hearts</annotation>
<annotation cp="😍">143 | bae | eye | face | feels | heart-eyes | hearts | ily | kisses | love | romance | romantic | smile | xoxo</annotation>
<annotation cp="😍" type="tts">smiling face with heart-eyes</annotation>
<annotation cp="🤩">excited | eyes | face | grinning | smile | star | star-struck | starry-eyed | wow</annotation>
<annotation cp="🤩" type="tts">star-struck</annotation>
<annotation cp="😘">adorbs | bae | blowing | face | flirt | heart | ily | kiss | love | lover | miss | muah | romantic | smooch | xoxo | you</annotation>
<annotation cp="😘" type="tts">face blowing a kiss</annotation>
<annotation cp="😗">143 | date | dating | face | flirt | ily | kiss | love | smooch | smooches | xoxo | you</annotation>
<annotation cp="😗" type="tts">kissing face</annotation>
<annotation cp="☺">face | happy | outlined | relaxed | smile | smiling</annotation>
<annotation cp="☺" type="tts">smiling face</annotation>
<annotation cp="😚">143 | bae | blush | closed | date | dating | eye | eyes | face | flirt | ily | kisses | kissing | smooches | xoxo</annotation>
<annotation cp="😚" type="tts">kissing face with closed eyes</annotation>
<annotation cp="😙">143 | closed | date | dating | eye | eyes | face | flirt | ily | kiss | kisses | kissing | love | night | smile | smiling</annotation>
<annotation cp="😙" type="tts">kissing face with smiling eyes</annotation>
<annotation cp="🥲">face | glad | grateful | happy | joy | pain | proud | relieved | smile | smiley | smiling | tear | touched</annotation>
<annotation cp="🥲" type="tts">smiling face with tear</annotation>
<annotation cp="😋">delicious | eat | face | food | full | hungry | savor | smile | smiling | tasty | um | yum | yummy</annotation>
<annotation cp="😋" type="tts">face savoring food</annotation>
<annotation cp="😛">awesome | cool | face | nice | party | stuck-out | sweet | tongue</annotation>
<annotation cp="😛" type="tts">face with tongue</annotation>
<annotation cp="😜">crazy | epic | eye | face | funny | joke | loopy | nutty | party | stuck-out | tongue | wacky | weirdo | wink | winking | yolo</annotation>
<annotation cp="😜" type="tts">winking face with tongue</annotation>
<annotation cp="🤪">crazy | eye | eyes | face | goofy | large | small | zany</annotation>
<annotation cp="🤪" type="tts">zany face</annotation>
<annotation cp="😝">closed | eye | eyes | face | gross | horrible | omg | squinting | stuck-out | taste | tongue | whatever | yolo</annotation>
<annotation cp="😝" type="tts">squinting face with tongue</annotation>
<annotation cp="🤑">face | money | money-mouth | mouth | paid</annotation>
<annotation cp="🤑" type="tts">money-mouth face</annotation>
<annotation cp="🤗">face | hands | hug | hugging | open | smiling</annotation>
<annotation cp="🤗" type="tts">smiling face with open hands</annotation>
<annotation cp="🤭">face | giggle | giggling | hand | mouth | oops | realization | secret | shock | sudden | surprise | whoops</annotation>
<annotation cp="🤭" type="tts">face with hand over mouth</annotation>
<annotation cp="🫢">amazement | awe | disbelief | embarrass | eyes | face | gasp | hand | mouth | omg | open | over | quiet | scared | shock | surprise</annotation> <!-- 1FAE2 -->
<annotation cp="🫢" type="tts">face with open eyes and hand over mouth</annotation>
<annotation cp="🫣">captivated | embarrass | eye | face | hide | hiding | peek | peeking | peep | scared | shy | stare</annotation> <!-- 1FAE3 -->
<annotation cp="🫣" type="tts">face with peeking eye</annotation>
<annotation cp="🤫">face | quiet | shh | shush | shushing</annotation>
<annotation cp="🤫" type="tts">shushing face</annotation>
<annotation cp="🤔">chin | consider | face | hmm | ponder | pondering | thinking | wondering</annotation>
<annotation cp="🤔" type="tts">thinking face</annotation>
<annotation cp="🫡">face | good | luck | ma’am | OK | respect | salute | saluting | sir | troops | yes</annotation> <!-- 1FAE1 -->
<annotation cp="🫡" type="tts">saluting face</annotation>
<annotation cp="🤐">face | keep | mouth | quiet | secret | shut | zip | zipper | zipper-mouth</annotation>
<annotation cp="🤐" type="tts">zipper-mouth face</annotation>
<annotation cp="🤨">disapproval | disbelief | distrust | emoji | eyebrow | face | hmm | mild | raised | skeptic | skeptical | skepticism | surprise | what</annotation>
<annotation cp="🤨" type="tts">face with raised eyebrow</annotation>
<annotation cp="😐">awkward | blank | deadpan | expressionless | face | fine | jealous | meh | neutral | oh | shade | straight | unamused | unhappy | unimpressed | whatever</annotation>
<annotation cp="😐" type="tts">neutral face</annotation>
<annotation cp="😑">awkward | dead | expressionless | face | fine | inexpressive | jealous | meh | not | oh | omg | straight | uh | unhappy | unimpressed | whatever</annotation>
<annotation cp="😑" type="tts">expressionless face</annotation>
<annotation cp="😶">awkward | blank | expressionless | face | mouth | mouthless | mute | quiet | secret | silence | silent | speechless</annotation>
<annotation cp="😶" type="tts">face without mouth</annotation>
<annotation cp="🫥">depressed | disappear | dotted | face | hidden | hide | introvert | invisible | line | meh | whatever | wtv</annotation> <!-- 1FAE5 -->
<annotation cp="🫥" type="tts">dotted line face</annotation>
<annotation cp="😶🌫">absentminded | clouds | face | fog | head</annotation> <!-- 1F636 200D 1F32B FE0F: face in clouds -->
<annotation cp="😶🌫" type="tts">face in clouds</annotation>
<annotation cp="😏">boss | dapper | face | flirt | homie | kidding | leer | shade | slick | sly | smirk | smug | snicker | suave | suspicious | swag</annotation>
<annotation cp="😏" type="tts">smirking face</annotation>
<annotation cp="😒">... | bored | face | fine | jealous | jel | jelly | pissed | smh | ugh | uhh | unamused | unhappy | weird | whatever</annotation>
<annotation cp="😒" type="tts">unamused face</annotation>
<annotation cp="🙄">eyeroll | eyes | face | rolling | shade | ugh | whatever</annotation>
<annotation cp="🙄" type="tts">face with rolling eyes</annotation>
<annotation cp="😬">awk | awkward | dentist | face | grimace | grimacing | grinning | smile | smiling</annotation>
<annotation cp="😬" type="tts">grimacing face</annotation>
<annotation cp="😮💨">blow | blowing | exhale | exhaling | exhausted | face | gasp | groan | relief | sigh | smiley | smoke | whisper | whistle</annotation> <!-- 1F62E 200D 1F4A8 -->
<annotation cp="😮💨" type="tts">face exhaling</annotation>
<annotation cp="🤥">face | liar | lie | lying | pinocchio</annotation>
<annotation cp="🤥" type="tts">lying face</annotation>
<annotation cp="🫨">crazy | daze | earthquake | face | omg | panic | shaking | shock | surprise | vibrate | whoa | wow</annotation> <!-- 1FAE8 -->
<annotation cp="🫨" type="tts">shaking face</annotation>
<annotation cp="🙂↔">head | horizontally | no | shake | shaking</annotation> <!-- 1F642 200D 2194 -->
<annotation cp="🙂↔" type="tts">head shaking horizontally</annotation>
<annotation cp="🙂↕">head | nod | shaking | vertically | yes</annotation> <!-- 1F642 200D 2195 -->
<annotation cp="🙂↕" type="tts">head shaking vertically</annotation>
<annotation cp="😌">calm | face | peace | relief | relieved | zen</annotation>
<annotation cp="😌" type="tts">relieved face</annotation>
<annotation cp="😔">awful | bored | dejected | died | disappointed | face | losing | lost | pensive | sad | sucks</annotation>
<annotation cp="😔" type="tts">pensive face</annotation>
<annotation cp="😪">crying | face | good | night | sad | sleep | sleeping | sleepy | tired</annotation>
<annotation cp="😪" type="tts">sleepy face</annotation>
<annotation cp="🤤">drooling | face</annotation>
<annotation cp="🤤" type="tts">drooling face</annotation>
<annotation cp="😴">bed | bedtime | face | good | goodnight | nap | night | sleep | sleeping | tired | whatever | yawn | zzz</annotation>
<annotation cp="😴" type="tts">sleeping face</annotation>
<annotation cp="">bags | bored | exhausted | eyes | face | fatigued | late | sleepy | tired | weary</annotation>
<annotation cp="" type="tts">face with bags under eyes</annotation>
<annotation cp="😷">cold | dentist | dermatologist | doctor | dr | face | germs | mask | medical | medicine | sick</annotation>
<annotation cp="😷" type="tts">face with medical mask</annotation>
<annotation cp="🤒">face | ill | sick | thermometer</annotation>
<annotation cp="🤒" type="tts">face with thermometer</annotation>
<annotation cp="🤕">bandage | face | head-bandage | hurt | injury | ouch</annotation>
<annotation cp="🤕" type="tts">face with head-bandage</annotation>
<annotation cp="🤢">face | gross | nasty | nauseated | sick | vomit</annotation>
<annotation cp="🤢" type="tts">nauseated face</annotation>
<annotation cp="🤮">barf | ew | face | gross | puke | sick | spew | throw | up | vomit | vomiting</annotation>
<annotation cp="🤮" type="tts">face vomiting</annotation>
<annotation cp="🤧">face | fever | flu | gesundheit | sick | sneeze | sneezing</annotation>
<annotation cp="🤧" type="tts">sneezing face</annotation>
<annotation cp="🥵">dying | face | feverish | heat | hot | panting | red-faced | stroke | sweating | tongue</annotation>
<annotation cp="🥵" type="tts">hot face</annotation>
<annotation cp="🥶">blue | blue-faced | cold | face | freezing | frostbite | icicles | subzero | teeth</annotation>
<annotation cp="🥶" type="tts">cold face</annotation>
<annotation cp="🥴">dizzy | drunk | eyes | face | intoxicated | mouth | tipsy | uneven | wavy | woozy</annotation>
<annotation cp="🥴" type="tts">woozy face</annotation>
<annotation cp="😵">crossed-out | dead | dizzy | eyes | face | feels | knocked | out | sick | tired</annotation>
<annotation cp="😵" type="tts">face with crossed-out eyes</annotation>
<annotation cp="😵💫">confused | dizzy | eyes | face | hypnotized | omg | smiley | spiral | trouble | whoa | woah | woozy</annotation> <!-- 1F635 200D 1F4AB -->
<annotation cp="😵💫" type="tts">face with spiral eyes</annotation>
<annotation cp="🤯">blown | explode | exploding | head | mind | mindblown | no | shocked | way</annotation>
<annotation cp="🤯" type="tts">exploding head</annotation>
<annotation cp="🤠">cowboy | cowgirl | face | hat</annotation>
<annotation cp="🤠" type="tts">cowboy hat face</annotation>
<annotation cp="🥳">bday | birthday | celebrate | celebration | excited | face | happy | hat | hooray | horn | party | partying</annotation>
<annotation cp="🥳" type="tts">partying face</annotation>
<annotation cp="🥸">disguise | eyebrow | face | glasses | incognito | moustache | mustache | nose | person | spy | tache | tash</annotation>
<annotation cp="🥸" type="tts">disguised face</annotation>
<annotation cp="😎">awesome | beach | bright | bro | chilling | cool | face | rad | relaxed | shades | slay | smile | style | sunglasses | swag | win</annotation>
<annotation cp="😎" type="tts">smiling face with sunglasses</annotation>
<annotation cp="🤓">brainy | clever | expert | face | geek | gifted | glasses | intelligent | nerd | smart</annotation>
<annotation cp="🤓" type="tts">nerd face</annotation>
<annotation cp="🧐">classy | face | fancy | monocle | rich | stuffy | wealthy</annotation>
<annotation cp="🧐" type="tts">face with monocle</annotation>
<annotation cp="😕">befuddled | confused | confusing | dunno | face | frown | hm | meh | not | sad | sorry | sure</annotation>
<annotation cp="😕" type="tts">confused face</annotation>
<annotation cp="🫤">confused | confusion | diagonal | disappointed | doubt | doubtful | face | frustrated | frustration | meh | mouth | skeptical | unsure | whatever | wtv</annotation> <!-- 1FAE4 -->
<annotation cp="🫤" type="tts">face with diagonal mouth</annotation>
<annotation cp="😟">anxious | butterflies | face | nerves | nervous | sad | stress | stressed | surprised | worried | worry</annotation>
<annotation cp="😟" type="tts">worried face</annotation>
<annotation cp="🙁">face | frown | frowning | sad | slightly</annotation>
<annotation cp="🙁" type="tts">slightly frowning face</annotation>
<annotation cp="☹">face | frown | frowning | sad</annotation>
<annotation cp="☹" type="tts">frowning face</annotation>
<annotation cp="😮">believe | face | forgot | mouth | omg | open | shocked | surprised | sympathy | unbelievable | unreal | whoa | wow | you</annotation>
<annotation cp="😮" type="tts">face with open mouth</annotation>
<annotation cp="😯">epic | face | hushed | omg | stunned | surprised | whoa | woah</annotation>
<annotation cp="😯" type="tts">hushed face</annotation>
<annotation cp="😲">astonished | cost | face | no | omg | shocked | totally | way</annotation>
<annotation cp="😲" type="tts">astonished face</annotation>
<annotation cp="😳">amazed | awkward | crazy | dazed | dead | disbelief | embarrassed | face | flushed | geez | heat | hot | impressed | jeez | what | wow</annotation>
<annotation cp="😳" type="tts">flushed face</annotation>
<annotation cp="🥺">begging | big | eyes | face | mercy | not | pleading | please | pretty | puppy | sad | why</annotation>
<annotation cp="🥺" type="tts">pleading face</annotation>
<annotation cp="🥹">admiration | aww | back | cry | embarrassed | face | feelings | grateful | gratitude | holding | joy | please | proud | resist | sad | tears</annotation> <!-- 1F979 -->
<annotation cp="🥹" type="tts">face holding back tears</annotation>
<annotation cp="😦">caught | face | frown | frowning | guard | mouth | open | scared | scary | surprise | what | wow</annotation>
<annotation cp="😦" type="tts">frowning face with open mouth</annotation>
<annotation cp="😧">anguished | face | forgot | scared | scary | stressed | surprise | unhappy | what | wow</annotation>
<annotation cp="😧" type="tts">anguished face</annotation>
<annotation cp="😨">afraid | anxious | blame | face | fear | fearful | scared | worried</annotation>
<annotation cp="😨" type="tts">fearful face</annotation>
<annotation cp="😰">anxious | blue | cold | eek | face | mouth | nervous | open | rushed | scared | sweat | yikes</annotation>
<annotation cp="😰" type="tts">anxious face with sweat</annotation>
<annotation cp="😥">anxious | call | close | complicated | disappointed | face | not | relieved | sad | sweat | time | whew</annotation>
<annotation cp="😥" type="tts">sad but relieved face</annotation>
<annotation cp="😢">awful | cry | crying | face | feels | miss | sad | tear | triste | unhappy</annotation>
<annotation cp="😢" type="tts">crying face</annotation>
<annotation cp="😭">bawling | cry | crying | face | loudly | sad | sob | tear | tears | unhappy</annotation>
<annotation cp="😭" type="tts">loudly crying face</annotation>
<annotation cp="😱">epic | face | fear | fearful | munch | scared | scream | screamer | screaming | shocked | surprised | woah</annotation>
<annotation cp="😱" type="tts">face screaming in fear</annotation>
<annotation cp="😖">annoyed | confounded | confused | cringe | distraught | face | feels | frustrated | mad | sad</annotation>
<annotation cp="😖" type="tts">confounded face</annotation>
<annotation cp="😣">concentrate | concentration | face | focus | headache | persevere | persevering</annotation>
<annotation cp="😣" type="tts">persevering face</annotation>
<annotation cp="😞">awful | blame | dejected | disappointed | face | fail | losing | sad | unhappy</annotation>
<annotation cp="😞" type="tts">disappointed face</annotation>
<annotation cp="😓">close | cold | downcast | face | feels | headache | nervous | sad | scared | sweat | yikes</annotation>
<annotation cp="😓" type="tts">downcast face with sweat</annotation>
<annotation cp="😩">crying | face | fail | feels | hungry | mad | nooo | sad | sleepy | tired | unhappy | weary</annotation>
<annotation cp="😩" type="tts">weary face</annotation>
<annotation cp="😫">cost | face | feels | nap | sad | sneeze | tired</annotation>
<annotation cp="😫" type="tts">tired face</annotation>
<annotation cp="🥱">bedtime | bored | face | goodnight | nap | night | sleep | sleepy | tired | whatever | yawn | yawning | zzz</annotation>
<annotation cp="🥱" type="tts">yawning face</annotation>
<annotation cp="😤">anger | angry | face | feels | fume | fuming | furious | fury | mad | nose | steam | triumph | unhappy | won</annotation>
<annotation cp="😤" type="tts">face with steam from nose</annotation>
<annotation cp="😡">anger | angry | enraged | face | feels | mad | maddening | pouting | rage | red | shade | unhappy | upset</annotation>
<annotation cp="😡" type="tts">enraged face</annotation>
<annotation cp="😠">anger | angry | blame | face | feels | frustrated | mad | maddening | rage | shade | unhappy | upset</annotation>
<annotation cp="😠" type="tts">angry face</annotation>
<annotation cp="🤬">censor | cursing | cussing | face | mad | mouth | pissed | swearing | symbols</annotation>
<annotation cp="🤬" type="tts">face with symbols on mouth</annotation>
<annotation cp="😈">demon | devil | evil | face | fairy | fairytale | fantasy | horns | purple | shade | smile | smiling | tale</annotation>
<annotation cp="😈" type="tts">smiling face with horns</annotation>
<annotation cp="👿">angry | demon | devil | evil | face | fairy | fairytale | fantasy | horns | imp | mischievous | purple | shade | tale</annotation>
<annotation cp="👿" type="tts">angry face with horns</annotation>
<annotation cp="💀">body | dead | death | face | fairy | fairytale | i’m | lmao | monster | skull | tale | yolo</annotation>
<annotation cp="💀" type="tts">skull</annotation>
<annotation cp="☠">bone | crossbones | dead | death | face | monster | skull</annotation>
<annotation cp="☠" type="tts">skull and crossbones</annotation>
<annotation cp="💩">bs | comic | doo | dung | face | fml | monster | pile | poo | poop | smelly | smh | stink | stinks | stinky | turd</annotation>
<annotation cp="💩" type="tts">pile of poo</annotation>
<annotation cp="🤡">clown | face</annotation>
<annotation cp="🤡" type="tts">clown face</annotation>
<annotation cp="👹">creature | devil | face | fairy | fairytale | fantasy | mask | monster | ogre | scary | tale</annotation>
<annotation cp="👹" type="tts">ogre</annotation>
<annotation cp="👺">angry | creature | face | fairy | fairytale | fantasy | goblin | mask | mean | monster | tale</annotation>
<annotation cp="👺" type="tts">goblin</annotation>
<annotation cp="👻">boo | creature | excited | face | fairy | fairytale | fantasy | ghost | halloween | haunting | monster | scary | silly | tale</annotation>
<annotation cp="👻" type="tts">ghost</annotation>
<annotation cp="👽">alien | creature | extraterrestrial | face | fairy | fairytale | fantasy | monster | space | tale | ufo</annotation>
<annotation cp="👽" type="tts">alien</annotation>
<annotation cp="👾">alien | creature | extraterrestrial | face | fairy | fairytale | fantasy | game | gamer | games | monster | pixelated | space | tale | ufo</annotation>
<annotation cp="👾" type="tts">alien monster</annotation>
<annotation cp="🤖">face | monster | robot</annotation>
<annotation cp="🤖" type="tts">robot</annotation>
<annotation cp="😺">animal | cat | face | grinning | mouth | open | smile | smiling</annotation>
<annotation cp="😺" type="tts">grinning cat</annotation>
<annotation cp="😸">animal | cat | eye | eyes | face | grin | grinning | smile | smiling</annotation>
<annotation cp="😸" type="tts">grinning cat with smiling eyes</annotation>
<annotation cp="😹">animal | cat | face | joy | laugh | laughing | lol | tear | tears</annotation>
<annotation cp="😹" type="tts">cat with tears of joy</annotation>
<annotation cp="😻">animal | cat | eye | face | heart | heart-eyes | love | smile | smiling</annotation>
<annotation cp="😻" type="tts">smiling cat with heart-eyes</annotation>
<annotation cp="😼">animal | cat | face | ironic | smile | wry</annotation>
<annotation cp="😼" type="tts">cat with wry smile</annotation>
<annotation cp="😽">animal | cat | closed | eye | eyes | face | kiss | kissing</annotation>
<annotation cp="😽" type="tts">kissing cat</annotation>
<annotation cp="🙀">animal | cat | face | oh | surprised | weary</annotation>
<annotation cp="🙀" type="tts">weary cat</annotation>
<annotation cp="😿">animal | cat | cry | crying | face | sad | tear</annotation>
<annotation cp="😿" type="tts">crying cat</annotation>
<annotation cp="😾">animal | cat | face | pouting</annotation>
<annotation cp="😾" type="tts">pouting cat</annotation>
<annotation cp="🙈">embarrassed | evil | face | forbidden | forgot | gesture | hide | monkey | no | omg | prohibited | scared | secret | smh | watch</annotation>
<annotation cp="🙈" type="tts">see-no-evil monkey</annotation>
<annotation cp="🙉">animal | ears | evil | face | forbidden | gesture | hear | listen | monkey | no | not | prohibited | secret | shh | tmi</annotation>
<annotation cp="🙉" type="tts">hear-no-evil monkey</annotation>
<annotation cp="🙊">animal | evil | face | forbidden | gesture | monkey | no | not | oops | prohibited | quiet | secret | speak | stealth</annotation>
<annotation cp="🙊" type="tts">speak-no-evil monkey</annotation>
<annotation cp="💌">heart | letter | love | mail | romance | valentine</annotation>
<annotation cp="💌" type="tts">love letter</annotation>
<annotation cp="💘">143 | adorbs | arrow | cupid | date | emotion | heart | ily | love | romance | valentine</annotation>
<annotation cp="💘" type="tts">heart with arrow</annotation>
<annotation cp="💝">143 | anniversary | emotion | heart | ily | kisses | ribbon | valentine | xoxo</annotation>
<annotation cp="💝" type="tts">heart with ribbon</annotation>
<annotation cp="💖">143 | emotion | excited | good | heart | ily | kisses | morning | night | sparkle | sparkling | xoxo</annotation>
<annotation cp="💖" type="tts">sparkling heart</annotation>
<annotation cp="💗">143 | emotion | excited | growing | heart | heartpulse | ily | kisses | muah | nervous | pulse | xoxo</annotation>
<annotation cp="💗" type="tts">growing heart</annotation>
<annotation cp="💓">143 | beating | cardio | emotion | heart | heartbeat | ily | love | pulsating | pulse</annotation>
<annotation cp="💓" type="tts">beating heart</annotation>
<annotation cp="💞">143 | adorbs | anniversary | emotion | heart | hearts | revolving</annotation>
<annotation cp="💞" type="tts">revolving hearts</annotation>
<annotation cp="💕">143 | anniversary | date | dating | emotion | heart | hearts | ily | kisses | love | loving | two | xoxo</annotation>
<annotation cp="💕" type="tts">two hearts</annotation>
<annotation cp="💟">143 | decoration | emotion | heart | hearth | purple | white</annotation>
<annotation cp="💟" type="tts">heart decoration</annotation>
<annotation cp="❣">exclamation | heart | heavy | mark | punctuation</annotation>
<annotation cp="❣" type="tts">heart exclamation</annotation>