pdf-reader 0.5.1 → 0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -103,7 +103,7 @@ class PDF::Reader
103
103
  obj = obj[p.to_i]
104
104
  end
105
105
 
106
- obj = @xref.object(obj) if obj.kind_of?(Reference)
106
+ obj = @xref.object(obj)
107
107
  end
108
108
 
109
109
  output_parent(obj)
@@ -39,7 +39,7 @@ class PDF::Reader
39
39
  @options = options
40
40
 
41
41
  case name
42
- when "FlateDecode" : @filter = :flate
42
+ when "FlateDecode" then @filter = :flate
43
43
  else raise UnsupportedFeatureError, "Unknown filter: #{name}"
44
44
  end
45
45
  end
@@ -0,0 +1,75 @@
1
+ ################################################################################
2
+ #
3
+ # Copyright (C) 2008 James Healy (jimmy@deefa.com)
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining
6
+ # a copy of this software and associated documentation files (the
7
+ # "Software"), to deal in the Software without restriction, including
8
+ # without limitation the rights to use, copy, modify, merge, publish,
9
+ # distribute, sublicense, and/or sell copies of the Software, and to
10
+ # permit persons to whom the Software is furnished to do so, subject to
11
+ # the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be
14
+ # included in all copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+ #
24
+ ################################################################################
25
+
26
+ class PDF::Reader
27
+ class Font
28
+ attr_accessor :label, :subtype, :encoding, :descendantfonts, :tounicode
29
+ attr_reader :basefont
30
+
31
+ # returns a hash that maps glyph names to unicode codepoints. The mapping is based on
32
+ # a text file supplied by Adobe at:
33
+ # http://www.adobe.com/devnet/opentype/archives/glyphlist.txt
34
+ def self.glyphnames
35
+ @@glyphs ||= {}
36
+
37
+ if @@glyphs.empty?
38
+ File.open(File.dirname(__FILE__) + "/glyphlist.txt","r") do |f|
39
+ f.each do |l|
40
+ m, name, code = *l.match(/([0-9A-Za-z]+);([0-9A-F]{4})/)
41
+ @@glyphs[name] = "0x#{code}".hex if name
42
+ end
43
+ end
44
+ end
45
+
46
+ @@glyphs
47
+ end
48
+
49
+ def basefont=(font)
50
+ # setup a default encoding for the selected font. It can always be overridden
51
+ # with encoding= if required
52
+ case font
53
+ when "Symbol" then
54
+ self.encoding = PDF::Reader::Encoding.factory("SymbolEncoding")
55
+ when "ZapfDingbats" then
56
+ self.encoding = PDF::Reader::Encoding.factory("ZapfDingbatsEncoding")
57
+ end
58
+ end
59
+
60
+ def to_utf8(params)
61
+ raise UnsupportedFeatureError, "font encoding '#{encoding}' currently unsupported" if encoding.kind_of?(String)
62
+
63
+ if params.class == String
64
+ # translate the bytestram into a UTF-8 string.
65
+ # If an encoding hasn't been specified, assume the text using this
66
+ # font is in Adobe Standard Encoding.
67
+ (encoding || PDF::Reader::Encoding::StandardEncoding.new).to_utf8(params, tounicode)
68
+ elsif params.class == Array
69
+ params.collect { |param| self.to_utf8(param) }
70
+ else
71
+ params
72
+ end
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,4322 @@
1
+ # ###################################################################################
2
+ # Copyright (c) 1997,1998,2002,2007 Adobe Systems Incorporated
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a
5
+ # copy of this documentation file to use, copy, publish, distribute,
6
+ # sublicense, and/or sell copies of the documentation, and to permit
7
+ # others to do the same, provided that:
8
+ # - No modification, editing or other alteration of this document is
9
+ # allowed; and
10
+ # - The above copyright notice and this permission notice shall be
11
+ # included in all copies of the documentation.
12
+ #
13
+ # Permission is hereby granted, free of charge, to any person obtaining a
14
+ # copy of this documentation file, to create their own derivative works
15
+ # from the content of this document to use, copy, publish, distribute,
16
+ # sublicense, and/or sell the derivative works, and to permit others to do
17
+ # the same, provided that the derived work is not represented as being a
18
+ # copy or version of this document.
19
+ #
20
+ # Adobe shall not be liable to any party for any loss of revenue or profit
21
+ # or for indirect, incidental, special, consequential, or other similar
22
+ # damages, whether based on tort (including without limitation negligence
23
+ # or strict liability), contract or other legal or equitable grounds even
24
+ # if Adobe has been advised or had reason to know of the possibility of
25
+ # such damages.� The Adobe materials are provided on an "AS IS" basis.�
26
+ # Adobe specifically disclaims all express, statutory, or implied
27
+ # warranties relating to the Adobe materials, including but not limited to
28
+ # those concerning merchantability or fitness for a particular purpose or
29
+ # non-infringement of any third party rights regarding the Adobe
30
+ # materials.
31
+ # ###################################################################################
32
+ # Name: Adobe Glyph List
33
+ # Table version: 2.0
34
+ # Date: September 20, 2002
35
+ #
36
+ # See http://partners.adobe.com/asn/developer/typeforum/unicodegn.html
37
+ #
38
+ # Format: Semicolon-delimited fields:
39
+ # (1) glyph name
40
+ # (2) Unicode scalar value
41
+ A;0041
42
+ AE;00C6
43
+ AEacute;01FC
44
+ AEmacron;01E2
45
+ AEsmall;F7E6
46
+ Aacute;00C1
47
+ Aacutesmall;F7E1
48
+ Abreve;0102
49
+ Abreveacute;1EAE
50
+ Abrevecyrillic;04D0
51
+ Abrevedotbelow;1EB6
52
+ Abrevegrave;1EB0
53
+ Abrevehookabove;1EB2
54
+ Abrevetilde;1EB4
55
+ Acaron;01CD
56
+ Acircle;24B6
57
+ Acircumflex;00C2
58
+ Acircumflexacute;1EA4
59
+ Acircumflexdotbelow;1EAC
60
+ Acircumflexgrave;1EA6
61
+ Acircumflexhookabove;1EA8
62
+ Acircumflexsmall;F7E2
63
+ Acircumflextilde;1EAA
64
+ Acute;F6C9
65
+ Acutesmall;F7B4
66
+ Acyrillic;0410
67
+ Adblgrave;0200
68
+ Adieresis;00C4
69
+ Adieresiscyrillic;04D2
70
+ Adieresismacron;01DE
71
+ Adieresissmall;F7E4
72
+ Adotbelow;1EA0
73
+ Adotmacron;01E0
74
+ Agrave;00C0
75
+ Agravesmall;F7E0
76
+ Ahookabove;1EA2
77
+ Aiecyrillic;04D4
78
+ Ainvertedbreve;0202
79
+ Alpha;0391
80
+ Alphatonos;0386
81
+ Amacron;0100
82
+ Amonospace;FF21
83
+ Aogonek;0104
84
+ Aring;00C5
85
+ Aringacute;01FA
86
+ Aringbelow;1E00
87
+ Aringsmall;F7E5
88
+ Asmall;F761
89
+ Atilde;00C3
90
+ Atildesmall;F7E3
91
+ Aybarmenian;0531
92
+ B;0042
93
+ Bcircle;24B7
94
+ Bdotaccent;1E02
95
+ Bdotbelow;1E04
96
+ Becyrillic;0411
97
+ Benarmenian;0532
98
+ Beta;0392
99
+ Bhook;0181
100
+ Blinebelow;1E06
101
+ Bmonospace;FF22
102
+ Brevesmall;F6F4
103
+ Bsmall;F762
104
+ Btopbar;0182
105
+ C;0043
106
+ Caarmenian;053E
107
+ Cacute;0106
108
+ Caron;F6CA
109
+ Caronsmall;F6F5
110
+ Ccaron;010C
111
+ Ccedilla;00C7
112
+ Ccedillaacute;1E08
113
+ Ccedillasmall;F7E7
114
+ Ccircle;24B8
115
+ Ccircumflex;0108
116
+ Cdot;010A
117
+ Cdotaccent;010A
118
+ Cedillasmall;F7B8
119
+ Chaarmenian;0549
120
+ Cheabkhasiancyrillic;04BC
121
+ Checyrillic;0427
122
+ Chedescenderabkhasiancyrillic;04BE
123
+ Chedescendercyrillic;04B6
124
+ Chedieresiscyrillic;04F4
125
+ Cheharmenian;0543
126
+ Chekhakassiancyrillic;04CB
127
+ Cheverticalstrokecyrillic;04B8
128
+ Chi;03A7
129
+ Chook;0187
130
+ Circumflexsmall;F6F6
131
+ Cmonospace;FF23
132
+ Coarmenian;0551
133
+ Csmall;F763
134
+ D;0044
135
+ DZ;01F1
136
+ DZcaron;01C4
137
+ Daarmenian;0534
138
+ Dafrican;0189
139
+ Dcaron;010E
140
+ Dcedilla;1E10
141
+ Dcircle;24B9
142
+ Dcircumflexbelow;1E12
143
+ Dcroat;0110
144
+ Ddotaccent;1E0A
145
+ Ddotbelow;1E0C
146
+ Decyrillic;0414
147
+ Deicoptic;03EE
148
+ Delta;2206
149
+ Deltagreek;0394
150
+ Dhook;018A
151
+ Dieresis;F6CB
152
+ DieresisAcute;F6CC
153
+ DieresisGrave;F6CD
154
+ Dieresissmall;F7A8
155
+ Digammagreek;03DC
156
+ Djecyrillic;0402
157
+ Dlinebelow;1E0E
158
+ Dmonospace;FF24
159
+ Dotaccentsmall;F6F7
160
+ Dslash;0110
161
+ Dsmall;F764
162
+ Dtopbar;018B
163
+ Dz;01F2
164
+ Dzcaron;01C5
165
+ Dzeabkhasiancyrillic;04E0
166
+ Dzecyrillic;0405
167
+ Dzhecyrillic;040F
168
+ E;0045
169
+ Eacute;00C9
170
+ Eacutesmall;F7E9
171
+ Ebreve;0114
172
+ Ecaron;011A
173
+ Ecedillabreve;1E1C
174
+ Echarmenian;0535
175
+ Ecircle;24BA
176
+ Ecircumflex;00CA
177
+ Ecircumflexacute;1EBE
178
+ Ecircumflexbelow;1E18
179
+ Ecircumflexdotbelow;1EC6
180
+ Ecircumflexgrave;1EC0
181
+ Ecircumflexhookabove;1EC2
182
+ Ecircumflexsmall;F7EA
183
+ Ecircumflextilde;1EC4
184
+ Ecyrillic;0404
185
+ Edblgrave;0204
186
+ Edieresis;00CB
187
+ Edieresissmall;F7EB
188
+ Edot;0116
189
+ Edotaccent;0116
190
+ Edotbelow;1EB8
191
+ Efcyrillic;0424
192
+ Egrave;00C8
193
+ Egravesmall;F7E8
194
+ Eharmenian;0537
195
+ Ehookabove;1EBA
196
+ Eightroman;2167
197
+ Einvertedbreve;0206
198
+ Eiotifiedcyrillic;0464
199
+ Elcyrillic;041B
200
+ Elevenroman;216A
201
+ Emacron;0112
202
+ Emacronacute;1E16
203
+ Emacrongrave;1E14
204
+ Emcyrillic;041C
205
+ Emonospace;FF25
206
+ Encyrillic;041D
207
+ Endescendercyrillic;04A2
208
+ Eng;014A
209
+ Enghecyrillic;04A4
210
+ Enhookcyrillic;04C7
211
+ Eogonek;0118
212
+ Eopen;0190
213
+ Epsilon;0395
214
+ Epsilontonos;0388
215
+ Ercyrillic;0420
216
+ Ereversed;018E
217
+ Ereversedcyrillic;042D
218
+ Escyrillic;0421
219
+ Esdescendercyrillic;04AA
220
+ Esh;01A9
221
+ Esmall;F765
222
+ Eta;0397
223
+ Etarmenian;0538
224
+ Etatonos;0389
225
+ Eth;00D0
226
+ Ethsmall;F7F0
227
+ Etilde;1EBC
228
+ Etildebelow;1E1A
229
+ Euro;20AC
230
+ Ezh;01B7
231
+ Ezhcaron;01EE
232
+ Ezhreversed;01B8
233
+ F;0046
234
+ Fcircle;24BB
235
+ Fdotaccent;1E1E
236
+ Feharmenian;0556
237
+ Feicoptic;03E4
238
+ Fhook;0191
239
+ Fitacyrillic;0472
240
+ Fiveroman;2164
241
+ Fmonospace;FF26
242
+ Fourroman;2163
243
+ Fsmall;F766
244
+ G;0047
245
+ GBsquare;3387
246
+ Gacute;01F4
247
+ Gamma;0393
248
+ Gammaafrican;0194
249
+ Gangiacoptic;03EA
250
+ Gbreve;011E
251
+ Gcaron;01E6
252
+ Gcedilla;0122
253
+ Gcircle;24BC
254
+ Gcircumflex;011C
255
+ Gcommaaccent;0122
256
+ Gdot;0120
257
+ Gdotaccent;0120
258
+ Gecyrillic;0413
259
+ Ghadarmenian;0542
260
+ Ghemiddlehookcyrillic;0494
261
+ Ghestrokecyrillic;0492
262
+ Gheupturncyrillic;0490
263
+ Ghook;0193
264
+ Gimarmenian;0533
265
+ Gjecyrillic;0403
266
+ Gmacron;1E20
267
+ Gmonospace;FF27
268
+ Grave;F6CE
269
+ Gravesmall;F760
270
+ Gsmall;F767
271
+ Gsmallhook;029B
272
+ Gstroke;01E4
273
+ H;0048
274
+ H18533;25CF
275
+ H18543;25AA
276
+ H18551;25AB
277
+ H22073;25A1
278
+ HPsquare;33CB
279
+ Haabkhasiancyrillic;04A8
280
+ Hadescendercyrillic;04B2
281
+ Hardsigncyrillic;042A
282
+ Hbar;0126
283
+ Hbrevebelow;1E2A
284
+ Hcedilla;1E28
285
+ Hcircle;24BD
286
+ Hcircumflex;0124
287
+ Hdieresis;1E26
288
+ Hdotaccent;1E22
289
+ Hdotbelow;1E24
290
+ Hmonospace;FF28
291
+ Hoarmenian;0540
292
+ Horicoptic;03E8
293
+ Hsmall;F768
294
+ Hungarumlaut;F6CF
295
+ Hungarumlautsmall;F6F8
296
+ Hzsquare;3390
297
+ I;0049
298
+ IAcyrillic;042F
299
+ IJ;0132
300
+ IUcyrillic;042E
301
+ Iacute;00CD
302
+ Iacutesmall;F7ED
303
+ Ibreve;012C
304
+ Icaron;01CF
305
+ Icircle;24BE
306
+ Icircumflex;00CE
307
+ Icircumflexsmall;F7EE
308
+ Icyrillic;0406
309
+ Idblgrave;0208
310
+ Idieresis;00CF
311
+ Idieresisacute;1E2E
312
+ Idieresiscyrillic;04E4
313
+ Idieresissmall;F7EF
314
+ Idot;0130
315
+ Idotaccent;0130
316
+ Idotbelow;1ECA
317
+ Iebrevecyrillic;04D6
318
+ Iecyrillic;0415
319
+ Ifraktur;2111
320
+ Igrave;00CC
321
+ Igravesmall;F7EC
322
+ Ihookabove;1EC8
323
+ Iicyrillic;0418
324
+ Iinvertedbreve;020A
325
+ Iishortcyrillic;0419
326
+ Imacron;012A
327
+ Imacroncyrillic;04E2
328
+ Imonospace;FF29
329
+ Iniarmenian;053B
330
+ Iocyrillic;0401
331
+ Iogonek;012E
332
+ Iota;0399
333
+ Iotaafrican;0196
334
+ Iotadieresis;03AA
335
+ Iotatonos;038A
336
+ Ismall;F769
337
+ Istroke;0197
338
+ Itilde;0128
339
+ Itildebelow;1E2C
340
+ Izhitsacyrillic;0474
341
+ Izhitsadblgravecyrillic;0476
342
+ J;004A
343
+ Jaarmenian;0541
344
+ Jcircle;24BF
345
+ Jcircumflex;0134
346
+ Jecyrillic;0408
347
+ Jheharmenian;054B
348
+ Jmonospace;FF2A
349
+ Jsmall;F76A
350
+ K;004B
351
+ KBsquare;3385
352
+ KKsquare;33CD
353
+ Kabashkircyrillic;04A0
354
+ Kacute;1E30
355
+ Kacyrillic;041A
356
+ Kadescendercyrillic;049A
357
+ Kahookcyrillic;04C3
358
+ Kappa;039A
359
+ Kastrokecyrillic;049E
360
+ Kaverticalstrokecyrillic;049C
361
+ Kcaron;01E8
362
+ Kcedilla;0136
363
+ Kcircle;24C0
364
+ Kcommaaccent;0136
365
+ Kdotbelow;1E32
366
+ Keharmenian;0554
367
+ Kenarmenian;053F
368
+ Khacyrillic;0425
369
+ Kheicoptic;03E6
370
+ Khook;0198
371
+ Kjecyrillic;040C
372
+ Klinebelow;1E34
373
+ Kmonospace;FF2B
374
+ Koppacyrillic;0480
375
+ Koppagreek;03DE
376
+ Ksicyrillic;046E
377
+ Ksmall;F76B
378
+ L;004C
379
+ LJ;01C7
380
+ LL;F6BF
381
+ Lacute;0139
382
+ Lambda;039B
383
+ Lcaron;013D
384
+ Lcedilla;013B
385
+ Lcircle;24C1
386
+ Lcircumflexbelow;1E3C
387
+ Lcommaaccent;013B
388
+ Ldot;013F
389
+ Ldotaccent;013F
390
+ Ldotbelow;1E36
391
+ Ldotbelowmacron;1E38
392
+ Liwnarmenian;053C
393
+ Lj;01C8
394
+ Ljecyrillic;0409
395
+ Llinebelow;1E3A
396
+ Lmonospace;FF2C
397
+ Lslash;0141
398
+ Lslashsmall;F6F9
399
+ Lsmall;F76C
400
+ M;004D
401
+ MBsquare;3386
402
+ Macron;F6D0
403
+ Macronsmall;F7AF
404
+ Macute;1E3E
405
+ Mcircle;24C2
406
+ Mdotaccent;1E40
407
+ Mdotbelow;1E42
408
+ Menarmenian;0544
409
+ Mmonospace;FF2D
410
+ Msmall;F76D
411
+ Mturned;019C
412
+ Mu;039C
413
+ N;004E
414
+ NJ;01CA
415
+ Nacute;0143
416
+ Ncaron;0147
417
+ Ncedilla;0145
418
+ Ncircle;24C3
419
+ Ncircumflexbelow;1E4A
420
+ Ncommaaccent;0145
421
+ Ndotaccent;1E44
422
+ Ndotbelow;1E46
423
+ Nhookleft;019D
424
+ Nineroman;2168
425
+ Nj;01CB
426
+ Njecyrillic;040A
427
+ Nlinebelow;1E48
428
+ Nmonospace;FF2E
429
+ Nowarmenian;0546
430
+ Nsmall;F76E
431
+ Ntilde;00D1
432
+ Ntildesmall;F7F1
433
+ Nu;039D
434
+ O;004F
435
+ OE;0152
436
+ OEsmall;F6FA
437
+ Oacute;00D3
438
+ Oacutesmall;F7F3
439
+ Obarredcyrillic;04E8
440
+ Obarreddieresiscyrillic;04EA
441
+ Obreve;014E
442
+ Ocaron;01D1
443
+ Ocenteredtilde;019F
444
+ Ocircle;24C4
445
+ Ocircumflex;00D4
446
+ Ocircumflexacute;1ED0
447
+ Ocircumflexdotbelow;1ED8
448
+ Ocircumflexgrave;1ED2
449
+ Ocircumflexhookabove;1ED4
450
+ Ocircumflexsmall;F7F4
451
+ Ocircumflextilde;1ED6
452
+ Ocyrillic;041E
453
+ Odblacute;0150
454
+ Odblgrave;020C
455
+ Odieresis;00D6
456
+ Odieresiscyrillic;04E6
457
+ Odieresissmall;F7F6
458
+ Odotbelow;1ECC
459
+ Ogoneksmall;F6FB
460
+ Ograve;00D2
461
+ Ogravesmall;F7F2
462
+ Oharmenian;0555
463
+ Ohm;2126
464
+ Ohookabove;1ECE
465
+ Ohorn;01A0
466
+ Ohornacute;1EDA
467
+ Ohorndotbelow;1EE2
468
+ Ohorngrave;1EDC
469
+ Ohornhookabove;1EDE
470
+ Ohorntilde;1EE0
471
+ Ohungarumlaut;0150
472
+ Oi;01A2
473
+ Oinvertedbreve;020E
474
+ Omacron;014C
475
+ Omacronacute;1E52
476
+ Omacrongrave;1E50
477
+ Omega;2126
478
+ Omegacyrillic;0460
479
+ Omegagreek;03A9
480
+ Omegaroundcyrillic;047A
481
+ Omegatitlocyrillic;047C
482
+ Omegatonos;038F
483
+ Omicron;039F
484
+ Omicrontonos;038C
485
+ Omonospace;FF2F
486
+ Oneroman;2160
487
+ Oogonek;01EA
488
+ Oogonekmacron;01EC
489
+ Oopen;0186
490
+ Oslash;00D8
491
+ Oslashacute;01FE
492
+ Oslashsmall;F7F8
493
+ Osmall;F76F
494
+ Ostrokeacute;01FE
495
+ Otcyrillic;047E
496
+ Otilde;00D5
497
+ Otildeacute;1E4C
498
+ Otildedieresis;1E4E
499
+ Otildesmall;F7F5
500
+ P;0050
501
+ Pacute;1E54
502
+ Pcircle;24C5
503
+ Pdotaccent;1E56
504
+ Pecyrillic;041F
505
+ Peharmenian;054A
506
+ Pemiddlehookcyrillic;04A6
507
+ Phi;03A6
508
+ Phook;01A4
509
+ Pi;03A0
510
+ Piwrarmenian;0553
511
+ Pmonospace;FF30
512
+ Psi;03A8
513
+ Psicyrillic;0470
514
+ Psmall;F770
515
+ Q;0051
516
+ Qcircle;24C6
517
+ Qmonospace;FF31
518
+ Qsmall;F771
519
+ R;0052
520
+ Raarmenian;054C
521
+ Racute;0154
522
+ Rcaron;0158
523
+ Rcedilla;0156
524
+ Rcircle;24C7
525
+ Rcommaaccent;0156
526
+ Rdblgrave;0210
527
+ Rdotaccent;1E58
528
+ Rdotbelow;1E5A
529
+ Rdotbelowmacron;1E5C
530
+ Reharmenian;0550
531
+ Rfraktur;211C
532
+ Rho;03A1
533
+ Ringsmall;F6FC
534
+ Rinvertedbreve;0212
535
+ Rlinebelow;1E5E
536
+ Rmonospace;FF32
537
+ Rsmall;F772
538
+ Rsmallinverted;0281
539
+ Rsmallinvertedsuperior;02B6
540
+ S;0053
541
+ SF010000;250C
542
+ SF020000;2514
543
+ SF030000;2510
544
+ SF040000;2518
545
+ SF050000;253C
546
+ SF060000;252C
547
+ SF070000;2534
548
+ SF080000;251C
549
+ SF090000;2524
550
+ SF100000;2500
551
+ SF110000;2502
552
+ SF190000;2561
553
+ SF200000;2562
554
+ SF210000;2556
555
+ SF220000;2555
556
+ SF230000;2563
557
+ SF240000;2551
558
+ SF250000;2557
559
+ SF260000;255D
560
+ SF270000;255C
561
+ SF280000;255B
562
+ SF360000;255E
563
+ SF370000;255F
564
+ SF380000;255A
565
+ SF390000;2554
566
+ SF400000;2569
567
+ SF410000;2566
568
+ SF420000;2560
569
+ SF430000;2550
570
+ SF440000;256C
571
+ SF450000;2567
572
+ SF460000;2568
573
+ SF470000;2564
574
+ SF480000;2565
575
+ SF490000;2559
576
+ SF500000;2558
577
+ SF510000;2552
578
+ SF520000;2553
579
+ SF530000;256B
580
+ SF540000;256A
581
+ Sacute;015A
582
+ Sacutedotaccent;1E64
583
+ Sampigreek;03E0
584
+ Scaron;0160
585
+ Scarondotaccent;1E66
586
+ Scaronsmall;F6FD
587
+ Scedilla;015E
588
+ Schwa;018F
589
+ Schwacyrillic;04D8
590
+ Schwadieresiscyrillic;04DA
591
+ Scircle;24C8
592
+ Scircumflex;015C
593
+ Scommaaccent;0218
594
+ Sdotaccent;1E60
595
+ Sdotbelow;1E62
596
+ Sdotbelowdotaccent;1E68
597
+ Seharmenian;054D
598
+ Sevenroman;2166
599
+ Shaarmenian;0547
600
+ Shacyrillic;0428
601
+ Shchacyrillic;0429
602
+ Sheicoptic;03E2
603
+ Shhacyrillic;04BA
604
+ Shimacoptic;03EC
605
+ Sigma;03A3
606
+ Sixroman;2165
607
+ Smonospace;FF33
608
+ Softsigncyrillic;042C
609
+ Ssmall;F773
610
+ Stigmagreek;03DA
611
+ T;0054
612
+ Tau;03A4
613
+ Tbar;0166
614
+ Tcaron;0164
615
+ Tcedilla;0162
616
+ Tcircle;24C9
617
+ Tcircumflexbelow;1E70
618
+ Tcommaaccent;0162
619
+ Tdotaccent;1E6A
620
+ Tdotbelow;1E6C
621
+ Tecyrillic;0422
622
+ Tedescendercyrillic;04AC
623
+ Tenroman;2169
624
+ Tetsecyrillic;04B4
625
+ Theta;0398
626
+ Thook;01AC
627
+ Thorn;00DE
628
+ Thornsmall;F7FE
629
+ Threeroman;2162
630
+ Tildesmall;F6FE
631
+ Tiwnarmenian;054F
632
+ Tlinebelow;1E6E
633
+ Tmonospace;FF34
634
+ Toarmenian;0539
635
+ Tonefive;01BC
636
+ Tonesix;0184
637
+ Tonetwo;01A7
638
+ Tretroflexhook;01AE
639
+ Tsecyrillic;0426
640
+ Tshecyrillic;040B
641
+ Tsmall;F774
642
+ Twelveroman;216B
643
+ Tworoman;2161
644
+ U;0055
645
+ Uacute;00DA
646
+ Uacutesmall;F7FA
647
+ Ubreve;016C
648
+ Ucaron;01D3
649
+ Ucircle;24CA
650
+ Ucircumflex;00DB
651
+ Ucircumflexbelow;1E76
652
+ Ucircumflexsmall;F7FB
653
+ Ucyrillic;0423
654
+ Udblacute;0170
655
+ Udblgrave;0214
656
+ Udieresis;00DC
657
+ Udieresisacute;01D7
658
+ Udieresisbelow;1E72
659
+ Udieresiscaron;01D9
660
+ Udieresiscyrillic;04F0
661
+ Udieresisgrave;01DB
662
+ Udieresismacron;01D5
663
+ Udieresissmall;F7FC
664
+ Udotbelow;1EE4
665
+ Ugrave;00D9
666
+ Ugravesmall;F7F9
667
+ Uhookabove;1EE6
668
+ Uhorn;01AF
669
+ Uhornacute;1EE8
670
+ Uhorndotbelow;1EF0
671
+ Uhorngrave;1EEA
672
+ Uhornhookabove;1EEC
673
+ Uhorntilde;1EEE
674
+ Uhungarumlaut;0170
675
+ Uhungarumlautcyrillic;04F2
676
+ Uinvertedbreve;0216
677
+ Ukcyrillic;0478
678
+ Umacron;016A
679
+ Umacroncyrillic;04EE
680
+ Umacrondieresis;1E7A
681
+ Umonospace;FF35
682
+ Uogonek;0172
683
+ Upsilon;03A5
684
+ Upsilon1;03D2
685
+ Upsilonacutehooksymbolgreek;03D3
686
+ Upsilonafrican;01B1
687
+ Upsilondieresis;03AB
688
+ Upsilondieresishooksymbolgreek;03D4
689
+ Upsilonhooksymbol;03D2
690
+ Upsilontonos;038E
691
+ Uring;016E
692
+ Ushortcyrillic;040E
693
+ Usmall;F775
694
+ Ustraightcyrillic;04AE
695
+ Ustraightstrokecyrillic;04B0
696
+ Utilde;0168
697
+ Utildeacute;1E78
698
+ Utildebelow;1E74
699
+ V;0056
700
+ Vcircle;24CB
701
+ Vdotbelow;1E7E
702
+ Vecyrillic;0412
703
+ Vewarmenian;054E
704
+ Vhook;01B2
705
+ Vmonospace;FF36
706
+ Voarmenian;0548
707
+ Vsmall;F776
708
+ Vtilde;1E7C
709
+ W;0057
710
+ Wacute;1E82
711
+ Wcircle;24CC
712
+ Wcircumflex;0174
713
+ Wdieresis;1E84
714
+ Wdotaccent;1E86
715
+ Wdotbelow;1E88
716
+ Wgrave;1E80
717
+ Wmonospace;FF37
718
+ Wsmall;F777
719
+ X;0058
720
+ Xcircle;24CD
721
+ Xdieresis;1E8C
722
+ Xdotaccent;1E8A
723
+ Xeharmenian;053D
724
+ Xi;039E
725
+ Xmonospace;FF38
726
+ Xsmall;F778
727
+ Y;0059
728
+ Yacute;00DD
729
+ Yacutesmall;F7FD
730
+ Yatcyrillic;0462
731
+ Ycircle;24CE
732
+ Ycircumflex;0176
733
+ Ydieresis;0178
734
+ Ydieresissmall;F7FF
735
+ Ydotaccent;1E8E
736
+ Ydotbelow;1EF4
737
+ Yericyrillic;042B
738
+ Yerudieresiscyrillic;04F8
739
+ Ygrave;1EF2
740
+ Yhook;01B3
741
+ Yhookabove;1EF6
742
+ Yiarmenian;0545
743
+ Yicyrillic;0407
744
+ Yiwnarmenian;0552
745
+ Ymonospace;FF39
746
+ Ysmall;F779
747
+ Ytilde;1EF8
748
+ Yusbigcyrillic;046A
749
+ Yusbigiotifiedcyrillic;046C
750
+ Yuslittlecyrillic;0466
751
+ Yuslittleiotifiedcyrillic;0468
752
+ Z;005A
753
+ Zaarmenian;0536
754
+ Zacute;0179
755
+ Zcaron;017D
756
+ Zcaronsmall;F6FF
757
+ Zcircle;24CF
758
+ Zcircumflex;1E90
759
+ Zdot;017B
760
+ Zdotaccent;017B
761
+ Zdotbelow;1E92
762
+ Zecyrillic;0417
763
+ Zedescendercyrillic;0498
764
+ Zedieresiscyrillic;04DE
765
+ Zeta;0396
766
+ Zhearmenian;053A
767
+ Zhebrevecyrillic;04C1
768
+ Zhecyrillic;0416
769
+ Zhedescendercyrillic;0496
770
+ Zhedieresiscyrillic;04DC
771
+ Zlinebelow;1E94
772
+ Zmonospace;FF3A
773
+ Zsmall;F77A
774
+ Zstroke;01B5
775
+ a;0061
776
+ aabengali;0986
777
+ aacute;00E1
778
+ aadeva;0906
779
+ aagujarati;0A86
780
+ aagurmukhi;0A06
781
+ aamatragurmukhi;0A3E
782
+ aarusquare;3303
783
+ aavowelsignbengali;09BE
784
+ aavowelsigndeva;093E
785
+ aavowelsigngujarati;0ABE
786
+ abbreviationmarkarmenian;055F
787
+ abbreviationsigndeva;0970
788
+ abengali;0985
789
+ abopomofo;311A
790
+ abreve;0103
791
+ abreveacute;1EAF
792
+ abrevecyrillic;04D1
793
+ abrevedotbelow;1EB7
794
+ abrevegrave;1EB1
795
+ abrevehookabove;1EB3
796
+ abrevetilde;1EB5
797
+ acaron;01CE
798
+ acircle;24D0
799
+ acircumflex;00E2
800
+ acircumflexacute;1EA5
801
+ acircumflexdotbelow;1EAD
802
+ acircumflexgrave;1EA7
803
+ acircumflexhookabove;1EA9
804
+ acircumflextilde;1EAB
805
+ acute;00B4
806
+ acutebelowcmb;0317
807
+ acutecmb;0301
808
+ acutecomb;0301
809
+ acutedeva;0954
810
+ acutelowmod;02CF
811
+ acutetonecmb;0341
812
+ acyrillic;0430
813
+ adblgrave;0201
814
+ addakgurmukhi;0A71
815
+ adeva;0905
816
+ adieresis;00E4
817
+ adieresiscyrillic;04D3
818
+ adieresismacron;01DF
819
+ adotbelow;1EA1
820
+ adotmacron;01E1
821
+ ae;00E6
822
+ aeacute;01FD
823
+ aekorean;3150
824
+ aemacron;01E3
825
+ afii00208;2015
826
+ afii08941;20A4
827
+ afii10017;0410
828
+ afii10018;0411
829
+ afii10019;0412
830
+ afii10020;0413
831
+ afii10021;0414
832
+ afii10022;0415
833
+ afii10023;0401
834
+ afii10024;0416
835
+ afii10025;0417
836
+ afii10026;0418
837
+ afii10027;0419
838
+ afii10028;041A
839
+ afii10029;041B
840
+ afii10030;041C
841
+ afii10031;041D
842
+ afii10032;041E
843
+ afii10033;041F
844
+ afii10034;0420
845
+ afii10035;0421
846
+ afii10036;0422
847
+ afii10037;0423
848
+ afii10038;0424
849
+ afii10039;0425
850
+ afii10040;0426
851
+ afii10041;0427
852
+ afii10042;0428
853
+ afii10043;0429
854
+ afii10044;042A
855
+ afii10045;042B
856
+ afii10046;042C
857
+ afii10047;042D
858
+ afii10048;042E
859
+ afii10049;042F
860
+ afii10050;0490
861
+ afii10051;0402
862
+ afii10052;0403
863
+ afii10053;0404
864
+ afii10054;0405
865
+ afii10055;0406
866
+ afii10056;0407
867
+ afii10057;0408
868
+ afii10058;0409
869
+ afii10059;040A
870
+ afii10060;040B
871
+ afii10061;040C
872
+ afii10062;040E
873
+ afii10063;F6C4
874
+ afii10064;F6C5
875
+ afii10065;0430
876
+ afii10066;0431
877
+ afii10067;0432
878
+ afii10068;0433
879
+ afii10069;0434
880
+ afii10070;0435
881
+ afii10071;0451
882
+ afii10072;0436
883
+ afii10073;0437
884
+ afii10074;0438
885
+ afii10075;0439
886
+ afii10076;043A
887
+ afii10077;043B
888
+ afii10078;043C
889
+ afii10079;043D
890
+ afii10080;043E
891
+ afii10081;043F
892
+ afii10082;0440
893
+ afii10083;0441
894
+ afii10084;0442
895
+ afii10085;0443
896
+ afii10086;0444
897
+ afii10087;0445
898
+ afii10088;0446
899
+ afii10089;0447
900
+ afii10090;0448
901
+ afii10091;0449
902
+ afii10092;044A
903
+ afii10093;044B
904
+ afii10094;044C
905
+ afii10095;044D
906
+ afii10096;044E
907
+ afii10097;044F
908
+ afii10098;0491
909
+ afii10099;0452
910
+ afii10100;0453
911
+ afii10101;0454
912
+ afii10102;0455
913
+ afii10103;0456
914
+ afii10104;0457
915
+ afii10105;0458
916
+ afii10106;0459
917
+ afii10107;045A
918
+ afii10108;045B
919
+ afii10109;045C
920
+ afii10110;045E
921
+ afii10145;040F
922
+ afii10146;0462
923
+ afii10147;0472
924
+ afii10148;0474
925
+ afii10192;F6C6
926
+ afii10193;045F
927
+ afii10194;0463
928
+ afii10195;0473
929
+ afii10196;0475
930
+ afii10831;F6C7
931
+ afii10832;F6C8
932
+ afii10846;04D9
933
+ afii299;200E
934
+ afii300;200F
935
+ afii301;200D
936
+ afii57381;066A
937
+ afii57388;060C
938
+ afii57392;0660
939
+ afii57393;0661
940
+ afii57394;0662
941
+ afii57395;0663
942
+ afii57396;0664
943
+ afii57397;0665
944
+ afii57398;0666
945
+ afii57399;0667
946
+ afii57400;0668
947
+ afii57401;0669
948
+ afii57403;061B
949
+ afii57407;061F
950
+ afii57409;0621
951
+ afii57410;0622
952
+ afii57411;0623
953
+ afii57412;0624
954
+ afii57413;0625
955
+ afii57414;0626
956
+ afii57415;0627
957
+ afii57416;0628
958
+ afii57417;0629
959
+ afii57418;062A
960
+ afii57419;062B
961
+ afii57420;062C
962
+ afii57421;062D
963
+ afii57422;062E
964
+ afii57423;062F
965
+ afii57424;0630
966
+ afii57425;0631
967
+ afii57426;0632
968
+ afii57427;0633
969
+ afii57428;0634
970
+ afii57429;0635
971
+ afii57430;0636
972
+ afii57431;0637
973
+ afii57432;0638
974
+ afii57433;0639
975
+ afii57434;063A
976
+ afii57440;0640
977
+ afii57441;0641
978
+ afii57442;0642
979
+ afii57443;0643
980
+ afii57444;0644
981
+ afii57445;0645
982
+ afii57446;0646
983
+ afii57448;0648
984
+ afii57449;0649
985
+ afii57450;064A
986
+ afii57451;064B
987
+ afii57452;064C
988
+ afii57453;064D
989
+ afii57454;064E
990
+ afii57455;064F
991
+ afii57456;0650
992
+ afii57457;0651
993
+ afii57458;0652
994
+ afii57470;0647
995
+ afii57505;06A4
996
+ afii57506;067E
997
+ afii57507;0686
998
+ afii57508;0698
999
+ afii57509;06AF
1000
+ afii57511;0679
1001
+ afii57512;0688
1002
+ afii57513;0691
1003
+ afii57514;06BA
1004
+ afii57519;06D2
1005
+ afii57534;06D5
1006
+ afii57636;20AA
1007
+ afii57645;05BE
1008
+ afii57658;05C3
1009
+ afii57664;05D0
1010
+ afii57665;05D1
1011
+ afii57666;05D2
1012
+ afii57667;05D3
1013
+ afii57668;05D4
1014
+ afii57669;05D5
1015
+ afii57670;05D6
1016
+ afii57671;05D7
1017
+ afii57672;05D8
1018
+ afii57673;05D9
1019
+ afii57674;05DA
1020
+ afii57675;05DB
1021
+ afii57676;05DC
1022
+ afii57677;05DD
1023
+ afii57678;05DE
1024
+ afii57679;05DF
1025
+ afii57680;05E0
1026
+ afii57681;05E1
1027
+ afii57682;05E2
1028
+ afii57683;05E3
1029
+ afii57684;05E4
1030
+ afii57685;05E5
1031
+ afii57686;05E6
1032
+ afii57687;05E7
1033
+ afii57688;05E8
1034
+ afii57689;05E9
1035
+ afii57690;05EA
1036
+ afii57694;FB2A
1037
+ afii57695;FB2B
1038
+ afii57700;FB4B
1039
+ afii57705;FB1F
1040
+ afii57716;05F0
1041
+ afii57717;05F1
1042
+ afii57718;05F2
1043
+ afii57723;FB35
1044
+ afii57793;05B4
1045
+ afii57794;05B5
1046
+ afii57795;05B6
1047
+ afii57796;05BB
1048
+ afii57797;05B8
1049
+ afii57798;05B7
1050
+ afii57799;05B0
1051
+ afii57800;05B2
1052
+ afii57801;05B1
1053
+ afii57802;05B3
1054
+ afii57803;05C2
1055
+ afii57804;05C1
1056
+ afii57806;05B9
1057
+ afii57807;05BC
1058
+ afii57839;05BD
1059
+ afii57841;05BF
1060
+ afii57842;05C0
1061
+ afii57929;02BC
1062
+ afii61248;2105
1063
+ afii61289;2113
1064
+ afii61352;2116
1065
+ afii61573;202C
1066
+ afii61574;202D
1067
+ afii61575;202E
1068
+ afii61664;200C
1069
+ afii63167;066D
1070
+ afii64937;02BD
1071
+ agrave;00E0
1072
+ agujarati;0A85
1073
+ agurmukhi;0A05
1074
+ ahiragana;3042
1075
+ ahookabove;1EA3
1076
+ aibengali;0990
1077
+ aibopomofo;311E
1078
+ aideva;0910
1079
+ aiecyrillic;04D5
1080
+ aigujarati;0A90
1081
+ aigurmukhi;0A10
1082
+ aimatragurmukhi;0A48
1083
+ ainarabic;0639
1084
+ ainfinalarabic;FECA
1085
+ aininitialarabic;FECB
1086
+ ainmedialarabic;FECC
1087
+ ainvertedbreve;0203
1088
+ aivowelsignbengali;09C8
1089
+ aivowelsigndeva;0948
1090
+ aivowelsigngujarati;0AC8
1091
+ akatakana;30A2
1092
+ akatakanahalfwidth;FF71
1093
+ akorean;314F
1094
+ alef;05D0
1095
+ alefarabic;0627
1096
+ alefdageshhebrew;FB30
1097
+ aleffinalarabic;FE8E
1098
+ alefhamzaabovearabic;0623
1099
+ alefhamzaabovefinalarabic;FE84
1100
+ alefhamzabelowarabic;0625
1101
+ alefhamzabelowfinalarabic;FE88
1102
+ alefhebrew;05D0
1103
+ aleflamedhebrew;FB4F
1104
+ alefmaddaabovearabic;0622
1105
+ alefmaddaabovefinalarabic;FE82
1106
+ alefmaksuraarabic;0649
1107
+ alefmaksurafinalarabic;FEF0
1108
+ alefmaksurainitialarabic;FEF3
1109
+ alefmaksuramedialarabic;FEF4
1110
+ alefpatahhebrew;FB2E
1111
+ alefqamatshebrew;FB2F
1112
+ aleph;2135
1113
+ allequal;224C
1114
+ alpha;03B1
1115
+ alphatonos;03AC
1116
+ amacron;0101
1117
+ amonospace;FF41
1118
+ ampersand;0026
1119
+ ampersandmonospace;FF06
1120
+ ampersandsmall;F726
1121
+ amsquare;33C2
1122
+ anbopomofo;3122
1123
+ angbopomofo;3124
1124
+ angkhankhuthai;0E5A
1125
+ angle;2220
1126
+ anglebracketleft;3008
1127
+ anglebracketleftvertical;FE3F
1128
+ anglebracketright;3009
1129
+ anglebracketrightvertical;FE40
1130
+ angleleft;2329
1131
+ angleright;232A
1132
+ angstrom;212B
1133
+ anoteleia;0387
1134
+ anudattadeva;0952
1135
+ anusvarabengali;0982
1136
+ anusvaradeva;0902
1137
+ anusvaragujarati;0A82
1138
+ aogonek;0105
1139
+ apaatosquare;3300
1140
+ aparen;249C
1141
+ apostrophearmenian;055A
1142
+ apostrophemod;02BC
1143
+ apple;F8FF
1144
+ approaches;2250
1145
+ approxequal;2248
1146
+ approxequalorimage;2252
1147
+ approximatelyequal;2245
1148
+ araeaekorean;318E
1149
+ araeakorean;318D
1150
+ arc;2312
1151
+ arighthalfring;1E9A
1152
+ aring;00E5
1153
+ aringacute;01FB
1154
+ aringbelow;1E01
1155
+ arrowboth;2194
1156
+ arrowdashdown;21E3
1157
+ arrowdashleft;21E0
1158
+ arrowdashright;21E2
1159
+ arrowdashup;21E1
1160
+ arrowdblboth;21D4
1161
+ arrowdbldown;21D3
1162
+ arrowdblleft;21D0
1163
+ arrowdblright;21D2
1164
+ arrowdblup;21D1
1165
+ arrowdown;2193
1166
+ arrowdownleft;2199
1167
+ arrowdownright;2198
1168
+ arrowdownwhite;21E9
1169
+ arrowheaddownmod;02C5
1170
+ arrowheadleftmod;02C2
1171
+ arrowheadrightmod;02C3
1172
+ arrowheadupmod;02C4
1173
+ arrowhorizex;F8E7
1174
+ arrowleft;2190
1175
+ arrowleftdbl;21D0
1176
+ arrowleftdblstroke;21CD
1177
+ arrowleftoverright;21C6
1178
+ arrowleftwhite;21E6
1179
+ arrowright;2192
1180
+ arrowrightdblstroke;21CF
1181
+ arrowrightheavy;279E
1182
+ arrowrightoverleft;21C4
1183
+ arrowrightwhite;21E8
1184
+ arrowtableft;21E4
1185
+ arrowtabright;21E5
1186
+ arrowup;2191
1187
+ arrowupdn;2195
1188
+ arrowupdnbse;21A8
1189
+ arrowupdownbase;21A8
1190
+ arrowupleft;2196
1191
+ arrowupleftofdown;21C5
1192
+ arrowupright;2197
1193
+ arrowupwhite;21E7
1194
+ arrowvertex;F8E6
1195
+ asciicircum;005E
1196
+ asciicircummonospace;FF3E
1197
+ asciitilde;007E
1198
+ asciitildemonospace;FF5E
1199
+ ascript;0251
1200
+ ascriptturned;0252
1201
+ asmallhiragana;3041
1202
+ asmallkatakana;30A1
1203
+ asmallkatakanahalfwidth;FF67
1204
+ asterisk;002A
1205
+ asteriskaltonearabic;066D
1206
+ asteriskarabic;066D
1207
+ asteriskmath;2217
1208
+ asteriskmonospace;FF0A
1209
+ asterisksmall;FE61
1210
+ asterism;2042
1211
+ asuperior;F6E9
1212
+ asymptoticallyequal;2243
1213
+ at;0040
1214
+ atilde;00E3
1215
+ atmonospace;FF20
1216
+ atsmall;FE6B
1217
+ aturned;0250
1218
+ aubengali;0994
1219
+ aubopomofo;3120
1220
+ audeva;0914
1221
+ augujarati;0A94
1222
+ augurmukhi;0A14
1223
+ aulengthmarkbengali;09D7
1224
+ aumatragurmukhi;0A4C
1225
+ auvowelsignbengali;09CC
1226
+ auvowelsigndeva;094C
1227
+ auvowelsigngujarati;0ACC
1228
+ avagrahadeva;093D
1229
+ aybarmenian;0561
1230
+ ayin;05E2
1231
+ ayinaltonehebrew;FB20
1232
+ ayinhebrew;05E2
1233
+ b;0062
1234
+ babengali;09AC
1235
+ backslash;005C
1236
+ backslashmonospace;FF3C
1237
+ badeva;092C
1238
+ bagujarati;0AAC
1239
+ bagurmukhi;0A2C
1240
+ bahiragana;3070
1241
+ bahtthai;0E3F
1242
+ bakatakana;30D0
1243
+ bar;007C
1244
+ barmonospace;FF5C
1245
+ bbopomofo;3105
1246
+ bcircle;24D1
1247
+ bdotaccent;1E03
1248
+ bdotbelow;1E05
1249
+ beamedsixteenthnotes;266C
1250
+ because;2235
1251
+ becyrillic;0431
1252
+ beharabic;0628
1253
+ behfinalarabic;FE90
1254
+ behinitialarabic;FE91
1255
+ behiragana;3079
1256
+ behmedialarabic;FE92
1257
+ behmeeminitialarabic;FC9F
1258
+ behmeemisolatedarabic;FC08
1259
+ behnoonfinalarabic;FC6D
1260
+ bekatakana;30D9
1261
+ benarmenian;0562
1262
+ bet;05D1
1263
+ beta;03B2
1264
+ betasymbolgreek;03D0
1265
+ betdagesh;FB31
1266
+ betdageshhebrew;FB31
1267
+ bethebrew;05D1
1268
+ betrafehebrew;FB4C
1269
+ bhabengali;09AD
1270
+ bhadeva;092D
1271
+ bhagujarati;0AAD
1272
+ bhagurmukhi;0A2D
1273
+ bhook;0253
1274
+ bihiragana;3073
1275
+ bikatakana;30D3
1276
+ bilabialclick;0298
1277
+ bindigurmukhi;0A02
1278
+ birusquare;3331
1279
+ blackcircle;25CF
1280
+ blackdiamond;25C6
1281
+ blackdownpointingtriangle;25BC
1282
+ blackleftpointingpointer;25C4
1283
+ blackleftpointingtriangle;25C0
1284
+ blacklenticularbracketleft;3010
1285
+ blacklenticularbracketleftvertical;FE3B
1286
+ blacklenticularbracketright;3011
1287
+ blacklenticularbracketrightvertical;FE3C
1288
+ blacklowerlefttriangle;25E3
1289
+ blacklowerrighttriangle;25E2
1290
+ blackrectangle;25AC
1291
+ blackrightpointingpointer;25BA
1292
+ blackrightpointingtriangle;25B6
1293
+ blacksmallsquare;25AA
1294
+ blacksmilingface;263B
1295
+ blacksquare;25A0
1296
+ blackstar;2605
1297
+ blackupperlefttriangle;25E4
1298
+ blackupperrighttriangle;25E5
1299
+ blackuppointingsmalltriangle;25B4
1300
+ blackuppointingtriangle;25B2
1301
+ blank;2423
1302
+ blinebelow;1E07
1303
+ block;2588
1304
+ bmonospace;FF42
1305
+ bobaimaithai;0E1A
1306
+ bohiragana;307C
1307
+ bokatakana;30DC
1308
+ bparen;249D
1309
+ bqsquare;33C3
1310
+ braceex;F8F4
1311
+ braceleft;007B
1312
+ braceleftbt;F8F3
1313
+ braceleftmid;F8F2
1314
+ braceleftmonospace;FF5B
1315
+ braceleftsmall;FE5B
1316
+ bracelefttp;F8F1
1317
+ braceleftvertical;FE37
1318
+ braceright;007D
1319
+ bracerightbt;F8FE
1320
+ bracerightmid;F8FD
1321
+ bracerightmonospace;FF5D
1322
+ bracerightsmall;FE5C
1323
+ bracerighttp;F8FC
1324
+ bracerightvertical;FE38
1325
+ bracketleft;005B
1326
+ bracketleftbt;F8F0
1327
+ bracketleftex;F8EF
1328
+ bracketleftmonospace;FF3B
1329
+ bracketlefttp;F8EE
1330
+ bracketright;005D
1331
+ bracketrightbt;F8FB
1332
+ bracketrightex;F8FA
1333
+ bracketrightmonospace;FF3D
1334
+ bracketrighttp;F8F9
1335
+ breve;02D8
1336
+ brevebelowcmb;032E
1337
+ brevecmb;0306
1338
+ breveinvertedbelowcmb;032F
1339
+ breveinvertedcmb;0311
1340
+ breveinverteddoublecmb;0361
1341
+ bridgebelowcmb;032A
1342
+ bridgeinvertedbelowcmb;033A
1343
+ brokenbar;00A6
1344
+ bstroke;0180
1345
+ bsuperior;F6EA
1346
+ btopbar;0183
1347
+ buhiragana;3076
1348
+ bukatakana;30D6
1349
+ bullet;2022
1350
+ bulletinverse;25D8
1351
+ bulletoperator;2219
1352
+ bullseye;25CE
1353
+ c;0063
1354
+ caarmenian;056E
1355
+ cabengali;099A
1356
+ cacute;0107
1357
+ cadeva;091A
1358
+ cagujarati;0A9A
1359
+ cagurmukhi;0A1A
1360
+ calsquare;3388
1361
+ candrabindubengali;0981
1362
+ candrabinducmb;0310
1363
+ candrabindudeva;0901
1364
+ candrabindugujarati;0A81
1365
+ capslock;21EA
1366
+ careof;2105
1367
+ caron;02C7
1368
+ caronbelowcmb;032C
1369
+ caroncmb;030C
1370
+ carriagereturn;21B5
1371
+ cbopomofo;3118
1372
+ ccaron;010D
1373
+ ccedilla;00E7
1374
+ ccedillaacute;1E09
1375
+ ccircle;24D2
1376
+ ccircumflex;0109
1377
+ ccurl;0255
1378
+ cdot;010B
1379
+ cdotaccent;010B
1380
+ cdsquare;33C5
1381
+ cedilla;00B8
1382
+ cedillacmb;0327
1383
+ cent;00A2
1384
+ centigrade;2103
1385
+ centinferior;F6DF
1386
+ centmonospace;FFE0
1387
+ centoldstyle;F7A2
1388
+ centsuperior;F6E0
1389
+ chaarmenian;0579
1390
+ chabengali;099B
1391
+ chadeva;091B
1392
+ chagujarati;0A9B
1393
+ chagurmukhi;0A1B
1394
+ chbopomofo;3114
1395
+ cheabkhasiancyrillic;04BD
1396
+ checkmark;2713
1397
+ checyrillic;0447
1398
+ chedescenderabkhasiancyrillic;04BF
1399
+ chedescendercyrillic;04B7
1400
+ chedieresiscyrillic;04F5
1401
+ cheharmenian;0573
1402
+ chekhakassiancyrillic;04CC
1403
+ cheverticalstrokecyrillic;04B9
1404
+ chi;03C7
1405
+ chieuchacirclekorean;3277
1406
+ chieuchaparenkorean;3217
1407
+ chieuchcirclekorean;3269
1408
+ chieuchkorean;314A
1409
+ chieuchparenkorean;3209
1410
+ chochangthai;0E0A
1411
+ chochanthai;0E08
1412
+ chochingthai;0E09
1413
+ chochoethai;0E0C
1414
+ chook;0188
1415
+ cieucacirclekorean;3276
1416
+ cieucaparenkorean;3216
1417
+ cieuccirclekorean;3268
1418
+ cieuckorean;3148
1419
+ cieucparenkorean;3208
1420
+ cieucuparenkorean;321C
1421
+ circle;25CB
1422
+ circlemultiply;2297
1423
+ circleot;2299
1424
+ circleplus;2295
1425
+ circlepostalmark;3036
1426
+ circlewithlefthalfblack;25D0
1427
+ circlewithrighthalfblack;25D1
1428
+ circumflex;02C6
1429
+ circumflexbelowcmb;032D
1430
+ circumflexcmb;0302
1431
+ clear;2327
1432
+ clickalveolar;01C2
1433
+ clickdental;01C0
1434
+ clicklateral;01C1
1435
+ clickretroflex;01C3
1436
+ club;2663
1437
+ clubsuitblack;2663
1438
+ clubsuitwhite;2667
1439
+ cmcubedsquare;33A4
1440
+ cmonospace;FF43
1441
+ cmsquaredsquare;33A0
1442
+ coarmenian;0581
1443
+ colon;003A
1444
+ colonmonetary;20A1
1445
+ colonmonospace;FF1A
1446
+ colonsign;20A1
1447
+ colonsmall;FE55
1448
+ colontriangularhalfmod;02D1
1449
+ colontriangularmod;02D0
1450
+ comma;002C
1451
+ commaabovecmb;0313
1452
+ commaaboverightcmb;0315
1453
+ commaaccent;F6C3
1454
+ commaarabic;060C
1455
+ commaarmenian;055D
1456
+ commainferior;F6E1
1457
+ commamonospace;FF0C
1458
+ commareversedabovecmb;0314
1459
+ commareversedmod;02BD
1460
+ commasmall;FE50
1461
+ commasuperior;F6E2
1462
+ commaturnedabovecmb;0312
1463
+ commaturnedmod;02BB
1464
+ compass;263C
1465
+ congruent;2245
1466
+ contourintegral;222E
1467
+ control;2303
1468
+ controlACK;0006
1469
+ controlBEL;0007
1470
+ controlBS;0008
1471
+ controlCAN;0018
1472
+ controlCR;000D
1473
+ controlDC1;0011
1474
+ controlDC2;0012
1475
+ controlDC3;0013
1476
+ controlDC4;0014
1477
+ controlDEL;007F
1478
+ controlDLE;0010
1479
+ controlEM;0019
1480
+ controlENQ;0005
1481
+ controlEOT;0004
1482
+ controlESC;001B
1483
+ controlETB;0017
1484
+ controlETX;0003
1485
+ controlFF;000C
1486
+ controlFS;001C
1487
+ controlGS;001D
1488
+ controlHT;0009
1489
+ controlLF;000A
1490
+ controlNAK;0015
1491
+ controlRS;001E
1492
+ controlSI;000F
1493
+ controlSO;000E
1494
+ controlSOT;0002
1495
+ controlSTX;0001
1496
+ controlSUB;001A
1497
+ controlSYN;0016
1498
+ controlUS;001F
1499
+ controlVT;000B
1500
+ copyright;00A9
1501
+ copyrightsans;F8E9
1502
+ copyrightserif;F6D9
1503
+ cornerbracketleft;300C
1504
+ cornerbracketlefthalfwidth;FF62
1505
+ cornerbracketleftvertical;FE41
1506
+ cornerbracketright;300D
1507
+ cornerbracketrighthalfwidth;FF63
1508
+ cornerbracketrightvertical;FE42
1509
+ corporationsquare;337F
1510
+ cosquare;33C7
1511
+ coverkgsquare;33C6
1512
+ cparen;249E
1513
+ cruzeiro;20A2
1514
+ cstretched;0297
1515
+ curlyand;22CF
1516
+ curlyor;22CE
1517
+ currency;00A4
1518
+ cyrBreve;F6D1
1519
+ cyrFlex;F6D2
1520
+ cyrbreve;F6D4
1521
+ cyrflex;F6D5
1522
+ d;0064
1523
+ daarmenian;0564
1524
+ dabengali;09A6
1525
+ dadarabic;0636
1526
+ dadeva;0926
1527
+ dadfinalarabic;FEBE
1528
+ dadinitialarabic;FEBF
1529
+ dadmedialarabic;FEC0
1530
+ dagesh;05BC
1531
+ dageshhebrew;05BC
1532
+ dagger;2020
1533
+ daggerdbl;2021
1534
+ dagujarati;0AA6
1535
+ dagurmukhi;0A26
1536
+ dahiragana;3060
1537
+ dakatakana;30C0
1538
+ dalarabic;062F
1539
+ dalet;05D3
1540
+ daletdagesh;FB33
1541
+ daletdageshhebrew;FB33
1542
+ dalethatafpatah;05D3 05B2
1543
+ dalethatafpatahhebrew;05D3 05B2
1544
+ dalethatafsegol;05D3 05B1
1545
+ dalethatafsegolhebrew;05D3 05B1
1546
+ dalethebrew;05D3
1547
+ dalethiriq;05D3 05B4
1548
+ dalethiriqhebrew;05D3 05B4
1549
+ daletholam;05D3 05B9
1550
+ daletholamhebrew;05D3 05B9
1551
+ daletpatah;05D3 05B7
1552
+ daletpatahhebrew;05D3 05B7
1553
+ daletqamats;05D3 05B8
1554
+ daletqamatshebrew;05D3 05B8
1555
+ daletqubuts;05D3 05BB
1556
+ daletqubutshebrew;05D3 05BB
1557
+ daletsegol;05D3 05B6
1558
+ daletsegolhebrew;05D3 05B6
1559
+ daletsheva;05D3 05B0
1560
+ daletshevahebrew;05D3 05B0
1561
+ dalettsere;05D3 05B5
1562
+ dalettserehebrew;05D3 05B5
1563
+ dalfinalarabic;FEAA
1564
+ dammaarabic;064F
1565
+ dammalowarabic;064F
1566
+ dammatanaltonearabic;064C
1567
+ dammatanarabic;064C
1568
+ danda;0964
1569
+ dargahebrew;05A7
1570
+ dargalefthebrew;05A7
1571
+ dasiapneumatacyrilliccmb;0485
1572
+ dblGrave;F6D3
1573
+ dblanglebracketleft;300A
1574
+ dblanglebracketleftvertical;FE3D
1575
+ dblanglebracketright;300B
1576
+ dblanglebracketrightvertical;FE3E
1577
+ dblarchinvertedbelowcmb;032B
1578
+ dblarrowleft;21D4
1579
+ dblarrowright;21D2
1580
+ dbldanda;0965
1581
+ dblgrave;F6D6
1582
+ dblgravecmb;030F
1583
+ dblintegral;222C
1584
+ dbllowline;2017
1585
+ dbllowlinecmb;0333
1586
+ dbloverlinecmb;033F
1587
+ dblprimemod;02BA
1588
+ dblverticalbar;2016
1589
+ dblverticallineabovecmb;030E
1590
+ dbopomofo;3109
1591
+ dbsquare;33C8
1592
+ dcaron;010F
1593
+ dcedilla;1E11
1594
+ dcircle;24D3
1595
+ dcircumflexbelow;1E13
1596
+ dcroat;0111
1597
+ ddabengali;09A1
1598
+ ddadeva;0921
1599
+ ddagujarati;0AA1
1600
+ ddagurmukhi;0A21
1601
+ ddalarabic;0688
1602
+ ddalfinalarabic;FB89
1603
+ dddhadeva;095C
1604
+ ddhabengali;09A2
1605
+ ddhadeva;0922
1606
+ ddhagujarati;0AA2
1607
+ ddhagurmukhi;0A22
1608
+ ddotaccent;1E0B
1609
+ ddotbelow;1E0D
1610
+ decimalseparatorarabic;066B
1611
+ decimalseparatorpersian;066B
1612
+ decyrillic;0434
1613
+ degree;00B0
1614
+ dehihebrew;05AD
1615
+ dehiragana;3067
1616
+ deicoptic;03EF
1617
+ dekatakana;30C7
1618
+ deleteleft;232B
1619
+ deleteright;2326
1620
+ delta;03B4
1621
+ deltaturned;018D
1622
+ denominatorminusonenumeratorbengali;09F8
1623
+ dezh;02A4
1624
+ dhabengali;09A7
1625
+ dhadeva;0927
1626
+ dhagujarati;0AA7
1627
+ dhagurmukhi;0A27
1628
+ dhook;0257
1629
+ dialytikatonos;0385
1630
+ dialytikatonoscmb;0344
1631
+ diamond;2666
1632
+ diamondsuitwhite;2662
1633
+ dieresis;00A8
1634
+ dieresisacute;F6D7
1635
+ dieresisbelowcmb;0324
1636
+ dieresiscmb;0308
1637
+ dieresisgrave;F6D8
1638
+ dieresistonos;0385
1639
+ dihiragana;3062
1640
+ dikatakana;30C2
1641
+ dittomark;3003
1642
+ divide;00F7
1643
+ divides;2223
1644
+ divisionslash;2215
1645
+ djecyrillic;0452
1646
+ dkshade;2593
1647
+ dlinebelow;1E0F
1648
+ dlsquare;3397
1649
+ dmacron;0111
1650
+ dmonospace;FF44
1651
+ dnblock;2584
1652
+ dochadathai;0E0E
1653
+ dodekthai;0E14
1654
+ dohiragana;3069
1655
+ dokatakana;30C9
1656
+ dollar;0024
1657
+ dollarinferior;F6E3
1658
+ dollarmonospace;FF04
1659
+ dollaroldstyle;F724
1660
+ dollarsmall;FE69
1661
+ dollarsuperior;F6E4
1662
+ dong;20AB
1663
+ dorusquare;3326
1664
+ dotaccent;02D9
1665
+ dotaccentcmb;0307
1666
+ dotbelowcmb;0323
1667
+ dotbelowcomb;0323
1668
+ dotkatakana;30FB
1669
+ dotlessi;0131
1670
+ dotlessj;F6BE
1671
+ dotlessjstrokehook;0284
1672
+ dotmath;22C5
1673
+ dottedcircle;25CC
1674
+ doubleyodpatah;FB1F
1675
+ doubleyodpatahhebrew;FB1F
1676
+ downtackbelowcmb;031E
1677
+ downtackmod;02D5
1678
+ dparen;249F
1679
+ dsuperior;F6EB
1680
+ dtail;0256
1681
+ dtopbar;018C
1682
+ duhiragana;3065
1683
+ dukatakana;30C5
1684
+ dz;01F3
1685
+ dzaltone;02A3
1686
+ dzcaron;01C6
1687
+ dzcurl;02A5
1688
+ dzeabkhasiancyrillic;04E1
1689
+ dzecyrillic;0455
1690
+ dzhecyrillic;045F
1691
+ e;0065
1692
+ eacute;00E9
1693
+ earth;2641
1694
+ ebengali;098F
1695
+ ebopomofo;311C
1696
+ ebreve;0115
1697
+ ecandradeva;090D
1698
+ ecandragujarati;0A8D
1699
+ ecandravowelsigndeva;0945
1700
+ ecandravowelsigngujarati;0AC5
1701
+ ecaron;011B
1702
+ ecedillabreve;1E1D
1703
+ echarmenian;0565
1704
+ echyiwnarmenian;0587
1705
+ ecircle;24D4
1706
+ ecircumflex;00EA
1707
+ ecircumflexacute;1EBF
1708
+ ecircumflexbelow;1E19
1709
+ ecircumflexdotbelow;1EC7
1710
+ ecircumflexgrave;1EC1
1711
+ ecircumflexhookabove;1EC3
1712
+ ecircumflextilde;1EC5
1713
+ ecyrillic;0454
1714
+ edblgrave;0205
1715
+ edeva;090F
1716
+ edieresis;00EB
1717
+ edot;0117
1718
+ edotaccent;0117
1719
+ edotbelow;1EB9
1720
+ eegurmukhi;0A0F
1721
+ eematragurmukhi;0A47
1722
+ efcyrillic;0444
1723
+ egrave;00E8
1724
+ egujarati;0A8F
1725
+ eharmenian;0567
1726
+ ehbopomofo;311D
1727
+ ehiragana;3048
1728
+ ehookabove;1EBB
1729
+ eibopomofo;311F
1730
+ eight;0038
1731
+ eightarabic;0668
1732
+ eightbengali;09EE
1733
+ eightcircle;2467
1734
+ eightcircleinversesansserif;2791
1735
+ eightdeva;096E
1736
+ eighteencircle;2471
1737
+ eighteenparen;2485
1738
+ eighteenperiod;2499
1739
+ eightgujarati;0AEE
1740
+ eightgurmukhi;0A6E
1741
+ eighthackarabic;0668
1742
+ eighthangzhou;3028
1743
+ eighthnotebeamed;266B
1744
+ eightideographicparen;3227
1745
+ eightinferior;2088
1746
+ eightmonospace;FF18
1747
+ eightoldstyle;F738
1748
+ eightparen;247B
1749
+ eightperiod;248F
1750
+ eightpersian;06F8
1751
+ eightroman;2177
1752
+ eightsuperior;2078
1753
+ eightthai;0E58
1754
+ einvertedbreve;0207
1755
+ eiotifiedcyrillic;0465
1756
+ ekatakana;30A8
1757
+ ekatakanahalfwidth;FF74
1758
+ ekonkargurmukhi;0A74
1759
+ ekorean;3154
1760
+ elcyrillic;043B
1761
+ element;2208
1762
+ elevencircle;246A
1763
+ elevenparen;247E
1764
+ elevenperiod;2492
1765
+ elevenroman;217A
1766
+ ellipsis;2026
1767
+ ellipsisvertical;22EE
1768
+ emacron;0113
1769
+ emacronacute;1E17
1770
+ emacrongrave;1E15
1771
+ emcyrillic;043C
1772
+ emdash;2014
1773
+ emdashvertical;FE31
1774
+ emonospace;FF45
1775
+ emphasismarkarmenian;055B
1776
+ emptyset;2205
1777
+ enbopomofo;3123
1778
+ encyrillic;043D
1779
+ endash;2013
1780
+ endashvertical;FE32
1781
+ endescendercyrillic;04A3
1782
+ eng;014B
1783
+ engbopomofo;3125
1784
+ enghecyrillic;04A5
1785
+ enhookcyrillic;04C8
1786
+ enspace;2002
1787
+ eogonek;0119
1788
+ eokorean;3153
1789
+ eopen;025B
1790
+ eopenclosed;029A
1791
+ eopenreversed;025C
1792
+ eopenreversedclosed;025E
1793
+ eopenreversedhook;025D
1794
+ eparen;24A0
1795
+ epsilon;03B5
1796
+ epsilontonos;03AD
1797
+ equal;003D
1798
+ equalmonospace;FF1D
1799
+ equalsmall;FE66
1800
+ equalsuperior;207C
1801
+ equivalence;2261
1802
+ erbopomofo;3126
1803
+ ercyrillic;0440
1804
+ ereversed;0258
1805
+ ereversedcyrillic;044D
1806
+ escyrillic;0441
1807
+ esdescendercyrillic;04AB
1808
+ esh;0283
1809
+ eshcurl;0286
1810
+ eshortdeva;090E
1811
+ eshortvowelsigndeva;0946
1812
+ eshreversedloop;01AA
1813
+ eshsquatreversed;0285
1814
+ esmallhiragana;3047
1815
+ esmallkatakana;30A7
1816
+ esmallkatakanahalfwidth;FF6A
1817
+ estimated;212E
1818
+ esuperior;F6EC
1819
+ eta;03B7
1820
+ etarmenian;0568
1821
+ etatonos;03AE
1822
+ eth;00F0
1823
+ etilde;1EBD
1824
+ etildebelow;1E1B
1825
+ etnahtafoukhhebrew;0591
1826
+ etnahtafoukhlefthebrew;0591
1827
+ etnahtahebrew;0591
1828
+ etnahtalefthebrew;0591
1829
+ eturned;01DD
1830
+ eukorean;3161
1831
+ euro;20AC
1832
+ evowelsignbengali;09C7
1833
+ evowelsigndeva;0947
1834
+ evowelsigngujarati;0AC7
1835
+ exclam;0021
1836
+ exclamarmenian;055C
1837
+ exclamdbl;203C
1838
+ exclamdown;00A1
1839
+ exclamdownsmall;F7A1
1840
+ exclammonospace;FF01
1841
+ exclamsmall;F721
1842
+ existential;2203
1843
+ ezh;0292
1844
+ ezhcaron;01EF
1845
+ ezhcurl;0293
1846
+ ezhreversed;01B9
1847
+ ezhtail;01BA
1848
+ f;0066
1849
+ fadeva;095E
1850
+ fagurmukhi;0A5E
1851
+ fahrenheit;2109
1852
+ fathaarabic;064E
1853
+ fathalowarabic;064E
1854
+ fathatanarabic;064B
1855
+ fbopomofo;3108
1856
+ fcircle;24D5
1857
+ fdotaccent;1E1F
1858
+ feharabic;0641
1859
+ feharmenian;0586
1860
+ fehfinalarabic;FED2
1861
+ fehinitialarabic;FED3
1862
+ fehmedialarabic;FED4
1863
+ feicoptic;03E5
1864
+ female;2640
1865
+ ff;FB00
1866
+ ffi;FB03
1867
+ ffl;FB04
1868
+ fi;FB01
1869
+ fifteencircle;246E
1870
+ fifteenparen;2482
1871
+ fifteenperiod;2496
1872
+ figuredash;2012
1873
+ filledbox;25A0
1874
+ filledrect;25AC
1875
+ finalkaf;05DA
1876
+ finalkafdagesh;FB3A
1877
+ finalkafdageshhebrew;FB3A
1878
+ finalkafhebrew;05DA
1879
+ finalkafqamats;05DA 05B8
1880
+ finalkafqamatshebrew;05DA 05B8
1881
+ finalkafsheva;05DA 05B0
1882
+ finalkafshevahebrew;05DA 05B0
1883
+ finalmem;05DD
1884
+ finalmemhebrew;05DD
1885
+ finalnun;05DF
1886
+ finalnunhebrew;05DF
1887
+ finalpe;05E3
1888
+ finalpehebrew;05E3
1889
+ finaltsadi;05E5
1890
+ finaltsadihebrew;05E5
1891
+ firsttonechinese;02C9
1892
+ fisheye;25C9
1893
+ fitacyrillic;0473
1894
+ five;0035
1895
+ fivearabic;0665
1896
+ fivebengali;09EB
1897
+ fivecircle;2464
1898
+ fivecircleinversesansserif;278E
1899
+ fivedeva;096B
1900
+ fiveeighths;215D
1901
+ fivegujarati;0AEB
1902
+ fivegurmukhi;0A6B
1903
+ fivehackarabic;0665
1904
+ fivehangzhou;3025
1905
+ fiveideographicparen;3224
1906
+ fiveinferior;2085
1907
+ fivemonospace;FF15
1908
+ fiveoldstyle;F735
1909
+ fiveparen;2478
1910
+ fiveperiod;248C
1911
+ fivepersian;06F5
1912
+ fiveroman;2174
1913
+ fivesuperior;2075
1914
+ fivethai;0E55
1915
+ fl;FB02
1916
+ florin;0192
1917
+ fmonospace;FF46
1918
+ fmsquare;3399
1919
+ fofanthai;0E1F
1920
+ fofathai;0E1D
1921
+ fongmanthai;0E4F
1922
+ forall;2200
1923
+ four;0034
1924
+ fourarabic;0664
1925
+ fourbengali;09EA
1926
+ fourcircle;2463
1927
+ fourcircleinversesansserif;278D
1928
+ fourdeva;096A
1929
+ fourgujarati;0AEA
1930
+ fourgurmukhi;0A6A
1931
+ fourhackarabic;0664
1932
+ fourhangzhou;3024
1933
+ fourideographicparen;3223
1934
+ fourinferior;2084
1935
+ fourmonospace;FF14
1936
+ fournumeratorbengali;09F7
1937
+ fouroldstyle;F734
1938
+ fourparen;2477
1939
+ fourperiod;248B
1940
+ fourpersian;06F4
1941
+ fourroman;2173
1942
+ foursuperior;2074
1943
+ fourteencircle;246D
1944
+ fourteenparen;2481
1945
+ fourteenperiod;2495
1946
+ fourthai;0E54
1947
+ fourthtonechinese;02CB
1948
+ fparen;24A1
1949
+ fraction;2044
1950
+ franc;20A3
1951
+ g;0067
1952
+ gabengali;0997
1953
+ gacute;01F5
1954
+ gadeva;0917
1955
+ gafarabic;06AF
1956
+ gaffinalarabic;FB93
1957
+ gafinitialarabic;FB94
1958
+ gafmedialarabic;FB95
1959
+ gagujarati;0A97
1960
+ gagurmukhi;0A17
1961
+ gahiragana;304C
1962
+ gakatakana;30AC
1963
+ gamma;03B3
1964
+ gammalatinsmall;0263
1965
+ gammasuperior;02E0
1966
+ gangiacoptic;03EB
1967
+ gbopomofo;310D
1968
+ gbreve;011F
1969
+ gcaron;01E7
1970
+ gcedilla;0123
1971
+ gcircle;24D6
1972
+ gcircumflex;011D
1973
+ gcommaaccent;0123
1974
+ gdot;0121
1975
+ gdotaccent;0121
1976
+ gecyrillic;0433
1977
+ gehiragana;3052
1978
+ gekatakana;30B2
1979
+ geometricallyequal;2251
1980
+ gereshaccenthebrew;059C
1981
+ gereshhebrew;05F3
1982
+ gereshmuqdamhebrew;059D
1983
+ germandbls;00DF
1984
+ gershayimaccenthebrew;059E
1985
+ gershayimhebrew;05F4
1986
+ getamark;3013
1987
+ ghabengali;0998
1988
+ ghadarmenian;0572
1989
+ ghadeva;0918
1990
+ ghagujarati;0A98
1991
+ ghagurmukhi;0A18
1992
+ ghainarabic;063A
1993
+ ghainfinalarabic;FECE
1994
+ ghaininitialarabic;FECF
1995
+ ghainmedialarabic;FED0
1996
+ ghemiddlehookcyrillic;0495
1997
+ ghestrokecyrillic;0493
1998
+ gheupturncyrillic;0491
1999
+ ghhadeva;095A
2000
+ ghhagurmukhi;0A5A
2001
+ ghook;0260
2002
+ ghzsquare;3393
2003
+ gihiragana;304E
2004
+ gikatakana;30AE
2005
+ gimarmenian;0563
2006
+ gimel;05D2
2007
+ gimeldagesh;FB32
2008
+ gimeldageshhebrew;FB32
2009
+ gimelhebrew;05D2
2010
+ gjecyrillic;0453
2011
+ glottalinvertedstroke;01BE
2012
+ glottalstop;0294
2013
+ glottalstopinverted;0296
2014
+ glottalstopmod;02C0
2015
+ glottalstopreversed;0295
2016
+ glottalstopreversedmod;02C1
2017
+ glottalstopreversedsuperior;02E4
2018
+ glottalstopstroke;02A1
2019
+ glottalstopstrokereversed;02A2
2020
+ gmacron;1E21
2021
+ gmonospace;FF47
2022
+ gohiragana;3054
2023
+ gokatakana;30B4
2024
+ gparen;24A2
2025
+ gpasquare;33AC
2026
+ gradient;2207
2027
+ grave;0060
2028
+ gravebelowcmb;0316
2029
+ gravecmb;0300
2030
+ gravecomb;0300
2031
+ gravedeva;0953
2032
+ gravelowmod;02CE
2033
+ gravemonospace;FF40
2034
+ gravetonecmb;0340
2035
+ greater;003E
2036
+ greaterequal;2265
2037
+ greaterequalorless;22DB
2038
+ greatermonospace;FF1E
2039
+ greaterorequivalent;2273
2040
+ greaterorless;2277
2041
+ greateroverequal;2267
2042
+ greatersmall;FE65
2043
+ gscript;0261
2044
+ gstroke;01E5
2045
+ guhiragana;3050
2046
+ guillemotleft;00AB
2047
+ guillemotright;00BB
2048
+ guilsinglleft;2039
2049
+ guilsinglright;203A
2050
+ gukatakana;30B0
2051
+ guramusquare;3318
2052
+ gysquare;33C9
2053
+ h;0068
2054
+ haabkhasiancyrillic;04A9
2055
+ haaltonearabic;06C1
2056
+ habengali;09B9
2057
+ hadescendercyrillic;04B3
2058
+ hadeva;0939
2059
+ hagujarati;0AB9
2060
+ hagurmukhi;0A39
2061
+ haharabic;062D
2062
+ hahfinalarabic;FEA2
2063
+ hahinitialarabic;FEA3
2064
+ hahiragana;306F
2065
+ hahmedialarabic;FEA4
2066
+ haitusquare;332A
2067
+ hakatakana;30CF
2068
+ hakatakanahalfwidth;FF8A
2069
+ halantgurmukhi;0A4D
2070
+ hamzaarabic;0621
2071
+ hamzadammaarabic;0621 064F
2072
+ hamzadammatanarabic;0621 064C
2073
+ hamzafathaarabic;0621 064E
2074
+ hamzafathatanarabic;0621 064B
2075
+ hamzalowarabic;0621
2076
+ hamzalowkasraarabic;0621 0650
2077
+ hamzalowkasratanarabic;0621 064D
2078
+ hamzasukunarabic;0621 0652
2079
+ hangulfiller;3164
2080
+ hardsigncyrillic;044A
2081
+ harpoonleftbarbup;21BC
2082
+ harpoonrightbarbup;21C0
2083
+ hasquare;33CA
2084
+ hatafpatah;05B2
2085
+ hatafpatah16;05B2
2086
+ hatafpatah23;05B2
2087
+ hatafpatah2f;05B2
2088
+ hatafpatahhebrew;05B2
2089
+ hatafpatahnarrowhebrew;05B2
2090
+ hatafpatahquarterhebrew;05B2
2091
+ hatafpatahwidehebrew;05B2
2092
+ hatafqamats;05B3
2093
+ hatafqamats1b;05B3
2094
+ hatafqamats28;05B3
2095
+ hatafqamats34;05B3
2096
+ hatafqamatshebrew;05B3
2097
+ hatafqamatsnarrowhebrew;05B3
2098
+ hatafqamatsquarterhebrew;05B3
2099
+ hatafqamatswidehebrew;05B3
2100
+ hatafsegol;05B1
2101
+ hatafsegol17;05B1
2102
+ hatafsegol24;05B1
2103
+ hatafsegol30;05B1
2104
+ hatafsegolhebrew;05B1
2105
+ hatafsegolnarrowhebrew;05B1
2106
+ hatafsegolquarterhebrew;05B1
2107
+ hatafsegolwidehebrew;05B1
2108
+ hbar;0127
2109
+ hbopomofo;310F
2110
+ hbrevebelow;1E2B
2111
+ hcedilla;1E29
2112
+ hcircle;24D7
2113
+ hcircumflex;0125
2114
+ hdieresis;1E27
2115
+ hdotaccent;1E23
2116
+ hdotbelow;1E25
2117
+ he;05D4
2118
+ heart;2665
2119
+ heartsuitblack;2665
2120
+ heartsuitwhite;2661
2121
+ hedagesh;FB34
2122
+ hedageshhebrew;FB34
2123
+ hehaltonearabic;06C1
2124
+ heharabic;0647
2125
+ hehebrew;05D4
2126
+ hehfinalaltonearabic;FBA7
2127
+ hehfinalalttwoarabic;FEEA
2128
+ hehfinalarabic;FEEA
2129
+ hehhamzaabovefinalarabic;FBA5
2130
+ hehhamzaaboveisolatedarabic;FBA4
2131
+ hehinitialaltonearabic;FBA8
2132
+ hehinitialarabic;FEEB
2133
+ hehiragana;3078
2134
+ hehmedialaltonearabic;FBA9
2135
+ hehmedialarabic;FEEC
2136
+ heiseierasquare;337B
2137
+ hekatakana;30D8
2138
+ hekatakanahalfwidth;FF8D
2139
+ hekutaarusquare;3336
2140
+ henghook;0267
2141
+ herutusquare;3339
2142
+ het;05D7
2143
+ hethebrew;05D7
2144
+ hhook;0266
2145
+ hhooksuperior;02B1
2146
+ hieuhacirclekorean;327B
2147
+ hieuhaparenkorean;321B
2148
+ hieuhcirclekorean;326D
2149
+ hieuhkorean;314E
2150
+ hieuhparenkorean;320D
2151
+ hihiragana;3072
2152
+ hikatakana;30D2
2153
+ hikatakanahalfwidth;FF8B
2154
+ hiriq;05B4
2155
+ hiriq14;05B4
2156
+ hiriq21;05B4
2157
+ hiriq2d;05B4
2158
+ hiriqhebrew;05B4
2159
+ hiriqnarrowhebrew;05B4
2160
+ hiriqquarterhebrew;05B4
2161
+ hiriqwidehebrew;05B4
2162
+ hlinebelow;1E96
2163
+ hmonospace;FF48
2164
+ hoarmenian;0570
2165
+ hohipthai;0E2B
2166
+ hohiragana;307B
2167
+ hokatakana;30DB
2168
+ hokatakanahalfwidth;FF8E
2169
+ holam;05B9
2170
+ holam19;05B9
2171
+ holam26;05B9
2172
+ holam32;05B9
2173
+ holamhebrew;05B9
2174
+ holamnarrowhebrew;05B9
2175
+ holamquarterhebrew;05B9
2176
+ holamwidehebrew;05B9
2177
+ honokhukthai;0E2E
2178
+ hookabovecomb;0309
2179
+ hookcmb;0309
2180
+ hookpalatalizedbelowcmb;0321
2181
+ hookretroflexbelowcmb;0322
2182
+ hoonsquare;3342
2183
+ horicoptic;03E9
2184
+ horizontalbar;2015
2185
+ horncmb;031B
2186
+ hotsprings;2668
2187
+ house;2302
2188
+ hparen;24A3
2189
+ hsuperior;02B0
2190
+ hturned;0265
2191
+ huhiragana;3075
2192
+ huiitosquare;3333
2193
+ hukatakana;30D5
2194
+ hukatakanahalfwidth;FF8C
2195
+ hungarumlaut;02DD
2196
+ hungarumlautcmb;030B
2197
+ hv;0195
2198
+ hyphen;002D
2199
+ hypheninferior;F6E5
2200
+ hyphenmonospace;FF0D
2201
+ hyphensmall;FE63
2202
+ hyphensuperior;F6E6
2203
+ hyphentwo;2010
2204
+ i;0069
2205
+ iacute;00ED
2206
+ iacyrillic;044F
2207
+ ibengali;0987
2208
+ ibopomofo;3127
2209
+ ibreve;012D
2210
+ icaron;01D0
2211
+ icircle;24D8
2212
+ icircumflex;00EE
2213
+ icyrillic;0456
2214
+ idblgrave;0209
2215
+ ideographearthcircle;328F
2216
+ ideographfirecircle;328B
2217
+ ideographicallianceparen;323F
2218
+ ideographiccallparen;323A
2219
+ ideographiccentrecircle;32A5
2220
+ ideographicclose;3006
2221
+ ideographiccomma;3001
2222
+ ideographiccommaleft;FF64
2223
+ ideographiccongratulationparen;3237
2224
+ ideographiccorrectcircle;32A3
2225
+ ideographicearthparen;322F
2226
+ ideographicenterpriseparen;323D
2227
+ ideographicexcellentcircle;329D
2228
+ ideographicfestivalparen;3240
2229
+ ideographicfinancialcircle;3296
2230
+ ideographicfinancialparen;3236
2231
+ ideographicfireparen;322B
2232
+ ideographichaveparen;3232
2233
+ ideographichighcircle;32A4
2234
+ ideographiciterationmark;3005
2235
+ ideographiclaborcircle;3298
2236
+ ideographiclaborparen;3238
2237
+ ideographicleftcircle;32A7
2238
+ ideographiclowcircle;32A6
2239
+ ideographicmedicinecircle;32A9
2240
+ ideographicmetalparen;322E
2241
+ ideographicmoonparen;322A
2242
+ ideographicnameparen;3234
2243
+ ideographicperiod;3002
2244
+ ideographicprintcircle;329E
2245
+ ideographicreachparen;3243
2246
+ ideographicrepresentparen;3239
2247
+ ideographicresourceparen;323E
2248
+ ideographicrightcircle;32A8
2249
+ ideographicsecretcircle;3299
2250
+ ideographicselfparen;3242
2251
+ ideographicsocietyparen;3233
2252
+ ideographicspace;3000
2253
+ ideographicspecialparen;3235
2254
+ ideographicstockparen;3231
2255
+ ideographicstudyparen;323B
2256
+ ideographicsunparen;3230
2257
+ ideographicsuperviseparen;323C
2258
+ ideographicwaterparen;322C
2259
+ ideographicwoodparen;322D
2260
+ ideographiczero;3007
2261
+ ideographmetalcircle;328E
2262
+ ideographmooncircle;328A
2263
+ ideographnamecircle;3294
2264
+ ideographsuncircle;3290
2265
+ ideographwatercircle;328C
2266
+ ideographwoodcircle;328D
2267
+ ideva;0907
2268
+ idieresis;00EF
2269
+ idieresisacute;1E2F
2270
+ idieresiscyrillic;04E5
2271
+ idotbelow;1ECB
2272
+ iebrevecyrillic;04D7
2273
+ iecyrillic;0435
2274
+ ieungacirclekorean;3275
2275
+ ieungaparenkorean;3215
2276
+ ieungcirclekorean;3267
2277
+ ieungkorean;3147
2278
+ ieungparenkorean;3207
2279
+ igrave;00EC
2280
+ igujarati;0A87
2281
+ igurmukhi;0A07
2282
+ ihiragana;3044
2283
+ ihookabove;1EC9
2284
+ iibengali;0988
2285
+ iicyrillic;0438
2286
+ iideva;0908
2287
+ iigujarati;0A88
2288
+ iigurmukhi;0A08
2289
+ iimatragurmukhi;0A40
2290
+ iinvertedbreve;020B
2291
+ iishortcyrillic;0439
2292
+ iivowelsignbengali;09C0
2293
+ iivowelsigndeva;0940
2294
+ iivowelsigngujarati;0AC0
2295
+ ij;0133
2296
+ ikatakana;30A4
2297
+ ikatakanahalfwidth;FF72
2298
+ ikorean;3163
2299
+ ilde;02DC
2300
+ iluyhebrew;05AC
2301
+ imacron;012B
2302
+ imacroncyrillic;04E3
2303
+ imageorapproximatelyequal;2253
2304
+ imatragurmukhi;0A3F
2305
+ imonospace;FF49
2306
+ increment;2206
2307
+ infinity;221E
2308
+ iniarmenian;056B
2309
+ integral;222B
2310
+ integralbottom;2321
2311
+ integralbt;2321
2312
+ integralex;F8F5
2313
+ integraltop;2320
2314
+ integraltp;2320
2315
+ intersection;2229
2316
+ intisquare;3305
2317
+ invbullet;25D8
2318
+ invcircle;25D9
2319
+ invsmileface;263B
2320
+ iocyrillic;0451
2321
+ iogonek;012F
2322
+ iota;03B9
2323
+ iotadieresis;03CA
2324
+ iotadieresistonos;0390
2325
+ iotalatin;0269
2326
+ iotatonos;03AF
2327
+ iparen;24A4
2328
+ irigurmukhi;0A72
2329
+ ismallhiragana;3043
2330
+ ismallkatakana;30A3
2331
+ ismallkatakanahalfwidth;FF68
2332
+ issharbengali;09FA
2333
+ istroke;0268
2334
+ isuperior;F6ED
2335
+ iterationhiragana;309D
2336
+ iterationkatakana;30FD
2337
+ itilde;0129
2338
+ itildebelow;1E2D
2339
+ iubopomofo;3129
2340
+ iucyrillic;044E
2341
+ ivowelsignbengali;09BF
2342
+ ivowelsigndeva;093F
2343
+ ivowelsigngujarati;0ABF
2344
+ izhitsacyrillic;0475
2345
+ izhitsadblgravecyrillic;0477
2346
+ j;006A
2347
+ jaarmenian;0571
2348
+ jabengali;099C
2349
+ jadeva;091C
2350
+ jagujarati;0A9C
2351
+ jagurmukhi;0A1C
2352
+ jbopomofo;3110
2353
+ jcaron;01F0
2354
+ jcircle;24D9
2355
+ jcircumflex;0135
2356
+ jcrossedtail;029D
2357
+ jdotlessstroke;025F
2358
+ jecyrillic;0458
2359
+ jeemarabic;062C
2360
+ jeemfinalarabic;FE9E
2361
+ jeeminitialarabic;FE9F
2362
+ jeemmedialarabic;FEA0
2363
+ jeharabic;0698
2364
+ jehfinalarabic;FB8B
2365
+ jhabengali;099D
2366
+ jhadeva;091D
2367
+ jhagujarati;0A9D
2368
+ jhagurmukhi;0A1D
2369
+ jheharmenian;057B
2370
+ jis;3004
2371
+ jmonospace;FF4A
2372
+ jparen;24A5
2373
+ jsuperior;02B2
2374
+ k;006B
2375
+ kabashkircyrillic;04A1
2376
+ kabengali;0995
2377
+ kacute;1E31
2378
+ kacyrillic;043A
2379
+ kadescendercyrillic;049B
2380
+ kadeva;0915
2381
+ kaf;05DB
2382
+ kafarabic;0643
2383
+ kafdagesh;FB3B
2384
+ kafdageshhebrew;FB3B
2385
+ kaffinalarabic;FEDA
2386
+ kafhebrew;05DB
2387
+ kafinitialarabic;FEDB
2388
+ kafmedialarabic;FEDC
2389
+ kafrafehebrew;FB4D
2390
+ kagujarati;0A95
2391
+ kagurmukhi;0A15
2392
+ kahiragana;304B
2393
+ kahookcyrillic;04C4
2394
+ kakatakana;30AB
2395
+ kakatakanahalfwidth;FF76
2396
+ kappa;03BA
2397
+ kappasymbolgreek;03F0
2398
+ kapyeounmieumkorean;3171
2399
+ kapyeounphieuphkorean;3184
2400
+ kapyeounpieupkorean;3178
2401
+ kapyeounssangpieupkorean;3179
2402
+ karoriisquare;330D
2403
+ kashidaautoarabic;0640
2404
+ kashidaautonosidebearingarabic;0640
2405
+ kasmallkatakana;30F5
2406
+ kasquare;3384
2407
+ kasraarabic;0650
2408
+ kasratanarabic;064D
2409
+ kastrokecyrillic;049F
2410
+ katahiraprolongmarkhalfwidth;FF70
2411
+ kaverticalstrokecyrillic;049D
2412
+ kbopomofo;310E
2413
+ kcalsquare;3389
2414
+ kcaron;01E9
2415
+ kcedilla;0137
2416
+ kcircle;24DA
2417
+ kcommaaccent;0137
2418
+ kdotbelow;1E33
2419
+ keharmenian;0584
2420
+ kehiragana;3051
2421
+ kekatakana;30B1
2422
+ kekatakanahalfwidth;FF79
2423
+ kenarmenian;056F
2424
+ kesmallkatakana;30F6
2425
+ kgreenlandic;0138
2426
+ khabengali;0996
2427
+ khacyrillic;0445
2428
+ khadeva;0916
2429
+ khagujarati;0A96
2430
+ khagurmukhi;0A16
2431
+ khaharabic;062E
2432
+ khahfinalarabic;FEA6
2433
+ khahinitialarabic;FEA7
2434
+ khahmedialarabic;FEA8
2435
+ kheicoptic;03E7
2436
+ khhadeva;0959
2437
+ khhagurmukhi;0A59
2438
+ khieukhacirclekorean;3278
2439
+ khieukhaparenkorean;3218
2440
+ khieukhcirclekorean;326A
2441
+ khieukhkorean;314B
2442
+ khieukhparenkorean;320A
2443
+ khokhaithai;0E02
2444
+ khokhonthai;0E05
2445
+ khokhuatthai;0E03
2446
+ khokhwaithai;0E04
2447
+ khomutthai;0E5B
2448
+ khook;0199
2449
+ khorakhangthai;0E06
2450
+ khzsquare;3391
2451
+ kihiragana;304D
2452
+ kikatakana;30AD
2453
+ kikatakanahalfwidth;FF77
2454
+ kiroguramusquare;3315
2455
+ kiromeetorusquare;3316
2456
+ kirosquare;3314
2457
+ kiyeokacirclekorean;326E
2458
+ kiyeokaparenkorean;320E
2459
+ kiyeokcirclekorean;3260
2460
+ kiyeokkorean;3131
2461
+ kiyeokparenkorean;3200
2462
+ kiyeoksioskorean;3133
2463
+ kjecyrillic;045C
2464
+ klinebelow;1E35
2465
+ klsquare;3398
2466
+ kmcubedsquare;33A6
2467
+ kmonospace;FF4B
2468
+ kmsquaredsquare;33A2
2469
+ kohiragana;3053
2470
+ kohmsquare;33C0
2471
+ kokaithai;0E01
2472
+ kokatakana;30B3
2473
+ kokatakanahalfwidth;FF7A
2474
+ kooposquare;331E
2475
+ koppacyrillic;0481
2476
+ koreanstandardsymbol;327F
2477
+ koroniscmb;0343
2478
+ kparen;24A6
2479
+ kpasquare;33AA
2480
+ ksicyrillic;046F
2481
+ ktsquare;33CF
2482
+ kturned;029E
2483
+ kuhiragana;304F
2484
+ kukatakana;30AF
2485
+ kukatakanahalfwidth;FF78
2486
+ kvsquare;33B8
2487
+ kwsquare;33BE
2488
+ l;006C
2489
+ labengali;09B2
2490
+ lacute;013A
2491
+ ladeva;0932
2492
+ lagujarati;0AB2
2493
+ lagurmukhi;0A32
2494
+ lakkhangyaothai;0E45
2495
+ lamaleffinalarabic;FEFC
2496
+ lamalefhamzaabovefinalarabic;FEF8
2497
+ lamalefhamzaaboveisolatedarabic;FEF7
2498
+ lamalefhamzabelowfinalarabic;FEFA
2499
+ lamalefhamzabelowisolatedarabic;FEF9
2500
+ lamalefisolatedarabic;FEFB
2501
+ lamalefmaddaabovefinalarabic;FEF6
2502
+ lamalefmaddaaboveisolatedarabic;FEF5
2503
+ lamarabic;0644
2504
+ lambda;03BB
2505
+ lambdastroke;019B
2506
+ lamed;05DC
2507
+ lameddagesh;FB3C
2508
+ lameddageshhebrew;FB3C
2509
+ lamedhebrew;05DC
2510
+ lamedholam;05DC 05B9
2511
+ lamedholamdagesh;05DC 05B9 05BC
2512
+ lamedholamdageshhebrew;05DC 05B9 05BC
2513
+ lamedholamhebrew;05DC 05B9
2514
+ lamfinalarabic;FEDE
2515
+ lamhahinitialarabic;FCCA
2516
+ laminitialarabic;FEDF
2517
+ lamjeeminitialarabic;FCC9
2518
+ lamkhahinitialarabic;FCCB
2519
+ lamlamhehisolatedarabic;FDF2
2520
+ lammedialarabic;FEE0
2521
+ lammeemhahinitialarabic;FD88
2522
+ lammeeminitialarabic;FCCC
2523
+ lammeemjeeminitialarabic;FEDF FEE4 FEA0
2524
+ lammeemkhahinitialarabic;FEDF FEE4 FEA8
2525
+ largecircle;25EF
2526
+ lbar;019A
2527
+ lbelt;026C
2528
+ lbopomofo;310C
2529
+ lcaron;013E
2530
+ lcedilla;013C
2531
+ lcircle;24DB
2532
+ lcircumflexbelow;1E3D
2533
+ lcommaaccent;013C
2534
+ ldot;0140
2535
+ ldotaccent;0140
2536
+ ldotbelow;1E37
2537
+ ldotbelowmacron;1E39
2538
+ leftangleabovecmb;031A
2539
+ lefttackbelowcmb;0318
2540
+ less;003C
2541
+ lessequal;2264
2542
+ lessequalorgreater;22DA
2543
+ lessmonospace;FF1C
2544
+ lessorequivalent;2272
2545
+ lessorgreater;2276
2546
+ lessoverequal;2266
2547
+ lesssmall;FE64
2548
+ lezh;026E
2549
+ lfblock;258C
2550
+ lhookretroflex;026D
2551
+ lira;20A4
2552
+ liwnarmenian;056C
2553
+ lj;01C9
2554
+ ljecyrillic;0459
2555
+ ll;F6C0
2556
+ lladeva;0933
2557
+ llagujarati;0AB3
2558
+ llinebelow;1E3B
2559
+ llladeva;0934
2560
+ llvocalicbengali;09E1
2561
+ llvocalicdeva;0961
2562
+ llvocalicvowelsignbengali;09E3
2563
+ llvocalicvowelsigndeva;0963
2564
+ lmiddletilde;026B
2565
+ lmonospace;FF4C
2566
+ lmsquare;33D0
2567
+ lochulathai;0E2C
2568
+ logicaland;2227
2569
+ logicalnot;00AC
2570
+ logicalnotreversed;2310
2571
+ logicalor;2228
2572
+ lolingthai;0E25
2573
+ longs;017F
2574
+ lowlinecenterline;FE4E
2575
+ lowlinecmb;0332
2576
+ lowlinedashed;FE4D
2577
+ lozenge;25CA
2578
+ lparen;24A7
2579
+ lslash;0142
2580
+ lsquare;2113
2581
+ lsuperior;F6EE
2582
+ ltshade;2591
2583
+ luthai;0E26
2584
+ lvocalicbengali;098C
2585
+ lvocalicdeva;090C
2586
+ lvocalicvowelsignbengali;09E2
2587
+ lvocalicvowelsigndeva;0962
2588
+ lxsquare;33D3
2589
+ m;006D
2590
+ mabengali;09AE
2591
+ macron;00AF
2592
+ macronbelowcmb;0331
2593
+ macroncmb;0304
2594
+ macronlowmod;02CD
2595
+ macronmonospace;FFE3
2596
+ macute;1E3F
2597
+ madeva;092E
2598
+ magujarati;0AAE
2599
+ magurmukhi;0A2E
2600
+ mahapakhhebrew;05A4
2601
+ mahapakhlefthebrew;05A4
2602
+ mahiragana;307E
2603
+ maichattawalowleftthai;F895
2604
+ maichattawalowrightthai;F894
2605
+ maichattawathai;0E4B
2606
+ maichattawaupperleftthai;F893
2607
+ maieklowleftthai;F88C
2608
+ maieklowrightthai;F88B
2609
+ maiekthai;0E48
2610
+ maiekupperleftthai;F88A
2611
+ maihanakatleftthai;F884
2612
+ maihanakatthai;0E31
2613
+ maitaikhuleftthai;F889
2614
+ maitaikhuthai;0E47
2615
+ maitholowleftthai;F88F
2616
+ maitholowrightthai;F88E
2617
+ maithothai;0E49
2618
+ maithoupperleftthai;F88D
2619
+ maitrilowleftthai;F892
2620
+ maitrilowrightthai;F891
2621
+ maitrithai;0E4A
2622
+ maitriupperleftthai;F890
2623
+ maiyamokthai;0E46
2624
+ makatakana;30DE
2625
+ makatakanahalfwidth;FF8F
2626
+ male;2642
2627
+ mansyonsquare;3347
2628
+ maqafhebrew;05BE
2629
+ mars;2642
2630
+ masoracirclehebrew;05AF
2631
+ masquare;3383
2632
+ mbopomofo;3107
2633
+ mbsquare;33D4
2634
+ mcircle;24DC
2635
+ mcubedsquare;33A5
2636
+ mdotaccent;1E41
2637
+ mdotbelow;1E43
2638
+ meemarabic;0645
2639
+ meemfinalarabic;FEE2
2640
+ meeminitialarabic;FEE3
2641
+ meemmedialarabic;FEE4
2642
+ meemmeeminitialarabic;FCD1
2643
+ meemmeemisolatedarabic;FC48
2644
+ meetorusquare;334D
2645
+ mehiragana;3081
2646
+ meizierasquare;337E
2647
+ mekatakana;30E1
2648
+ mekatakanahalfwidth;FF92
2649
+ mem;05DE
2650
+ memdagesh;FB3E
2651
+ memdageshhebrew;FB3E
2652
+ memhebrew;05DE
2653
+ menarmenian;0574
2654
+ merkhahebrew;05A5
2655
+ merkhakefulahebrew;05A6
2656
+ merkhakefulalefthebrew;05A6
2657
+ merkhalefthebrew;05A5
2658
+ mhook;0271
2659
+ mhzsquare;3392
2660
+ middledotkatakanahalfwidth;FF65
2661
+ middot;00B7
2662
+ mieumacirclekorean;3272
2663
+ mieumaparenkorean;3212
2664
+ mieumcirclekorean;3264
2665
+ mieumkorean;3141
2666
+ mieumpansioskorean;3170
2667
+ mieumparenkorean;3204
2668
+ mieumpieupkorean;316E
2669
+ mieumsioskorean;316F
2670
+ mihiragana;307F
2671
+ mikatakana;30DF
2672
+ mikatakanahalfwidth;FF90
2673
+ minus;2212
2674
+ minusbelowcmb;0320
2675
+ minuscircle;2296
2676
+ minusmod;02D7
2677
+ minusplus;2213
2678
+ minute;2032
2679
+ miribaarusquare;334A
2680
+ mirisquare;3349
2681
+ mlonglegturned;0270
2682
+ mlsquare;3396
2683
+ mmcubedsquare;33A3
2684
+ mmonospace;FF4D
2685
+ mmsquaredsquare;339F
2686
+ mohiragana;3082
2687
+ mohmsquare;33C1
2688
+ mokatakana;30E2
2689
+ mokatakanahalfwidth;FF93
2690
+ molsquare;33D6
2691
+ momathai;0E21
2692
+ moverssquare;33A7
2693
+ moverssquaredsquare;33A8
2694
+ mparen;24A8
2695
+ mpasquare;33AB
2696
+ mssquare;33B3
2697
+ msuperior;F6EF
2698
+ mturned;026F
2699
+ mu;00B5
2700
+ mu1;00B5
2701
+ muasquare;3382
2702
+ muchgreater;226B
2703
+ muchless;226A
2704
+ mufsquare;338C
2705
+ mugreek;03BC
2706
+ mugsquare;338D
2707
+ muhiragana;3080
2708
+ mukatakana;30E0
2709
+ mukatakanahalfwidth;FF91
2710
+ mulsquare;3395
2711
+ multiply;00D7
2712
+ mumsquare;339B
2713
+ munahhebrew;05A3
2714
+ munahlefthebrew;05A3
2715
+ musicalnote;266A
2716
+ musicalnotedbl;266B
2717
+ musicflatsign;266D
2718
+ musicsharpsign;266F
2719
+ mussquare;33B2
2720
+ muvsquare;33B6
2721
+ muwsquare;33BC
2722
+ mvmegasquare;33B9
2723
+ mvsquare;33B7
2724
+ mwmegasquare;33BF
2725
+ mwsquare;33BD
2726
+ n;006E
2727
+ nabengali;09A8
2728
+ nabla;2207
2729
+ nacute;0144
2730
+ nadeva;0928
2731
+ nagujarati;0AA8
2732
+ nagurmukhi;0A28
2733
+ nahiragana;306A
2734
+ nakatakana;30CA
2735
+ nakatakanahalfwidth;FF85
2736
+ napostrophe;0149
2737
+ nasquare;3381
2738
+ nbopomofo;310B
2739
+ nbspace;00A0
2740
+ ncaron;0148
2741
+ ncedilla;0146
2742
+ ncircle;24DD
2743
+ ncircumflexbelow;1E4B
2744
+ ncommaaccent;0146
2745
+ ndotaccent;1E45
2746
+ ndotbelow;1E47
2747
+ nehiragana;306D
2748
+ nekatakana;30CD
2749
+ nekatakanahalfwidth;FF88
2750
+ newsheqelsign;20AA
2751
+ nfsquare;338B
2752
+ ngabengali;0999
2753
+ ngadeva;0919
2754
+ ngagujarati;0A99
2755
+ ngagurmukhi;0A19
2756
+ ngonguthai;0E07
2757
+ nhiragana;3093
2758
+ nhookleft;0272
2759
+ nhookretroflex;0273
2760
+ nieunacirclekorean;326F
2761
+ nieunaparenkorean;320F
2762
+ nieuncieuckorean;3135
2763
+ nieuncirclekorean;3261
2764
+ nieunhieuhkorean;3136
2765
+ nieunkorean;3134
2766
+ nieunpansioskorean;3168
2767
+ nieunparenkorean;3201
2768
+ nieunsioskorean;3167
2769
+ nieuntikeutkorean;3166
2770
+ nihiragana;306B
2771
+ nikatakana;30CB
2772
+ nikatakanahalfwidth;FF86
2773
+ nikhahitleftthai;F899
2774
+ nikhahitthai;0E4D
2775
+ nine;0039
2776
+ ninearabic;0669
2777
+ ninebengali;09EF
2778
+ ninecircle;2468
2779
+ ninecircleinversesansserif;2792
2780
+ ninedeva;096F
2781
+ ninegujarati;0AEF
2782
+ ninegurmukhi;0A6F
2783
+ ninehackarabic;0669
2784
+ ninehangzhou;3029
2785
+ nineideographicparen;3228
2786
+ nineinferior;2089
2787
+ ninemonospace;FF19
2788
+ nineoldstyle;F739
2789
+ nineparen;247C
2790
+ nineperiod;2490
2791
+ ninepersian;06F9
2792
+ nineroman;2178
2793
+ ninesuperior;2079
2794
+ nineteencircle;2472
2795
+ nineteenparen;2486
2796
+ nineteenperiod;249A
2797
+ ninethai;0E59
2798
+ nj;01CC
2799
+ njecyrillic;045A
2800
+ nkatakana;30F3
2801
+ nkatakanahalfwidth;FF9D
2802
+ nlegrightlong;019E
2803
+ nlinebelow;1E49
2804
+ nmonospace;FF4E
2805
+ nmsquare;339A
2806
+ nnabengali;09A3
2807
+ nnadeva;0923
2808
+ nnagujarati;0AA3
2809
+ nnagurmukhi;0A23
2810
+ nnnadeva;0929
2811
+ nohiragana;306E
2812
+ nokatakana;30CE
2813
+ nokatakanahalfwidth;FF89
2814
+ nonbreakingspace;00A0
2815
+ nonenthai;0E13
2816
+ nonuthai;0E19
2817
+ noonarabic;0646
2818
+ noonfinalarabic;FEE6
2819
+ noonghunnaarabic;06BA
2820
+ noonghunnafinalarabic;FB9F
2821
+ noonhehinitialarabic;FEE7 FEEC
2822
+ nooninitialarabic;FEE7
2823
+ noonjeeminitialarabic;FCD2
2824
+ noonjeemisolatedarabic;FC4B
2825
+ noonmedialarabic;FEE8
2826
+ noonmeeminitialarabic;FCD5
2827
+ noonmeemisolatedarabic;FC4E
2828
+ noonnoonfinalarabic;FC8D
2829
+ notcontains;220C
2830
+ notelement;2209
2831
+ notelementof;2209
2832
+ notequal;2260
2833
+ notgreater;226F
2834
+ notgreaternorequal;2271
2835
+ notgreaternorless;2279
2836
+ notidentical;2262
2837
+ notless;226E
2838
+ notlessnorequal;2270
2839
+ notparallel;2226
2840
+ notprecedes;2280
2841
+ notsubset;2284
2842
+ notsucceeds;2281
2843
+ notsuperset;2285
2844
+ nowarmenian;0576
2845
+ nparen;24A9
2846
+ nssquare;33B1
2847
+ nsuperior;207F
2848
+ ntilde;00F1
2849
+ nu;03BD
2850
+ nuhiragana;306C
2851
+ nukatakana;30CC
2852
+ nukatakanahalfwidth;FF87
2853
+ nuktabengali;09BC
2854
+ nuktadeva;093C
2855
+ nuktagujarati;0ABC
2856
+ nuktagurmukhi;0A3C
2857
+ numbersign;0023
2858
+ numbersignmonospace;FF03
2859
+ numbersignsmall;FE5F
2860
+ numeralsigngreek;0374
2861
+ numeralsignlowergreek;0375
2862
+ numero;2116
2863
+ nun;05E0
2864
+ nundagesh;FB40
2865
+ nundageshhebrew;FB40
2866
+ nunhebrew;05E0
2867
+ nvsquare;33B5
2868
+ nwsquare;33BB
2869
+ nyabengali;099E
2870
+ nyadeva;091E
2871
+ nyagujarati;0A9E
2872
+ nyagurmukhi;0A1E
2873
+ o;006F
2874
+ oacute;00F3
2875
+ oangthai;0E2D
2876
+ obarred;0275
2877
+ obarredcyrillic;04E9
2878
+ obarreddieresiscyrillic;04EB
2879
+ obengali;0993
2880
+ obopomofo;311B
2881
+ obreve;014F
2882
+ ocandradeva;0911
2883
+ ocandragujarati;0A91
2884
+ ocandravowelsigndeva;0949
2885
+ ocandravowelsigngujarati;0AC9
2886
+ ocaron;01D2
2887
+ ocircle;24DE
2888
+ ocircumflex;00F4
2889
+ ocircumflexacute;1ED1
2890
+ ocircumflexdotbelow;1ED9
2891
+ ocircumflexgrave;1ED3
2892
+ ocircumflexhookabove;1ED5
2893
+ ocircumflextilde;1ED7
2894
+ ocyrillic;043E
2895
+ odblacute;0151
2896
+ odblgrave;020D
2897
+ odeva;0913
2898
+ odieresis;00F6
2899
+ odieresiscyrillic;04E7
2900
+ odotbelow;1ECD
2901
+ oe;0153
2902
+ oekorean;315A
2903
+ ogonek;02DB
2904
+ ogonekcmb;0328
2905
+ ograve;00F2
2906
+ ogujarati;0A93
2907
+ oharmenian;0585
2908
+ ohiragana;304A
2909
+ ohookabove;1ECF
2910
+ ohorn;01A1
2911
+ ohornacute;1EDB
2912
+ ohorndotbelow;1EE3
2913
+ ohorngrave;1EDD
2914
+ ohornhookabove;1EDF
2915
+ ohorntilde;1EE1
2916
+ ohungarumlaut;0151
2917
+ oi;01A3
2918
+ oinvertedbreve;020F
2919
+ okatakana;30AA
2920
+ okatakanahalfwidth;FF75
2921
+ okorean;3157
2922
+ olehebrew;05AB
2923
+ omacron;014D
2924
+ omacronacute;1E53
2925
+ omacrongrave;1E51
2926
+ omdeva;0950
2927
+ omega;03C9
2928
+ omega1;03D6
2929
+ omegacyrillic;0461
2930
+ omegalatinclosed;0277
2931
+ omegaroundcyrillic;047B
2932
+ omegatitlocyrillic;047D
2933
+ omegatonos;03CE
2934
+ omgujarati;0AD0
2935
+ omicron;03BF
2936
+ omicrontonos;03CC
2937
+ omonospace;FF4F
2938
+ one;0031
2939
+ onearabic;0661
2940
+ onebengali;09E7
2941
+ onecircle;2460
2942
+ onecircleinversesansserif;278A
2943
+ onedeva;0967
2944
+ onedotenleader;2024
2945
+ oneeighth;215B
2946
+ onefitted;F6DC
2947
+ onegujarati;0AE7
2948
+ onegurmukhi;0A67
2949
+ onehackarabic;0661
2950
+ onehalf;00BD
2951
+ onehangzhou;3021
2952
+ oneideographicparen;3220
2953
+ oneinferior;2081
2954
+ onemonospace;FF11
2955
+ onenumeratorbengali;09F4
2956
+ oneoldstyle;F731
2957
+ oneparen;2474
2958
+ oneperiod;2488
2959
+ onepersian;06F1
2960
+ onequarter;00BC
2961
+ oneroman;2170
2962
+ onesuperior;00B9
2963
+ onethai;0E51
2964
+ onethird;2153
2965
+ oogonek;01EB
2966
+ oogonekmacron;01ED
2967
+ oogurmukhi;0A13
2968
+ oomatragurmukhi;0A4B
2969
+ oopen;0254
2970
+ oparen;24AA
2971
+ openbullet;25E6
2972
+ option;2325
2973
+ ordfeminine;00AA
2974
+ ordmasculine;00BA
2975
+ orthogonal;221F
2976
+ oshortdeva;0912
2977
+ oshortvowelsigndeva;094A
2978
+ oslash;00F8
2979
+ oslashacute;01FF
2980
+ osmallhiragana;3049
2981
+ osmallkatakana;30A9
2982
+ osmallkatakanahalfwidth;FF6B
2983
+ ostrokeacute;01FF
2984
+ osuperior;F6F0
2985
+ otcyrillic;047F
2986
+ otilde;00F5
2987
+ otildeacute;1E4D
2988
+ otildedieresis;1E4F
2989
+ oubopomofo;3121
2990
+ overline;203E
2991
+ overlinecenterline;FE4A
2992
+ overlinecmb;0305
2993
+ overlinedashed;FE49
2994
+ overlinedblwavy;FE4C
2995
+ overlinewavy;FE4B
2996
+ overscore;00AF
2997
+ ovowelsignbengali;09CB
2998
+ ovowelsigndeva;094B
2999
+ ovowelsigngujarati;0ACB
3000
+ p;0070
3001
+ paampssquare;3380
3002
+ paasentosquare;332B
3003
+ pabengali;09AA
3004
+ pacute;1E55
3005
+ padeva;092A
3006
+ pagedown;21DF
3007
+ pageup;21DE
3008
+ pagujarati;0AAA
3009
+ pagurmukhi;0A2A
3010
+ pahiragana;3071
3011
+ paiyannoithai;0E2F
3012
+ pakatakana;30D1
3013
+ palatalizationcyrilliccmb;0484
3014
+ palochkacyrillic;04C0
3015
+ pansioskorean;317F
3016
+ paragraph;00B6
3017
+ parallel;2225
3018
+ parenleft;0028
3019
+ parenleftaltonearabic;FD3E
3020
+ parenleftbt;F8ED
3021
+ parenleftex;F8EC
3022
+ parenleftinferior;208D
3023
+ parenleftmonospace;FF08
3024
+ parenleftsmall;FE59
3025
+ parenleftsuperior;207D
3026
+ parenlefttp;F8EB
3027
+ parenleftvertical;FE35
3028
+ parenright;0029
3029
+ parenrightaltonearabic;FD3F
3030
+ parenrightbt;F8F8
3031
+ parenrightex;F8F7
3032
+ parenrightinferior;208E
3033
+ parenrightmonospace;FF09
3034
+ parenrightsmall;FE5A
3035
+ parenrightsuperior;207E
3036
+ parenrighttp;F8F6
3037
+ parenrightvertical;FE36
3038
+ partialdiff;2202
3039
+ paseqhebrew;05C0
3040
+ pashtahebrew;0599
3041
+ pasquare;33A9
3042
+ patah;05B7
3043
+ patah11;05B7
3044
+ patah1d;05B7
3045
+ patah2a;05B7
3046
+ patahhebrew;05B7
3047
+ patahnarrowhebrew;05B7
3048
+ patahquarterhebrew;05B7
3049
+ patahwidehebrew;05B7
3050
+ pazerhebrew;05A1
3051
+ pbopomofo;3106
3052
+ pcircle;24DF
3053
+ pdotaccent;1E57
3054
+ pe;05E4
3055
+ pecyrillic;043F
3056
+ pedagesh;FB44
3057
+ pedageshhebrew;FB44
3058
+ peezisquare;333B
3059
+ pefinaldageshhebrew;FB43
3060
+ peharabic;067E
3061
+ peharmenian;057A
3062
+ pehebrew;05E4
3063
+ pehfinalarabic;FB57
3064
+ pehinitialarabic;FB58
3065
+ pehiragana;307A
3066
+ pehmedialarabic;FB59
3067
+ pekatakana;30DA
3068
+ pemiddlehookcyrillic;04A7
3069
+ perafehebrew;FB4E
3070
+ percent;0025
3071
+ percentarabic;066A
3072
+ percentmonospace;FF05
3073
+ percentsmall;FE6A
3074
+ period;002E
3075
+ periodarmenian;0589
3076
+ periodcentered;00B7
3077
+ periodhalfwidth;FF61
3078
+ periodinferior;F6E7
3079
+ periodmonospace;FF0E
3080
+ periodsmall;FE52
3081
+ periodsuperior;F6E8
3082
+ perispomenigreekcmb;0342
3083
+ perpendicular;22A5
3084
+ perthousand;2030
3085
+ peseta;20A7
3086
+ pfsquare;338A
3087
+ phabengali;09AB
3088
+ phadeva;092B
3089
+ phagujarati;0AAB
3090
+ phagurmukhi;0A2B
3091
+ phi;03C6
3092
+ phi1;03D5
3093
+ phieuphacirclekorean;327A
3094
+ phieuphaparenkorean;321A
3095
+ phieuphcirclekorean;326C
3096
+ phieuphkorean;314D
3097
+ phieuphparenkorean;320C
3098
+ philatin;0278
3099
+ phinthuthai;0E3A
3100
+ phisymbolgreek;03D5
3101
+ phook;01A5
3102
+ phophanthai;0E1E
3103
+ phophungthai;0E1C
3104
+ phosamphaothai;0E20
3105
+ pi;03C0
3106
+ pieupacirclekorean;3273
3107
+ pieupaparenkorean;3213
3108
+ pieupcieuckorean;3176
3109
+ pieupcirclekorean;3265
3110
+ pieupkiyeokkorean;3172
3111
+ pieupkorean;3142
3112
+ pieupparenkorean;3205
3113
+ pieupsioskiyeokkorean;3174
3114
+ pieupsioskorean;3144
3115
+ pieupsiostikeutkorean;3175
3116
+ pieupthieuthkorean;3177
3117
+ pieuptikeutkorean;3173
3118
+ pihiragana;3074
3119
+ pikatakana;30D4
3120
+ pisymbolgreek;03D6
3121
+ piwrarmenian;0583
3122
+ plus;002B
3123
+ plusbelowcmb;031F
3124
+ pluscircle;2295
3125
+ plusminus;00B1
3126
+ plusmod;02D6
3127
+ plusmonospace;FF0B
3128
+ plussmall;FE62
3129
+ plussuperior;207A
3130
+ pmonospace;FF50
3131
+ pmsquare;33D8
3132
+ pohiragana;307D
3133
+ pointingindexdownwhite;261F
3134
+ pointingindexleftwhite;261C
3135
+ pointingindexrightwhite;261E
3136
+ pointingindexupwhite;261D
3137
+ pokatakana;30DD
3138
+ poplathai;0E1B
3139
+ postalmark;3012
3140
+ postalmarkface;3020
3141
+ pparen;24AB
3142
+ precedes;227A
3143
+ prescription;211E
3144
+ primemod;02B9
3145
+ primereversed;2035
3146
+ product;220F
3147
+ projective;2305
3148
+ prolongedkana;30FC
3149
+ propellor;2318
3150
+ propersubset;2282
3151
+ propersuperset;2283
3152
+ proportion;2237
3153
+ proportional;221D
3154
+ psi;03C8
3155
+ psicyrillic;0471
3156
+ psilipneumatacyrilliccmb;0486
3157
+ pssquare;33B0
3158
+ puhiragana;3077
3159
+ pukatakana;30D7
3160
+ pvsquare;33B4
3161
+ pwsquare;33BA
3162
+ q;0071
3163
+ qadeva;0958
3164
+ qadmahebrew;05A8
3165
+ qafarabic;0642
3166
+ qaffinalarabic;FED6
3167
+ qafinitialarabic;FED7
3168
+ qafmedialarabic;FED8
3169
+ qamats;05B8
3170
+ qamats10;05B8
3171
+ qamats1a;05B8
3172
+ qamats1c;05B8
3173
+ qamats27;05B8
3174
+ qamats29;05B8
3175
+ qamats33;05B8
3176
+ qamatsde;05B8
3177
+ qamatshebrew;05B8
3178
+ qamatsnarrowhebrew;05B8
3179
+ qamatsqatanhebrew;05B8
3180
+ qamatsqatannarrowhebrew;05B8
3181
+ qamatsqatanquarterhebrew;05B8
3182
+ qamatsqatanwidehebrew;05B8
3183
+ qamatsquarterhebrew;05B8
3184
+ qamatswidehebrew;05B8
3185
+ qarneyparahebrew;059F
3186
+ qbopomofo;3111
3187
+ qcircle;24E0
3188
+ qhook;02A0
3189
+ qmonospace;FF51
3190
+ qof;05E7
3191
+ qofdagesh;FB47
3192
+ qofdageshhebrew;FB47
3193
+ qofhatafpatah;05E7 05B2
3194
+ qofhatafpatahhebrew;05E7 05B2
3195
+ qofhatafsegol;05E7 05B1
3196
+ qofhatafsegolhebrew;05E7 05B1
3197
+ qofhebrew;05E7
3198
+ qofhiriq;05E7 05B4
3199
+ qofhiriqhebrew;05E7 05B4
3200
+ qofholam;05E7 05B9
3201
+ qofholamhebrew;05E7 05B9
3202
+ qofpatah;05E7 05B7
3203
+ qofpatahhebrew;05E7 05B7
3204
+ qofqamats;05E7 05B8
3205
+ qofqamatshebrew;05E7 05B8
3206
+ qofqubuts;05E7 05BB
3207
+ qofqubutshebrew;05E7 05BB
3208
+ qofsegol;05E7 05B6
3209
+ qofsegolhebrew;05E7 05B6
3210
+ qofsheva;05E7 05B0
3211
+ qofshevahebrew;05E7 05B0
3212
+ qoftsere;05E7 05B5
3213
+ qoftserehebrew;05E7 05B5
3214
+ qparen;24AC
3215
+ quarternote;2669
3216
+ qubuts;05BB
3217
+ qubuts18;05BB
3218
+ qubuts25;05BB
3219
+ qubuts31;05BB
3220
+ qubutshebrew;05BB
3221
+ qubutsnarrowhebrew;05BB
3222
+ qubutsquarterhebrew;05BB
3223
+ qubutswidehebrew;05BB
3224
+ question;003F
3225
+ questionarabic;061F
3226
+ questionarmenian;055E
3227
+ questiondown;00BF
3228
+ questiondownsmall;F7BF
3229
+ questiongreek;037E
3230
+ questionmonospace;FF1F
3231
+ questionsmall;F73F
3232
+ quotedbl;0022
3233
+ quotedblbase;201E
3234
+ quotedblleft;201C
3235
+ quotedblmonospace;FF02
3236
+ quotedblprime;301E
3237
+ quotedblprimereversed;301D
3238
+ quotedblright;201D
3239
+ quoteleft;2018
3240
+ quoteleftreversed;201B
3241
+ quotereversed;201B
3242
+ quoteright;2019
3243
+ quoterightn;0149
3244
+ quotesinglbase;201A
3245
+ quotesingle;0027
3246
+ quotesinglemonospace;FF07
3247
+ r;0072
3248
+ raarmenian;057C
3249
+ rabengali;09B0
3250
+ racute;0155
3251
+ radeva;0930
3252
+ radical;221A
3253
+ radicalex;F8E5
3254
+ radoverssquare;33AE
3255
+ radoverssquaredsquare;33AF
3256
+ radsquare;33AD
3257
+ rafe;05BF
3258
+ rafehebrew;05BF
3259
+ ragujarati;0AB0
3260
+ ragurmukhi;0A30
3261
+ rahiragana;3089
3262
+ rakatakana;30E9
3263
+ rakatakanahalfwidth;FF97
3264
+ ralowerdiagonalbengali;09F1
3265
+ ramiddlediagonalbengali;09F0
3266
+ ramshorn;0264
3267
+ ratio;2236
3268
+ rbopomofo;3116
3269
+ rcaron;0159
3270
+ rcedilla;0157
3271
+ rcircle;24E1
3272
+ rcommaaccent;0157
3273
+ rdblgrave;0211
3274
+ rdotaccent;1E59
3275
+ rdotbelow;1E5B
3276
+ rdotbelowmacron;1E5D
3277
+ referencemark;203B
3278
+ reflexsubset;2286
3279
+ reflexsuperset;2287
3280
+ registered;00AE
3281
+ registersans;F8E8
3282
+ registerserif;F6DA
3283
+ reharabic;0631
3284
+ reharmenian;0580
3285
+ rehfinalarabic;FEAE
3286
+ rehiragana;308C
3287
+ rehyehaleflamarabic;0631 FEF3 FE8E 0644
3288
+ rekatakana;30EC
3289
+ rekatakanahalfwidth;FF9A
3290
+ resh;05E8
3291
+ reshdageshhebrew;FB48
3292
+ reshhatafpatah;05E8 05B2
3293
+ reshhatafpatahhebrew;05E8 05B2
3294
+ reshhatafsegol;05E8 05B1
3295
+ reshhatafsegolhebrew;05E8 05B1
3296
+ reshhebrew;05E8
3297
+ reshhiriq;05E8 05B4
3298
+ reshhiriqhebrew;05E8 05B4
3299
+ reshholam;05E8 05B9
3300
+ reshholamhebrew;05E8 05B9
3301
+ reshpatah;05E8 05B7
3302
+ reshpatahhebrew;05E8 05B7
3303
+ reshqamats;05E8 05B8
3304
+ reshqamatshebrew;05E8 05B8
3305
+ reshqubuts;05E8 05BB
3306
+ reshqubutshebrew;05E8 05BB
3307
+ reshsegol;05E8 05B6
3308
+ reshsegolhebrew;05E8 05B6
3309
+ reshsheva;05E8 05B0
3310
+ reshshevahebrew;05E8 05B0
3311
+ reshtsere;05E8 05B5
3312
+ reshtserehebrew;05E8 05B5
3313
+ reversedtilde;223D
3314
+ reviahebrew;0597
3315
+ reviamugrashhebrew;0597
3316
+ revlogicalnot;2310
3317
+ rfishhook;027E
3318
+ rfishhookreversed;027F
3319
+ rhabengali;09DD
3320
+ rhadeva;095D
3321
+ rho;03C1
3322
+ rhook;027D
3323
+ rhookturned;027B
3324
+ rhookturnedsuperior;02B5
3325
+ rhosymbolgreek;03F1
3326
+ rhotichookmod;02DE
3327
+ rieulacirclekorean;3271
3328
+ rieulaparenkorean;3211
3329
+ rieulcirclekorean;3263
3330
+ rieulhieuhkorean;3140
3331
+ rieulkiyeokkorean;313A
3332
+ rieulkiyeoksioskorean;3169
3333
+ rieulkorean;3139
3334
+ rieulmieumkorean;313B
3335
+ rieulpansioskorean;316C
3336
+ rieulparenkorean;3203
3337
+ rieulphieuphkorean;313F
3338
+ rieulpieupkorean;313C
3339
+ rieulpieupsioskorean;316B
3340
+ rieulsioskorean;313D
3341
+ rieulthieuthkorean;313E
3342
+ rieultikeutkorean;316A
3343
+ rieulyeorinhieuhkorean;316D
3344
+ rightangle;221F
3345
+ righttackbelowcmb;0319
3346
+ righttriangle;22BF
3347
+ rihiragana;308A
3348
+ rikatakana;30EA
3349
+ rikatakanahalfwidth;FF98
3350
+ ring;02DA
3351
+ ringbelowcmb;0325
3352
+ ringcmb;030A
3353
+ ringhalfleft;02BF
3354
+ ringhalfleftarmenian;0559
3355
+ ringhalfleftbelowcmb;031C
3356
+ ringhalfleftcentered;02D3
3357
+ ringhalfright;02BE
3358
+ ringhalfrightbelowcmb;0339
3359
+ ringhalfrightcentered;02D2
3360
+ rinvertedbreve;0213
3361
+ rittorusquare;3351
3362
+ rlinebelow;1E5F
3363
+ rlongleg;027C
3364
+ rlonglegturned;027A
3365
+ rmonospace;FF52
3366
+ rohiragana;308D
3367
+ rokatakana;30ED
3368
+ rokatakanahalfwidth;FF9B
3369
+ roruathai;0E23
3370
+ rparen;24AD
3371
+ rrabengali;09DC
3372
+ rradeva;0931
3373
+ rragurmukhi;0A5C
3374
+ rreharabic;0691
3375
+ rrehfinalarabic;FB8D
3376
+ rrvocalicbengali;09E0
3377
+ rrvocalicdeva;0960
3378
+ rrvocalicgujarati;0AE0
3379
+ rrvocalicvowelsignbengali;09C4
3380
+ rrvocalicvowelsigndeva;0944
3381
+ rrvocalicvowelsigngujarati;0AC4
3382
+ rsuperior;F6F1
3383
+ rtblock;2590
3384
+ rturned;0279
3385
+ rturnedsuperior;02B4
3386
+ ruhiragana;308B
3387
+ rukatakana;30EB
3388
+ rukatakanahalfwidth;FF99
3389
+ rupeemarkbengali;09F2
3390
+ rupeesignbengali;09F3
3391
+ rupiah;F6DD
3392
+ ruthai;0E24
3393
+ rvocalicbengali;098B
3394
+ rvocalicdeva;090B
3395
+ rvocalicgujarati;0A8B
3396
+ rvocalicvowelsignbengali;09C3
3397
+ rvocalicvowelsigndeva;0943
3398
+ rvocalicvowelsigngujarati;0AC3
3399
+ s;0073
3400
+ sabengali;09B8
3401
+ sacute;015B
3402
+ sacutedotaccent;1E65
3403
+ sadarabic;0635
3404
+ sadeva;0938
3405
+ sadfinalarabic;FEBA
3406
+ sadinitialarabic;FEBB
3407
+ sadmedialarabic;FEBC
3408
+ sagujarati;0AB8
3409
+ sagurmukhi;0A38
3410
+ sahiragana;3055
3411
+ sakatakana;30B5
3412
+ sakatakanahalfwidth;FF7B
3413
+ sallallahoualayhewasallamarabic;FDFA
3414
+ samekh;05E1
3415
+ samekhdagesh;FB41
3416
+ samekhdageshhebrew;FB41
3417
+ samekhhebrew;05E1
3418
+ saraaathai;0E32
3419
+ saraaethai;0E41
3420
+ saraaimaimalaithai;0E44
3421
+ saraaimaimuanthai;0E43
3422
+ saraamthai;0E33
3423
+ saraathai;0E30
3424
+ saraethai;0E40
3425
+ saraiileftthai;F886
3426
+ saraiithai;0E35
3427
+ saraileftthai;F885
3428
+ saraithai;0E34
3429
+ saraothai;0E42
3430
+ saraueeleftthai;F888
3431
+ saraueethai;0E37
3432
+ saraueleftthai;F887
3433
+ sarauethai;0E36
3434
+ sarauthai;0E38
3435
+ sarauuthai;0E39
3436
+ sbopomofo;3119
3437
+ scaron;0161
3438
+ scarondotaccent;1E67
3439
+ scedilla;015F
3440
+ schwa;0259
3441
+ schwacyrillic;04D9
3442
+ schwadieresiscyrillic;04DB
3443
+ schwahook;025A
3444
+ scircle;24E2
3445
+ scircumflex;015D
3446
+ scommaaccent;0219
3447
+ sdotaccent;1E61
3448
+ sdotbelow;1E63
3449
+ sdotbelowdotaccent;1E69
3450
+ seagullbelowcmb;033C
3451
+ second;2033
3452
+ secondtonechinese;02CA
3453
+ section;00A7
3454
+ seenarabic;0633
3455
+ seenfinalarabic;FEB2
3456
+ seeninitialarabic;FEB3
3457
+ seenmedialarabic;FEB4
3458
+ segol;05B6
3459
+ segol13;05B6
3460
+ segol1f;05B6
3461
+ segol2c;05B6
3462
+ segolhebrew;05B6
3463
+ segolnarrowhebrew;05B6
3464
+ segolquarterhebrew;05B6
3465
+ segoltahebrew;0592
3466
+ segolwidehebrew;05B6
3467
+ seharmenian;057D
3468
+ sehiragana;305B
3469
+ sekatakana;30BB
3470
+ sekatakanahalfwidth;FF7E
3471
+ semicolon;003B
3472
+ semicolonarabic;061B
3473
+ semicolonmonospace;FF1B
3474
+ semicolonsmall;FE54
3475
+ semivoicedmarkkana;309C
3476
+ semivoicedmarkkanahalfwidth;FF9F
3477
+ sentisquare;3322
3478
+ sentosquare;3323
3479
+ seven;0037
3480
+ sevenarabic;0667
3481
+ sevenbengali;09ED
3482
+ sevencircle;2466
3483
+ sevencircleinversesansserif;2790
3484
+ sevendeva;096D
3485
+ seveneighths;215E
3486
+ sevengujarati;0AED
3487
+ sevengurmukhi;0A6D
3488
+ sevenhackarabic;0667
3489
+ sevenhangzhou;3027
3490
+ sevenideographicparen;3226
3491
+ seveninferior;2087
3492
+ sevenmonospace;FF17
3493
+ sevenoldstyle;F737
3494
+ sevenparen;247A
3495
+ sevenperiod;248E
3496
+ sevenpersian;06F7
3497
+ sevenroman;2176
3498
+ sevensuperior;2077
3499
+ seventeencircle;2470
3500
+ seventeenparen;2484
3501
+ seventeenperiod;2498
3502
+ seventhai;0E57
3503
+ sfthyphen;00AD
3504
+ shaarmenian;0577
3505
+ shabengali;09B6
3506
+ shacyrillic;0448
3507
+ shaddaarabic;0651
3508
+ shaddadammaarabic;FC61
3509
+ shaddadammatanarabic;FC5E
3510
+ shaddafathaarabic;FC60
3511
+ shaddafathatanarabic;0651 064B
3512
+ shaddakasraarabic;FC62
3513
+ shaddakasratanarabic;FC5F
3514
+ shade;2592
3515
+ shadedark;2593
3516
+ shadelight;2591
3517
+ shademedium;2592
3518
+ shadeva;0936
3519
+ shagujarati;0AB6
3520
+ shagurmukhi;0A36
3521
+ shalshelethebrew;0593
3522
+ shbopomofo;3115
3523
+ shchacyrillic;0449
3524
+ sheenarabic;0634
3525
+ sheenfinalarabic;FEB6
3526
+ sheeninitialarabic;FEB7
3527
+ sheenmedialarabic;FEB8
3528
+ sheicoptic;03E3
3529
+ sheqel;20AA
3530
+ sheqelhebrew;20AA
3531
+ sheva;05B0
3532
+ sheva115;05B0
3533
+ sheva15;05B0
3534
+ sheva22;05B0
3535
+ sheva2e;05B0
3536
+ shevahebrew;05B0
3537
+ shevanarrowhebrew;05B0
3538
+ shevaquarterhebrew;05B0
3539
+ shevawidehebrew;05B0
3540
+ shhacyrillic;04BB
3541
+ shimacoptic;03ED
3542
+ shin;05E9
3543
+ shindagesh;FB49
3544
+ shindageshhebrew;FB49
3545
+ shindageshshindot;FB2C
3546
+ shindageshshindothebrew;FB2C
3547
+ shindageshsindot;FB2D
3548
+ shindageshsindothebrew;FB2D
3549
+ shindothebrew;05C1
3550
+ shinhebrew;05E9
3551
+ shinshindot;FB2A
3552
+ shinshindothebrew;FB2A
3553
+ shinsindot;FB2B
3554
+ shinsindothebrew;FB2B
3555
+ shook;0282
3556
+ sigma;03C3
3557
+ sigma1;03C2
3558
+ sigmafinal;03C2
3559
+ sigmalunatesymbolgreek;03F2
3560
+ sihiragana;3057
3561
+ sikatakana;30B7
3562
+ sikatakanahalfwidth;FF7C
3563
+ siluqhebrew;05BD
3564
+ siluqlefthebrew;05BD
3565
+ similar;223C
3566
+ sindothebrew;05C2
3567
+ siosacirclekorean;3274
3568
+ siosaparenkorean;3214
3569
+ sioscieuckorean;317E
3570
+ sioscirclekorean;3266
3571
+ sioskiyeokkorean;317A
3572
+ sioskorean;3145
3573
+ siosnieunkorean;317B
3574
+ siosparenkorean;3206
3575
+ siospieupkorean;317D
3576
+ siostikeutkorean;317C
3577
+ six;0036
3578
+ sixarabic;0666
3579
+ sixbengali;09EC
3580
+ sixcircle;2465
3581
+ sixcircleinversesansserif;278F
3582
+ sixdeva;096C
3583
+ sixgujarati;0AEC
3584
+ sixgurmukhi;0A6C
3585
+ sixhackarabic;0666
3586
+ sixhangzhou;3026
3587
+ sixideographicparen;3225
3588
+ sixinferior;2086
3589
+ sixmonospace;FF16
3590
+ sixoldstyle;F736
3591
+ sixparen;2479
3592
+ sixperiod;248D
3593
+ sixpersian;06F6
3594
+ sixroman;2175
3595
+ sixsuperior;2076
3596
+ sixteencircle;246F
3597
+ sixteencurrencydenominatorbengali;09F9
3598
+ sixteenparen;2483
3599
+ sixteenperiod;2497
3600
+ sixthai;0E56
3601
+ slash;002F
3602
+ slashmonospace;FF0F
3603
+ slong;017F
3604
+ slongdotaccent;1E9B
3605
+ smileface;263A
3606
+ smonospace;FF53
3607
+ sofpasuqhebrew;05C3
3608
+ softhyphen;00AD
3609
+ softsigncyrillic;044C
3610
+ sohiragana;305D
3611
+ sokatakana;30BD
3612
+ sokatakanahalfwidth;FF7F
3613
+ soliduslongoverlaycmb;0338
3614
+ solidusshortoverlaycmb;0337
3615
+ sorusithai;0E29
3616
+ sosalathai;0E28
3617
+ sosothai;0E0B
3618
+ sosuathai;0E2A
3619
+ space;0020
3620
+ spacehackarabic;0020
3621
+ spade;2660
3622
+ spadesuitblack;2660
3623
+ spadesuitwhite;2664
3624
+ sparen;24AE
3625
+ squarebelowcmb;033B
3626
+ squarecc;33C4
3627
+ squarecm;339D
3628
+ squarediagonalcrosshatchfill;25A9
3629
+ squarehorizontalfill;25A4
3630
+ squarekg;338F
3631
+ squarekm;339E
3632
+ squarekmcapital;33CE
3633
+ squareln;33D1
3634
+ squarelog;33D2
3635
+ squaremg;338E
3636
+ squaremil;33D5
3637
+ squaremm;339C
3638
+ squaremsquared;33A1
3639
+ squareorthogonalcrosshatchfill;25A6
3640
+ squareupperlefttolowerrightfill;25A7
3641
+ squareupperrighttolowerleftfill;25A8
3642
+ squareverticalfill;25A5
3643
+ squarewhitewithsmallblack;25A3
3644
+ srsquare;33DB
3645
+ ssabengali;09B7
3646
+ ssadeva;0937
3647
+ ssagujarati;0AB7
3648
+ ssangcieuckorean;3149
3649
+ ssanghieuhkorean;3185
3650
+ ssangieungkorean;3180
3651
+ ssangkiyeokkorean;3132
3652
+ ssangnieunkorean;3165
3653
+ ssangpieupkorean;3143
3654
+ ssangsioskorean;3146
3655
+ ssangtikeutkorean;3138
3656
+ ssuperior;F6F2
3657
+ sterling;00A3
3658
+ sterlingmonospace;FFE1
3659
+ strokelongoverlaycmb;0336
3660
+ strokeshortoverlaycmb;0335
3661
+ subset;2282
3662
+ subsetnotequal;228A
3663
+ subsetorequal;2286
3664
+ succeeds;227B
3665
+ suchthat;220B
3666
+ suhiragana;3059
3667
+ sukatakana;30B9
3668
+ sukatakanahalfwidth;FF7D
3669
+ sukunarabic;0652
3670
+ summation;2211
3671
+ sun;263C
3672
+ superset;2283
3673
+ supersetnotequal;228B
3674
+ supersetorequal;2287
3675
+ svsquare;33DC
3676
+ syouwaerasquare;337C
3677
+ t;0074
3678
+ tabengali;09A4
3679
+ tackdown;22A4
3680
+ tackleft;22A3
3681
+ tadeva;0924
3682
+ tagujarati;0AA4
3683
+ tagurmukhi;0A24
3684
+ taharabic;0637
3685
+ tahfinalarabic;FEC2
3686
+ tahinitialarabic;FEC3
3687
+ tahiragana;305F
3688
+ tahmedialarabic;FEC4
3689
+ taisyouerasquare;337D
3690
+ takatakana;30BF
3691
+ takatakanahalfwidth;FF80
3692
+ tatweelarabic;0640
3693
+ tau;03C4
3694
+ tav;05EA
3695
+ tavdages;FB4A
3696
+ tavdagesh;FB4A
3697
+ tavdageshhebrew;FB4A
3698
+ tavhebrew;05EA
3699
+ tbar;0167
3700
+ tbopomofo;310A
3701
+ tcaron;0165
3702
+ tccurl;02A8
3703
+ tcedilla;0163
3704
+ tcheharabic;0686
3705
+ tchehfinalarabic;FB7B
3706
+ tchehinitialarabic;FB7C
3707
+ tchehmedialarabic;FB7D
3708
+ tchehmeeminitialarabic;FB7C FEE4
3709
+ tcircle;24E3
3710
+ tcircumflexbelow;1E71
3711
+ tcommaaccent;0163
3712
+ tdieresis;1E97
3713
+ tdotaccent;1E6B
3714
+ tdotbelow;1E6D
3715
+ tecyrillic;0442
3716
+ tedescendercyrillic;04AD
3717
+ teharabic;062A
3718
+ tehfinalarabic;FE96
3719
+ tehhahinitialarabic;FCA2
3720
+ tehhahisolatedarabic;FC0C
3721
+ tehinitialarabic;FE97
3722
+ tehiragana;3066
3723
+ tehjeeminitialarabic;FCA1
3724
+ tehjeemisolatedarabic;FC0B
3725
+ tehmarbutaarabic;0629
3726
+ tehmarbutafinalarabic;FE94
3727
+ tehmedialarabic;FE98
3728
+ tehmeeminitialarabic;FCA4
3729
+ tehmeemisolatedarabic;FC0E
3730
+ tehnoonfinalarabic;FC73
3731
+ tekatakana;30C6
3732
+ tekatakanahalfwidth;FF83
3733
+ telephone;2121
3734
+ telephoneblack;260E
3735
+ telishagedolahebrew;05A0
3736
+ telishaqetanahebrew;05A9
3737
+ tencircle;2469
3738
+ tenideographicparen;3229
3739
+ tenparen;247D
3740
+ tenperiod;2491
3741
+ tenroman;2179
3742
+ tesh;02A7
3743
+ tet;05D8
3744
+ tetdagesh;FB38
3745
+ tetdageshhebrew;FB38
3746
+ tethebrew;05D8
3747
+ tetsecyrillic;04B5
3748
+ tevirhebrew;059B
3749
+ tevirlefthebrew;059B
3750
+ thabengali;09A5
3751
+ thadeva;0925
3752
+ thagujarati;0AA5
3753
+ thagurmukhi;0A25
3754
+ thalarabic;0630
3755
+ thalfinalarabic;FEAC
3756
+ thanthakhatlowleftthai;F898
3757
+ thanthakhatlowrightthai;F897
3758
+ thanthakhatthai;0E4C
3759
+ thanthakhatupperleftthai;F896
3760
+ theharabic;062B
3761
+ thehfinalarabic;FE9A
3762
+ thehinitialarabic;FE9B
3763
+ thehmedialarabic;FE9C
3764
+ thereexists;2203
3765
+ therefore;2234
3766
+ theta;03B8
3767
+ theta1;03D1
3768
+ thetasymbolgreek;03D1
3769
+ thieuthacirclekorean;3279
3770
+ thieuthaparenkorean;3219
3771
+ thieuthcirclekorean;326B
3772
+ thieuthkorean;314C
3773
+ thieuthparenkorean;320B
3774
+ thirteencircle;246C
3775
+ thirteenparen;2480
3776
+ thirteenperiod;2494
3777
+ thonangmonthothai;0E11
3778
+ thook;01AD
3779
+ thophuthaothai;0E12
3780
+ thorn;00FE
3781
+ thothahanthai;0E17
3782
+ thothanthai;0E10
3783
+ thothongthai;0E18
3784
+ thothungthai;0E16
3785
+ thousandcyrillic;0482
3786
+ thousandsseparatorarabic;066C
3787
+ thousandsseparatorpersian;066C
3788
+ three;0033
3789
+ threearabic;0663
3790
+ threebengali;09E9
3791
+ threecircle;2462
3792
+ threecircleinversesansserif;278C
3793
+ threedeva;0969
3794
+ threeeighths;215C
3795
+ threegujarati;0AE9
3796
+ threegurmukhi;0A69
3797
+ threehackarabic;0663
3798
+ threehangzhou;3023
3799
+ threeideographicparen;3222
3800
+ threeinferior;2083
3801
+ threemonospace;FF13
3802
+ threenumeratorbengali;09F6
3803
+ threeoldstyle;F733
3804
+ threeparen;2476
3805
+ threeperiod;248A
3806
+ threepersian;06F3
3807
+ threequarters;00BE
3808
+ threequartersemdash;F6DE
3809
+ threeroman;2172
3810
+ threesuperior;00B3
3811
+ threethai;0E53
3812
+ thzsquare;3394
3813
+ tihiragana;3061
3814
+ tikatakana;30C1
3815
+ tikatakanahalfwidth;FF81
3816
+ tikeutacirclekorean;3270
3817
+ tikeutaparenkorean;3210
3818
+ tikeutcirclekorean;3262
3819
+ tikeutkorean;3137
3820
+ tikeutparenkorean;3202
3821
+ tilde;02DC
3822
+ tildebelowcmb;0330
3823
+ tildecmb;0303
3824
+ tildecomb;0303
3825
+ tildedoublecmb;0360
3826
+ tildeoperator;223C
3827
+ tildeoverlaycmb;0334
3828
+ tildeverticalcmb;033E
3829
+ timescircle;2297
3830
+ tipehahebrew;0596
3831
+ tipehalefthebrew;0596
3832
+ tippigurmukhi;0A70
3833
+ titlocyrilliccmb;0483
3834
+ tiwnarmenian;057F
3835
+ tlinebelow;1E6F
3836
+ tmonospace;FF54
3837
+ toarmenian;0569
3838
+ tohiragana;3068
3839
+ tokatakana;30C8
3840
+ tokatakanahalfwidth;FF84
3841
+ tonebarextrahighmod;02E5
3842
+ tonebarextralowmod;02E9
3843
+ tonebarhighmod;02E6
3844
+ tonebarlowmod;02E8
3845
+ tonebarmidmod;02E7
3846
+ tonefive;01BD
3847
+ tonesix;0185
3848
+ tonetwo;01A8
3849
+ tonos;0384
3850
+ tonsquare;3327
3851
+ topatakthai;0E0F
3852
+ tortoiseshellbracketleft;3014
3853
+ tortoiseshellbracketleftsmall;FE5D
3854
+ tortoiseshellbracketleftvertical;FE39
3855
+ tortoiseshellbracketright;3015
3856
+ tortoiseshellbracketrightsmall;FE5E
3857
+ tortoiseshellbracketrightvertical;FE3A
3858
+ totaothai;0E15
3859
+ tpalatalhook;01AB
3860
+ tparen;24AF
3861
+ trademark;2122
3862
+ trademarksans;F8EA
3863
+ trademarkserif;F6DB
3864
+ tretroflexhook;0288
3865
+ triagdn;25BC
3866
+ triaglf;25C4
3867
+ triagrt;25BA
3868
+ triagup;25B2
3869
+ ts;02A6
3870
+ tsadi;05E6
3871
+ tsadidagesh;FB46
3872
+ tsadidageshhebrew;FB46
3873
+ tsadihebrew;05E6
3874
+ tsecyrillic;0446
3875
+ tsere;05B5
3876
+ tsere12;05B5
3877
+ tsere1e;05B5
3878
+ tsere2b;05B5
3879
+ tserehebrew;05B5
3880
+ tserenarrowhebrew;05B5
3881
+ tserequarterhebrew;05B5
3882
+ tserewidehebrew;05B5
3883
+ tshecyrillic;045B
3884
+ tsuperior;F6F3
3885
+ ttabengali;099F
3886
+ ttadeva;091F
3887
+ ttagujarati;0A9F
3888
+ ttagurmukhi;0A1F
3889
+ tteharabic;0679
3890
+ ttehfinalarabic;FB67
3891
+ ttehinitialarabic;FB68
3892
+ ttehmedialarabic;FB69
3893
+ tthabengali;09A0
3894
+ tthadeva;0920
3895
+ tthagujarati;0AA0
3896
+ tthagurmukhi;0A20
3897
+ tturned;0287
3898
+ tuhiragana;3064
3899
+ tukatakana;30C4
3900
+ tukatakanahalfwidth;FF82
3901
+ tusmallhiragana;3063
3902
+ tusmallkatakana;30C3
3903
+ tusmallkatakanahalfwidth;FF6F
3904
+ twelvecircle;246B
3905
+ twelveparen;247F
3906
+ twelveperiod;2493
3907
+ twelveroman;217B
3908
+ twentycircle;2473
3909
+ twentyhangzhou;5344
3910
+ twentyparen;2487
3911
+ twentyperiod;249B
3912
+ two;0032
3913
+ twoarabic;0662
3914
+ twobengali;09E8
3915
+ twocircle;2461
3916
+ twocircleinversesansserif;278B
3917
+ twodeva;0968
3918
+ twodotenleader;2025
3919
+ twodotleader;2025
3920
+ twodotleadervertical;FE30
3921
+ twogujarati;0AE8
3922
+ twogurmukhi;0A68
3923
+ twohackarabic;0662
3924
+ twohangzhou;3022
3925
+ twoideographicparen;3221
3926
+ twoinferior;2082
3927
+ twomonospace;FF12
3928
+ twonumeratorbengali;09F5
3929
+ twooldstyle;F732
3930
+ twoparen;2475
3931
+ twoperiod;2489
3932
+ twopersian;06F2
3933
+ tworoman;2171
3934
+ twostroke;01BB
3935
+ twosuperior;00B2
3936
+ twothai;0E52
3937
+ twothirds;2154
3938
+ u;0075
3939
+ uacute;00FA
3940
+ ubar;0289
3941
+ ubengali;0989
3942
+ ubopomofo;3128
3943
+ ubreve;016D
3944
+ ucaron;01D4
3945
+ ucircle;24E4
3946
+ ucircumflex;00FB
3947
+ ucircumflexbelow;1E77
3948
+ ucyrillic;0443
3949
+ udattadeva;0951
3950
+ udblacute;0171
3951
+ udblgrave;0215
3952
+ udeva;0909
3953
+ udieresis;00FC
3954
+ udieresisacute;01D8
3955
+ udieresisbelow;1E73
3956
+ udieresiscaron;01DA
3957
+ udieresiscyrillic;04F1
3958
+ udieresisgrave;01DC
3959
+ udieresismacron;01D6
3960
+ udotbelow;1EE5
3961
+ ugrave;00F9
3962
+ ugujarati;0A89
3963
+ ugurmukhi;0A09
3964
+ uhiragana;3046
3965
+ uhookabove;1EE7
3966
+ uhorn;01B0
3967
+ uhornacute;1EE9
3968
+ uhorndotbelow;1EF1
3969
+ uhorngrave;1EEB
3970
+ uhornhookabove;1EED
3971
+ uhorntilde;1EEF
3972
+ uhungarumlaut;0171
3973
+ uhungarumlautcyrillic;04F3
3974
+ uinvertedbreve;0217
3975
+ ukatakana;30A6
3976
+ ukatakanahalfwidth;FF73
3977
+ ukcyrillic;0479
3978
+ ukorean;315C
3979
+ umacron;016B
3980
+ umacroncyrillic;04EF
3981
+ umacrondieresis;1E7B
3982
+ umatragurmukhi;0A41
3983
+ umonospace;FF55
3984
+ underscore;005F
3985
+ underscoredbl;2017
3986
+ underscoremonospace;FF3F
3987
+ underscorevertical;FE33
3988
+ underscorewavy;FE4F
3989
+ union;222A
3990
+ universal;2200
3991
+ uogonek;0173
3992
+ uparen;24B0
3993
+ upblock;2580
3994
+ upperdothebrew;05C4
3995
+ upsilon;03C5
3996
+ upsilondieresis;03CB
3997
+ upsilondieresistonos;03B0
3998
+ upsilonlatin;028A
3999
+ upsilontonos;03CD
4000
+ uptackbelowcmb;031D
4001
+ uptackmod;02D4
4002
+ uragurmukhi;0A73
4003
+ uring;016F
4004
+ ushortcyrillic;045E
4005
+ usmallhiragana;3045
4006
+ usmallkatakana;30A5
4007
+ usmallkatakanahalfwidth;FF69
4008
+ ustraightcyrillic;04AF
4009
+ ustraightstrokecyrillic;04B1
4010
+ utilde;0169
4011
+ utildeacute;1E79
4012
+ utildebelow;1E75
4013
+ uubengali;098A
4014
+ uudeva;090A
4015
+ uugujarati;0A8A
4016
+ uugurmukhi;0A0A
4017
+ uumatragurmukhi;0A42
4018
+ uuvowelsignbengali;09C2
4019
+ uuvowelsigndeva;0942
4020
+ uuvowelsigngujarati;0AC2
4021
+ uvowelsignbengali;09C1
4022
+ uvowelsigndeva;0941
4023
+ uvowelsigngujarati;0AC1
4024
+ v;0076
4025
+ vadeva;0935
4026
+ vagujarati;0AB5
4027
+ vagurmukhi;0A35
4028
+ vakatakana;30F7
4029
+ vav;05D5
4030
+ vavdagesh;FB35
4031
+ vavdagesh65;FB35
4032
+ vavdageshhebrew;FB35
4033
+ vavhebrew;05D5
4034
+ vavholam;FB4B
4035
+ vavholamhebrew;FB4B
4036
+ vavvavhebrew;05F0
4037
+ vavyodhebrew;05F1
4038
+ vcircle;24E5
4039
+ vdotbelow;1E7F
4040
+ vecyrillic;0432
4041
+ veharabic;06A4
4042
+ vehfinalarabic;FB6B
4043
+ vehinitialarabic;FB6C
4044
+ vehmedialarabic;FB6D
4045
+ vekatakana;30F9
4046
+ venus;2640
4047
+ verticalbar;007C
4048
+ verticallineabovecmb;030D
4049
+ verticallinebelowcmb;0329
4050
+ verticallinelowmod;02CC
4051
+ verticallinemod;02C8
4052
+ vewarmenian;057E
4053
+ vhook;028B
4054
+ vikatakana;30F8
4055
+ viramabengali;09CD
4056
+ viramadeva;094D
4057
+ viramagujarati;0ACD
4058
+ visargabengali;0983
4059
+ visargadeva;0903
4060
+ visargagujarati;0A83
4061
+ vmonospace;FF56
4062
+ voarmenian;0578
4063
+ voicediterationhiragana;309E
4064
+ voicediterationkatakana;30FE
4065
+ voicedmarkkana;309B
4066
+ voicedmarkkanahalfwidth;FF9E
4067
+ vokatakana;30FA
4068
+ vparen;24B1
4069
+ vtilde;1E7D
4070
+ vturned;028C
4071
+ vuhiragana;3094
4072
+ vukatakana;30F4
4073
+ w;0077
4074
+ wacute;1E83
4075
+ waekorean;3159
4076
+ wahiragana;308F
4077
+ wakatakana;30EF
4078
+ wakatakanahalfwidth;FF9C
4079
+ wakorean;3158
4080
+ wasmallhiragana;308E
4081
+ wasmallkatakana;30EE
4082
+ wattosquare;3357
4083
+ wavedash;301C
4084
+ wavyunderscorevertical;FE34
4085
+ wawarabic;0648
4086
+ wawfinalarabic;FEEE
4087
+ wawhamzaabovearabic;0624
4088
+ wawhamzaabovefinalarabic;FE86
4089
+ wbsquare;33DD
4090
+ wcircle;24E6
4091
+ wcircumflex;0175
4092
+ wdieresis;1E85
4093
+ wdotaccent;1E87
4094
+ wdotbelow;1E89
4095
+ wehiragana;3091
4096
+ weierstrass;2118
4097
+ wekatakana;30F1
4098
+ wekorean;315E
4099
+ weokorean;315D
4100
+ wgrave;1E81
4101
+ whitebullet;25E6
4102
+ whitecircle;25CB
4103
+ whitecircleinverse;25D9
4104
+ whitecornerbracketleft;300E
4105
+ whitecornerbracketleftvertical;FE43
4106
+ whitecornerbracketright;300F
4107
+ whitecornerbracketrightvertical;FE44
4108
+ whitediamond;25C7
4109
+ whitediamondcontainingblacksmalldiamond;25C8
4110
+ whitedownpointingsmalltriangle;25BF
4111
+ whitedownpointingtriangle;25BD
4112
+ whiteleftpointingsmalltriangle;25C3
4113
+ whiteleftpointingtriangle;25C1
4114
+ whitelenticularbracketleft;3016
4115
+ whitelenticularbracketright;3017
4116
+ whiterightpointingsmalltriangle;25B9
4117
+ whiterightpointingtriangle;25B7
4118
+ whitesmallsquare;25AB
4119
+ whitesmilingface;263A
4120
+ whitesquare;25A1
4121
+ whitestar;2606
4122
+ whitetelephone;260F
4123
+ whitetortoiseshellbracketleft;3018
4124
+ whitetortoiseshellbracketright;3019
4125
+ whiteuppointingsmalltriangle;25B5
4126
+ whiteuppointingtriangle;25B3
4127
+ wihiragana;3090
4128
+ wikatakana;30F0
4129
+ wikorean;315F
4130
+ wmonospace;FF57
4131
+ wohiragana;3092
4132
+ wokatakana;30F2
4133
+ wokatakanahalfwidth;FF66
4134
+ won;20A9
4135
+ wonmonospace;FFE6
4136
+ wowaenthai;0E27
4137
+ wparen;24B2
4138
+ wring;1E98
4139
+ wsuperior;02B7
4140
+ wturned;028D
4141
+ wynn;01BF
4142
+ x;0078
4143
+ xabovecmb;033D
4144
+ xbopomofo;3112
4145
+ xcircle;24E7
4146
+ xdieresis;1E8D
4147
+ xdotaccent;1E8B
4148
+ xeharmenian;056D
4149
+ xi;03BE
4150
+ xmonospace;FF58
4151
+ xparen;24B3
4152
+ xsuperior;02E3
4153
+ y;0079
4154
+ yaadosquare;334E
4155
+ yabengali;09AF
4156
+ yacute;00FD
4157
+ yadeva;092F
4158
+ yaekorean;3152
4159
+ yagujarati;0AAF
4160
+ yagurmukhi;0A2F
4161
+ yahiragana;3084
4162
+ yakatakana;30E4
4163
+ yakatakanahalfwidth;FF94
4164
+ yakorean;3151
4165
+ yamakkanthai;0E4E
4166
+ yasmallhiragana;3083
4167
+ yasmallkatakana;30E3
4168
+ yasmallkatakanahalfwidth;FF6C
4169
+ yatcyrillic;0463
4170
+ ycircle;24E8
4171
+ ycircumflex;0177
4172
+ ydieresis;00FF
4173
+ ydotaccent;1E8F
4174
+ ydotbelow;1EF5
4175
+ yeharabic;064A
4176
+ yehbarreearabic;06D2
4177
+ yehbarreefinalarabic;FBAF
4178
+ yehfinalarabic;FEF2
4179
+ yehhamzaabovearabic;0626
4180
+ yehhamzaabovefinalarabic;FE8A
4181
+ yehhamzaaboveinitialarabic;FE8B
4182
+ yehhamzaabovemedialarabic;FE8C
4183
+ yehinitialarabic;FEF3
4184
+ yehmedialarabic;FEF4
4185
+ yehmeeminitialarabic;FCDD
4186
+ yehmeemisolatedarabic;FC58
4187
+ yehnoonfinalarabic;FC94
4188
+ yehthreedotsbelowarabic;06D1
4189
+ yekorean;3156
4190
+ yen;00A5
4191
+ yenmonospace;FFE5
4192
+ yeokorean;3155
4193
+ yeorinhieuhkorean;3186
4194
+ yerahbenyomohebrew;05AA
4195
+ yerahbenyomolefthebrew;05AA
4196
+ yericyrillic;044B
4197
+ yerudieresiscyrillic;04F9
4198
+ yesieungkorean;3181
4199
+ yesieungpansioskorean;3183
4200
+ yesieungsioskorean;3182
4201
+ yetivhebrew;059A
4202
+ ygrave;1EF3
4203
+ yhook;01B4
4204
+ yhookabove;1EF7
4205
+ yiarmenian;0575
4206
+ yicyrillic;0457
4207
+ yikorean;3162
4208
+ yinyang;262F
4209
+ yiwnarmenian;0582
4210
+ ymonospace;FF59
4211
+ yod;05D9
4212
+ yoddagesh;FB39
4213
+ yoddageshhebrew;FB39
4214
+ yodhebrew;05D9
4215
+ yodyodhebrew;05F2
4216
+ yodyodpatahhebrew;FB1F
4217
+ yohiragana;3088
4218
+ yoikorean;3189
4219
+ yokatakana;30E8
4220
+ yokatakanahalfwidth;FF96
4221
+ yokorean;315B
4222
+ yosmallhiragana;3087
4223
+ yosmallkatakana;30E7
4224
+ yosmallkatakanahalfwidth;FF6E
4225
+ yotgreek;03F3
4226
+ yoyaekorean;3188
4227
+ yoyakorean;3187
4228
+ yoyakthai;0E22
4229
+ yoyingthai;0E0D
4230
+ yparen;24B4
4231
+ ypogegrammeni;037A
4232
+ ypogegrammenigreekcmb;0345
4233
+ yr;01A6
4234
+ yring;1E99
4235
+ ysuperior;02B8
4236
+ ytilde;1EF9
4237
+ yturned;028E
4238
+ yuhiragana;3086
4239
+ yuikorean;318C
4240
+ yukatakana;30E6
4241
+ yukatakanahalfwidth;FF95
4242
+ yukorean;3160
4243
+ yusbigcyrillic;046B
4244
+ yusbigiotifiedcyrillic;046D
4245
+ yuslittlecyrillic;0467
4246
+ yuslittleiotifiedcyrillic;0469
4247
+ yusmallhiragana;3085
4248
+ yusmallkatakana;30E5
4249
+ yusmallkatakanahalfwidth;FF6D
4250
+ yuyekorean;318B
4251
+ yuyeokorean;318A
4252
+ yyabengali;09DF
4253
+ yyadeva;095F
4254
+ z;007A
4255
+ zaarmenian;0566
4256
+ zacute;017A
4257
+ zadeva;095B
4258
+ zagurmukhi;0A5B
4259
+ zaharabic;0638
4260
+ zahfinalarabic;FEC6
4261
+ zahinitialarabic;FEC7
4262
+ zahiragana;3056
4263
+ zahmedialarabic;FEC8
4264
+ zainarabic;0632
4265
+ zainfinalarabic;FEB0
4266
+ zakatakana;30B6
4267
+ zaqefgadolhebrew;0595
4268
+ zaqefqatanhebrew;0594
4269
+ zarqahebrew;0598
4270
+ zayin;05D6
4271
+ zayindagesh;FB36
4272
+ zayindageshhebrew;FB36
4273
+ zayinhebrew;05D6
4274
+ zbopomofo;3117
4275
+ zcaron;017E
4276
+ zcircle;24E9
4277
+ zcircumflex;1E91
4278
+ zcurl;0291
4279
+ zdot;017C
4280
+ zdotaccent;017C
4281
+ zdotbelow;1E93
4282
+ zecyrillic;0437
4283
+ zedescendercyrillic;0499
4284
+ zedieresiscyrillic;04DF
4285
+ zehiragana;305C
4286
+ zekatakana;30BC
4287
+ zero;0030
4288
+ zeroarabic;0660
4289
+ zerobengali;09E6
4290
+ zerodeva;0966
4291
+ zerogujarati;0AE6
4292
+ zerogurmukhi;0A66
4293
+ zerohackarabic;0660
4294
+ zeroinferior;2080
4295
+ zeromonospace;FF10
4296
+ zerooldstyle;F730
4297
+ zeropersian;06F0
4298
+ zerosuperior;2070
4299
+ zerothai;0E50
4300
+ zerowidthjoiner;FEFF
4301
+ zerowidthnonjoiner;200C
4302
+ zerowidthspace;200B
4303
+ zeta;03B6
4304
+ zhbopomofo;3113
4305
+ zhearmenian;056A
4306
+ zhebrevecyrillic;04C2
4307
+ zhecyrillic;0436
4308
+ zhedescendercyrillic;0497
4309
+ zhedieresiscyrillic;04DD
4310
+ zihiragana;3058
4311
+ zikatakana;30B8
4312
+ zinorhebrew;05AE
4313
+ zlinebelow;1E95
4314
+ zmonospace;FF5A
4315
+ zohiragana;305E
4316
+ zokatakana;30BE
4317
+ zparen;24B5
4318
+ zretroflexhook;0290
4319
+ zstroke;01B6
4320
+ zuhiragana;305A
4321
+ zukatakana;30BA
4322
+ #--end