-
Notifications
You must be signed in to change notification settings - Fork 0
/
linux-keysymdef
1800 lines (1763 loc) · 60.1 KB
/
linux-keysymdef
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
/* Collected and adapated from /usr/include/X11/keysymdef.h
Below is the copyright notice:
Copyright 1987, 1994, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from The Open Group.
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUdING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
*/
space U0020
exclam U0021
quotedbl U0022
numbersign U0023
dollar U0024
percent U0025
ampersand U0026
apostrophe U0027
quoteright U0027
parenleft U0028
parenright U0029
asterisk U002a
plus U002b
comma U002c
minus U002d
period U002e
slash U002f
0 U0030
1 U0031
2 U0032
3 U0033
4 U0034
5 U0035
6 U0036
7 U0037
8 U0038
9 U0039
colon U003a
semicolon U003b
less U003c
equal U003d
greater U003e
question U003f
at U0040
A U0041
B U0042
C U0043
D U0044
E U0045
F U0046
G U0047
H U0048
I U0049
J U004a
K U004b
L U004c
M U004d
N U004e
O U004f
P U0050
Q U0051
R U0052
S U0053
T U0054
U U0055
V U0056
W U0057
X U0058
Y U0059
Z U005a
bracketleft U005b
backslash U005c
bracketright U005d
asciicircum U005e
underscore U005f
grave U0060
quoteleft U0060
a U0061
b U0062
c U0063
d U0064
e U0065
f U0066
g U0067
h U0068
i U0069
j U006a
k U006b
l U006c
m U006d
n U006e
o U006f
p U0070
q U0071
r U0072
s U0073
t U0074
u U0075
v U0076
w U0077
x U0078
y U0079
z U007a
braceleft U007b
bar U007c
braceright U007d
asciitilde U007e
nobreakspace U00a0
exclamdown U00a1
cent U00a2
sterling U00a3
currency U00a4
yen U00a5
brokenbar U00a6
section U00a7
diaeresis U00a8
copyright U00a9
ordfeminine U00aa
guillemotleft U00ab
notsign U00ac
hyphen U00ad
registered U00ae
macron U00af
degree U00b0
plusminus U00b1
twosuperior U00b2
threesuperior U00b3
acute U00b4
mu U00b5
paragraph U00b6
periodcentered U00b7
cedilla U00b8
onesuperior U00b9
masculine U00ba
guillemotright U00bb
onequarter U00bc
onehalf U00bd
threequarters U00be
questiondown U00bf
Agrave U00c0
Aacute U00c1
Acircumflex U00c2
Atilde U00c3
Adiaeresis U00c4
Aring U00c5
AE U00c6
Ccedilla U00c7
Egrave U00c8
Eacute U00c9
Ecircumflex U00ca
Ediaeresis U00cb
Igrave U00cc
Iacute U00cd
Icircumflex U00ce
Idiaeresis U00cf
ETH U00d0
Eth U00d0
Ntilde U00d1
Ograve U00d2
Oacute U00d3
Ocircumflex U00d4
Otilde U00d5
Odiaeresis U00d6
multiply U00d7
Oslash U00d8
Ooblique U00d8
Ugrave U00d9
Uacute U00da
Ucircumflex U00db
Udiaeresis U00dc
Yacute U00dd
THORN U00de
Thorn U00de
ssharp U00df
agrave U00e0
aacute U00e1
acircumflex U00e2
atilde U00e3
adiaeresis U00e4
aring U00e5
ae U00e6
ccedilla U00e7
egrave U00e8
eacute U00e9
ecircumflex U00ea
ediaeresis U00eb
igrave U00ec
iacute U00ed
icircumflex U00ee
idiaeresis U00ef
eth U00f0
ntilde U00f1
ograve U00f2
oacute U00f3
ocircumflex U00f4
otilde U00f5
odiaeresis U00f6
division U00f7
oslash U00f8
ooblique U00f8
ugrave U00f9
uacute U00fa
ucircumflex U00fb
udiaeresis U00fc
yacute U00fd
thorn U00fe
ydiaeresis U00ff
Aogonek U0104
breve U02d8
Lstroke U0141
Lcaron U013d
Sacute U015a
Scaron U0160
Scedilla U015e
Tcaron U0164
Zacute U0179
Zcaron U017d
Zabovedot U017b
aogonek U0105
ogonek U02db
lstroke U0142
lcaron U013e
sacute U015b
caron U02c7
scaron U0161
scedilla U015f
tcaron U0165
zacute U017a
doubleacute U02dd
zcaron U017e
zabovedot U017c
Racute U0154
Abreve U0102
Lacute U0139
Cacute U0106
Ccaron U010c
Eogonek U0118
Ecaron U011a
Dcaron U010e
Dstroke U0110
Nacute U0143
Ncaron U0147
Odoubleacute U0150
Rcaron U0158
Uring U016e
Udoubleacute U0170
Tcedilla U0162
racute U0155
abreve U0103
lacute U013a
cacute U0107
ccaron U010d
eogonek U0119
ecaron U011b
dcaron U010f
dstroke U0111
nacute U0144
ncaron U0148
odoubleacute U0151
rcaron U0159
uring U016f
udoubleacute U0171
tcedilla U0163
abovedot U02d9
Hstroke U0126
Hcircumflex U0124
Iabovedot U0130
Gbreve U011e
Jcircumflex U0134
hstroke U0127
hcircumflex U0125
idotless U0131
gbreve U011f
jcircumflex U0135
Cabovedot U010a
Ccircumflex U0108
Gabovedot U0120
Gcircumflex U011c
Ubreve U016c
Scircumflex U015c
cabovedot U010b
ccircumflex U0109
gabovedot U0121
gcircumflex U011d
ubreve U016d
scircumflex U015d
kra U0138
kappa U0138
Rcedilla U0156
Itilde U0128
Lcedilla U013b
Emacron U0112
Gcedilla U0122
Tslash U0166
rcedilla U0157
itilde U0129
lcedilla U013c
emacron U0113
gcedilla U0123
tslash U0167
ENG U014a
eng U014b
Amacron U0100
Iogonek U012e
Eabovedot U0116
Imacron U012a
Ncedilla U0145
Omacron U014c
Kcedilla U0136
Uogonek U0172
Utilde U0168
Umacron U016a
amacron U0101
iogonek U012f
eabovedot U0117
imacron U012b
ncedilla U0146
omacron U014d
kcedilla U0137
uogonek U0173
utilde U0169
umacron U016b
Wcircumflex U0174
wcircumflex U0175
Ycircumflex U0176
ycircumflex U0177
Babovedot U1e02
babovedot U1e03
Dabovedot U1e0a
dabovedot U1e0b
Fabovedot U1e1e
fabovedot U1e1f
Mabovedot U1e40
mabovedot U1e41
Pabovedot U1e56
pabovedot U1e57
Sabovedot U1e60
sabovedot U1e61
Tabovedot U1e6a
tabovedot U1e6b
Wgrave U1e80
wgrave U1e81
Wacute U1e82
wacute U1e83
Wdiaeresis U1e84
wdiaeresis U1e85
Ygrave U1ef2
ygrave U1ef3
OE U0152
oe U0153
Ydiaeresis U0178
overline U203e
kana_fullstop U3002
kana_openingbracket U300c
kana_closingbracket U300d
kana_comma U3001
kana_conjunctive U30fb
kana_middledot U30fb
kana_WO U30f2
kana_a U30a1
kana_i U30a3
kana_u U30a5
kana_e U30a7
kana_o U30a9
kana_ya U30e3
kana_yu U30e5
kana_yo U30e7
kana_tsu U30c3
kana_tu U30c3
prolongedsound U30fc
kana_A U30a2
kana_I U30a4
kana_U U30a6
kana_E U30a8
kana_O U30aa
kana_KA U30ab
kana_KI U30ad
kana_KU U30af
kana_KE U30b1
kana_KO U30b3
kana_SA U30b5
kana_SHI U30b7
kana_SU U30b9
kana_SE U30bb
kana_SO U30bd
kana_TA U30bf
kana_CHI U30c1
kana_TI U30c1
kana_TSU U30c4
kana_TU U30c4
kana_TE U30c6
kana_TO U30c8
kana_NA U30ca
kana_NI U30cb
kana_NU U30cc
kana_NE U30cd
kana_NO U30ce
kana_HA U30cf
kana_HI U30d2
kana_FU U30d5
kana_HU U30d5
kana_HE U30d8
kana_HO U30db
kana_MA U30de
kana_MI U30df
kana_MU U30e0
kana_ME U30e1
kana_MO U30e2
kana_YA U30e4
kana_YU U30e6
kana_YO U30e8
kana_RA U30e9
kana_RI U30ea
kana_RU U30eb
kana_RE U30ec
kana_RO U30ed
kana_WA U30ef
kana_N U30f3
voicedsound U309b
semivoicedsound U309c
Farsi_0 U06f0
Farsi_1 U06f1
Farsi_2 U06f2
Farsi_3 U06f3
Farsi_4 U06f4
Farsi_5 U06f5
Farsi_6 U06f6
Farsi_7 U06f7
Farsi_8 U06f8
Farsi_9 U06f9
Arabic_percent U066a
Arabic_superscript_alef U0670
Arabic_tteh U0679
Arabic_peh U067e
Arabic_tcheh U0686
Arabic_ddal U0688
Arabic_rreh U0691
Arabic_comma U060c
Arabic_fullstop U06d4
Arabic_0 U0660
Arabic_1 U0661
Arabic_2 U0662
Arabic_3 U0663
Arabic_4 U0664
Arabic_5 U0665
Arabic_6 U0666
Arabic_7 U0667
Arabic_8 U0668
Arabic_9 U0669
Arabic_semicolon U061b
Arabic_question_mark U061f
Arabic_hamza U0621
Arabic_maddaonalef U0622
Arabic_hamzaonalef U0623
Arabic_hamzaonwaw U0624
Arabic_hamzaunderalef U0625
Arabic_hamzaonyeh U0626
Arabic_alef U0627
Arabic_beh U0628
Arabic_tehmarbuta U0629
Arabic_teh U062a
Arabic_theh U062b
Arabic_jeem U062c
Arabic_hah U062d
Arabic_khah U062e
Arabic_dal U062f
Arabic_thal U0630
Arabic_ra U0631
Arabic_zain U0632
Arabic_seen U0633
Arabic_sheen U0634
Arabic_sad U0635
Arabic_dad U0636
Arabic_tah U0637
Arabic_zah U0638
Arabic_ain U0639
Arabic_ghain U063a
Arabic_tatweel U0640
Arabic_feh U0641
Arabic_qaf U0642
Arabic_kaf U0643
Arabic_lam U0644
Arabic_meem U0645
Arabic_noon U0646
Arabic_ha U0647
Arabic_heh U0647
Arabic_waw U0648
Arabic_alefmaksura U0649
Arabic_yeh U064a
Arabic_fathatan U064b
Arabic_dammatan U064c
Arabic_kasratan U064d
Arabic_fatha U064e
Arabic_damma U064f
Arabic_kasra U0650
Arabic_shadda U0651
Arabic_sukun U0652
Arabic_madda_above U0653
Arabic_hamza_above U0654
Arabic_hamza_below U0655
Arabic_jeh U0698
Arabic_veh U06a4
Arabic_keheh U06a9
Arabic_gaf U06af
Arabic_noon_ghunna U06ba
Arabic_heh_doachashmee U06be
Farsi_yeh U06cc
Arabic_farsi_yeh U06cc
Arabic_yeh_baree U06d2
Arabic_heh_goal U06c1
Cyrillic_GHE_bar U0492
Cyrillic_ghe_bar U0493
Cyrillic_ZHE_descender U0496
Cyrillic_zhe_descender U0497
Cyrillic_KA_descender U049a
Cyrillic_ka_descender U049b
Cyrillic_KA_vertstroke U049c
Cyrillic_ka_vertstroke U049d
Cyrillic_EN_descender U04a2
Cyrillic_en_descender U04a3
Cyrillic_U_straight U04ae
Cyrillic_u_straight U04af
Cyrillic_U_straight_bar U04b0
Cyrillic_u_straight_bar U04b1
Cyrillic_HA_descender U04b2
Cyrillic_ha_descender U04b3
Cyrillic_CHE_descender U04b6
Cyrillic_che_descender U04b7
Cyrillic_CHE_vertstroke U04b8
Cyrillic_che_vertstroke U04b9
Cyrillic_SHHA U04ba
Cyrillic_shha U04bb
Cyrillic_SCHWA U04d8
Cyrillic_schwa U04d9
Cyrillic_I_macron U04e2
Cyrillic_i_macron U04e3
Cyrillic_O_bar U04e8
Cyrillic_o_bar U04e9
Cyrillic_U_macron U04ee
Cyrillic_u_macron U04ef
Serbian_dje U0452
Macedonia_gje U0453
Cyrillic_io U0451
Ukrainian_ie U0454
Ukranian_je U0454
Macedonia_dse U0455
Ukrainian_i U0456
Ukranian_i U0456
Ukrainian_yi U0457
Ukranian_yi U0457
Cyrillic_je U0458
Serbian_je U0458
Cyrillic_lje U0459
Serbian_lje U0459
Cyrillic_nje U045a
Serbian_nje U045a
Serbian_tshe U045b
Macedonia_kje U045c
Ukrainian_ghe_with_upturn U0491
Byelorussian_shortu U045e
Cyrillic_dzhe U045f
Serbian_dze U045f
numerosign U2116
Serbian_DJE U0402
Macedonia_GJE U0403
Cyrillic_IO U0401
Ukrainian_IE U0404
Ukranian_JE U0404
Macedonia_DSE U0405
Ukrainian_I U0406
Ukranian_I U0406
Ukrainian_YI U0407
Ukranian_YI U0407
Cyrillic_JE U0408
Serbian_JE U0408
Cyrillic_LJE U0409
Serbian_LJE U0409
Cyrillic_NJE U040a
Serbian_NJE U040a
Serbian_TSHE U040b
Macedonia_KJE U040c
Ukrainian_GHE_WITH_UPTURN U0490
Byelorussian_SHORTU U040e
Cyrillic_DZHE U040f
Serbian_DZE U040f
Cyrillic_yu U044e
Cyrillic_a U0430
Cyrillic_be U0431
Cyrillic_tse U0446
Cyrillic_de U0434
Cyrillic_ie U0435
Cyrillic_ef U0444
Cyrillic_ghe U0433
Cyrillic_ha U0445
Cyrillic_i U0438
Cyrillic_shorti U0439
Cyrillic_ka U043a
Cyrillic_el U043b
Cyrillic_em U043c
Cyrillic_en U043d
Cyrillic_o U043e
Cyrillic_pe U043f
Cyrillic_ya U044f
Cyrillic_er U0440
Cyrillic_es U0441
Cyrillic_te U0442
Cyrillic_u U0443
Cyrillic_zhe U0436
Cyrillic_ve U0432
Cyrillic_softsign U044c
Cyrillic_yeru U044b
Cyrillic_ze U0437
Cyrillic_sha U0448
Cyrillic_e U044d
Cyrillic_shcha U0449
Cyrillic_che U0447
Cyrillic_hardsign U044a
Cyrillic_YU U042e
Cyrillic_A U0410
Cyrillic_BE U0411
Cyrillic_TSE U0426
Cyrillic_DE U0414
Cyrillic_IE U0415
Cyrillic_EF U0424
Cyrillic_GHE U0413
Cyrillic_HA U0425
Cyrillic_I U0418
Cyrillic_SHORTI U0419
Cyrillic_KA U041a
Cyrillic_EL U041b
Cyrillic_EM U041c
Cyrillic_EN U041d
Cyrillic_O U041e
Cyrillic_PE U041f
Cyrillic_YA U042f
Cyrillic_ER U0420
Cyrillic_ES U0421
Cyrillic_TE U0422
Cyrillic_U U0423
Cyrillic_ZHE U0416
Cyrillic_VE U0412
Cyrillic_SOFTSIGN U042c
Cyrillic_YERU U042b
Cyrillic_ZE U0417
Cyrillic_SHA U0428
Cyrillic_E U042d
Cyrillic_SHCHA U0429
Cyrillic_CHE U0427
Cyrillic_HARDSIGN U042a
Greek_ALPHAaccent U0386
Greek_EPSILONaccent U0388
Greek_ETAaccent U0389
Greek_IOTAaccent U038a
Greek_IOTAdieresis U03aa
Greek_IOTAdiaeresis U03aa
Greek_OMICRONaccent U038c
Greek_UPSILONaccent U038e
Greek_UPSILONdieresis U03ab
Greek_OMEGAaccent U038f
Greek_accentdieresis U0385
Greek_horizbar U2015
Greek_alphaaccent U03ac
Greek_epsilonaccent U03ad
Greek_etaaccent U03ae
Greek_iotaaccent U03af
Greek_iotadieresis U03ca
Greek_iotaaccentdieresis U0390
Greek_omicronaccent U03cc
Greek_upsilonaccent U03cd
Greek_upsilondieresis U03cb
Greek_upsilonaccentdieresis U03b0
Greek_omegaaccent U03ce
Greek_ALPHA U0391
Greek_BETA U0392
Greek_GAMMA U0393
Greek_DELTA U0394
Greek_EPSILON U0395
Greek_ZETA U0396
Greek_ETA U0397
Greek_THETA U0398
Greek_IOTA U0399
Greek_KAPPA U039a
Greek_LAMDA U039b
Greek_LAMBDA U039b
Greek_MU U039c
Greek_NU U039d
Greek_XI U039e
Greek_OMICRON U039f
Greek_PI U03a0
Greek_RHO U03a1
Greek_SIGMA U03a3
Greek_TAU U03a4
Greek_UPSILON U03a5
Greek_PHI U03a6
Greek_CHI U03a7
Greek_PSI U03a8
Greek_OMEGA U03a9
Greek_alpha U03b1
Greek_beta U03b2
Greek_gamma U03b3
Greek_delta U03b4
Greek_epsilon U03b5
Greek_zeta U03b6
Greek_eta U03b7
Greek_theta U03b8
Greek_iota U03b9
Greek_kappa U03ba
Greek_lamda U03bb
Greek_lambda U03bb
Greek_mu U03bc
Greek_nu U03bd
Greek_xi U03be
Greek_omicron U03bf
Greek_pi U03c0
Greek_rho U03c1
Greek_sigma U03c3
Greek_finalsmallsigma U03c2
Greek_tau U03c4
Greek_upsilon U03c5
Greek_phi U03c6
Greek_chi U03c7
Greek_psi U03c8
Greek_omega U03c9
leftradical U23b7
topleftradical U250c
horizconnector U2500
topintegral U2320
botintegral U2321
vertconnector U2502
topleftsqbracket U23a1
botleftsqbracket U23a3
toprightsqbracket U23a4
botrightsqbracket U23a6
topleftparens U239b
botleftparens U239d
toprightparens U239e
botrightparens U23a0
leftmiddlecurlybrace U23a8
rightmiddlecurlybrace U23ac
topleftsummation U08b1
botleftsummation U08b2
topvertsummationconnector U08b3
botvertsummationconnector U08b4
toprightsummation U08b5
botrightsummation U08b6
rightmiddlesummation U08b7
lessthanequal U2264
notequal U2260
greaterthanequal U2265
integral U222b
therefore U2234
variation U221d
infinity U221e
nabla U2207
approximate U223c
similarequal U2243
implies U21d2
identical U2261
radical U221a
includedin U2282
includes U2283
intersection U2229
union U222a
logicaland U2227
logicalor U2228
function U0192
leftarrow U2190
uparrow U2191
rightarrow U2192
downarrow U2193
blank U09df
soliddiamond U25c6
checkerboard U2592
ht U2409
ff U240c
cr U240d
lf U240a
nl U2424
vt U240b
lowrightcorner U2518
uprightcorner U2510
upleftcorner U250c
lowleftcorner U2514
crossinglines U253c
horizlinescan1 U23ba
horizlinescan3 U23bb
horizlinescan5 U2500
horizlinescan7 U23bc
horizlinescan9 U23bd
leftt U251c
rightt U2524
bott U2534
topt U252c
vertbar U2502
emspace U2003
enspace U2002
em3space U2004
em4space U2005
digitspace U2007
punctspace U2008
thinspace U2009
hairspace U200a
emdash U2014
endash U2013
ellipsis U2026
doubbaselinedot U2025
onethird U2153
twothirds U2154
onesixth U2159
fivesixths U215a
careof U2105
figdash U2012
leftanglebracket U27e8
decimalpoint U002e
rightanglebracket U27e9
marker U0abf
oneeighth U215b
threeeighths U215c
fiveeighths U215d
seveneighths U215e
trademark U2122
signaturemark U2613
trademarkincircle U0acb
leftopentriangle U25c1
rightopentriangle U25b7
emopencircle U25cb
emopenrectangle U25af
leftsinglequotemark U2018
rightsinglequotemark U2019
leftdoublequotemark U201c
rightdoublequotemark U201d
prescription U211e
permille U2030
minutes U2032
seconds U2033
latincross U271d
hexagram U0ada
filledrectbullet U25ac
filledlefttribullet U25c0
filledrighttribullet U25b6
emfilledcircle U25cf
emfilledrect U25ae
enopencircbullet U25e6
enopensquarebullet U25ab
openrectbullet U25ad
opentribulletup U25b3
opentribulletdown U25bd
openstar U2606
enfilledcircbullet U2022
enfilledsqbullet U25aa
filledtribulletup U25b2
filledtribulletdown U25bc
leftpointer U261c
rightpointer U261e
club U2663
diamond U2666
heart U2665
maltesecross U2720
dagger U2020
doubledagger U2021
checkmark U2713
ballotcross U2717
musicalsharp U266f
musicalflat U266d
malesymbol U2642
femalesymbol U2640
telephone U260e
telephonerecorder U2315
phonographcopyright U2117
caret U2038
singlelowquotemark U201a
doublelowquotemark U201e
cursor U0aff
leftcaret U003c
rightcaret U003e
downcaret U2228
upcaret U2227
overbar U00af
downtack U22a4
upshoe U2229
downstile U230a
underbar U005f
jot U2218
quad U2395
uptack U22a5
circle U25cb
upstile U2308
downshoe U222a
rightshoe U2283
leftshoe U2282
lefttack U22a3
righttack U22a2
hebrew_doublelowline U2017
hebrew_aleph U05d0
hebrew_bet U05d1
hebrew_beth U05d1
hebrew_gimel U05d2
hebrew_gimmel U05d2
hebrew_dalet U05d3
hebrew_daleth U05d3
hebrew_he U05d4
hebrew_waw U05d5
hebrew_zain U05d6
hebrew_zayin U05d6
hebrew_chet U05d7
hebrew_het U05d7
hebrew_tet U05d8
hebrew_teth U05d8
hebrew_yod U05d9
hebrew_finalkaph U05da
hebrew_kaph U05db
hebrew_lamed U05dc
hebrew_finalmem U05dd
hebrew_mem U05de
hebrew_finalnun U05df
hebrew_nun U05e0
hebrew_samech U05e1
hebrew_samekh U05e1
hebrew_ayin U05e2
hebrew_finalpe U05e3
hebrew_pe U05e4
hebrew_finalzade U05e5
hebrew_finalzadi U05e5
hebrew_zade U05e6
hebrew_zadi U05e6
hebrew_qoph U05e7
hebrew_kuf U05e7
hebrew_resh U05e8
hebrew_shin U05e9
hebrew_taw U05ea
hebrew_taf U05ea
Thai_kokai U0e01
Thai_khokhai U0e02
Thai_khokhuat U0e03
Thai_khokhwai U0e04
Thai_khokhon U0e05
Thai_khorakhang U0e06
Thai_ngongu U0e07
Thai_chochan U0e08
Thai_choching U0e09
Thai_chochang U0e0a
Thai_soso U0e0b
Thai_chochoe U0e0c
Thai_yoying U0e0d
Thai_dochada U0e0e
Thai_topatak U0e0f
Thai_thothan U0e10