Coverage for /pythoncovmergedfiles/medio/medio/src/pdfminer.six/pdfminer/glyphlist.py: 11%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

18 statements  

1"""Mappings from Adobe glyph names to Unicode characters. 

2 

3In some CMap tables, Adobe glyph names are used for specifying 

4Unicode characters instead of using decimal/hex character code. 

5 

6The following data was taken by 

7 

8 $ wget https://partners.adobe.com/public/developer/en/opentype/glyphlist.txt 

9 

10```python 

11from pdfminer.glyphlist import convert_glyphlist 

12 

13convert_glyphlist("glyphlist.txt") 

14""" 

15 

16# ################################################################################### 

17# Copyright (c) 1997,1998,2002,2007 Adobe Systems Incorporated 

18# 

19# Permission is hereby granted, free of charge, to any person obtaining a 

20# copy of this documentation file to use, copy, publish, distribute, 

21# sublicense, and/or sell copies of the documentation, and to permit 

22# others to do the same, provided that: 

23# - No modification, editing or other alteration of this document is 

24# allowed; and 

25# - The above copyright notice and this permission notice shall be 

26# included in all copies of the documentation. 

27# 

28# Permission is hereby granted, free of charge, to any person obtaining a 

29# copy of this documentation file, to create their own derivative works 

30# from the content of this document to use, copy, publish, distribute, 

31# sublicense, and/or sell the derivative works, and to permit others to do 

32# the same, provided that the derived work is not represented as being a 

33# copy or version of this document. 

34# 

35# Adobe shall not be liable to any party for any loss of revenue or profit 

36# or for indirect, incidental, special, consequential, or other similar 

37# damages, whether based on tort (including without limitation negligence 

38# or strict liability), contract or other legal or equitable grounds even 

39# if Adobe has been advised or had reason to know of the possibility of 

40# such damages. The Adobe materials are provided on an "AS IS" basis. 

41# Adobe specifically disclaims all express, statutory, or implied 

42# warranties relating to the Adobe materials, including but not limited to 

43# those concerning merchantability or fitness for a particular purpose or 

44# non-infringement of any third party rights regarding the Adobe 

45# materials. 

46# ################################################################################### 

47# Name: Adobe Glyph List 

48# Table version: 2.0 

49# Date: September 20, 2002 

50# 

51# See http://partners.adobe.com/asn/developer/typeforum/unicodegn.html 

52# 

53# Format: Semicolon-delimited fields: 

54# (1) glyph name 

55# (2) Unicode scalar value 

56 

57 

58def convert_glyphlist(path: str) -> None: 

59 """Convert a glyph list into a python representation. 

60 

61 See output below. 

62 """ 

63 state = 0 

64 with open(path) as fileinput: 

65 for line in fileinput.readlines(): 

66 line = line.strip() 

67 if not line or line.startswith("#"): 

68 if state == 1: 

69 state = 2 

70 print("}\n") 

71 print(line) 

72 continue 

73 if state == 0: 

74 print("\nglyphname2unicode = {") 

75 state = 1 

76 (name, x) = line.split(";") 

77 codes = x.split(" ") 

78 print( 

79 " {!r}: u'{}',".format(name, "".join("\\u%s" % code for code in codes)), 

80 ) 

81 

82 

83glyphname2unicode = { 

84 "A": "\u0041", 

85 "AE": "\u00c6", 

86 "AEacute": "\u01fc", 

87 "AEmacron": "\u01e2", 

88 "AEsmall": "\uf7e6", 

89 "Aacute": "\u00c1", 

90 "Aacutesmall": "\uf7e1", 

91 "Abreve": "\u0102", 

92 "Abreveacute": "\u1eae", 

93 "Abrevecyrillic": "\u04d0", 

94 "Abrevedotbelow": "\u1eb6", 

95 "Abrevegrave": "\u1eb0", 

96 "Abrevehookabove": "\u1eb2", 

97 "Abrevetilde": "\u1eb4", 

98 "Acaron": "\u01cd", 

99 "Acircle": "\u24b6", 

100 "Acircumflex": "\u00c2", 

101 "Acircumflexacute": "\u1ea4", 

102 "Acircumflexdotbelow": "\u1eac", 

103 "Acircumflexgrave": "\u1ea6", 

104 "Acircumflexhookabove": "\u1ea8", 

105 "Acircumflexsmall": "\uf7e2", 

106 "Acircumflextilde": "\u1eaa", 

107 "Acute": "\uf6c9", 

108 "Acutesmall": "\uf7b4", 

109 "Acyrillic": "\u0410", 

110 "Adblgrave": "\u0200", 

111 "Adieresis": "\u00c4", 

112 "Adieresiscyrillic": "\u04d2", 

113 "Adieresismacron": "\u01de", 

114 "Adieresissmall": "\uf7e4", 

115 "Adotbelow": "\u1ea0", 

116 "Adotmacron": "\u01e0", 

117 "Agrave": "\u00c0", 

118 "Agravesmall": "\uf7e0", 

119 "Ahookabove": "\u1ea2", 

120 "Aiecyrillic": "\u04d4", 

121 "Ainvertedbreve": "\u0202", 

122 "Alpha": "\u0391", 

123 "Alphatonos": "\u0386", 

124 "Amacron": "\u0100", 

125 "Amonospace": "\uff21", 

126 "Aogonek": "\u0104", 

127 "Aring": "\u00c5", 

128 "Aringacute": "\u01fa", 

129 "Aringbelow": "\u1e00", 

130 "Aringsmall": "\uf7e5", 

131 "Asmall": "\uf761", 

132 "Atilde": "\u00c3", 

133 "Atildesmall": "\uf7e3", 

134 "Aybarmenian": "\u0531", 

135 "B": "\u0042", 

136 "Bcircle": "\u24b7", 

137 "Bdotaccent": "\u1e02", 

138 "Bdotbelow": "\u1e04", 

139 "Becyrillic": "\u0411", 

140 "Benarmenian": "\u0532", 

141 "Beta": "\u0392", 

142 "Bhook": "\u0181", 

143 "Blinebelow": "\u1e06", 

144 "Bmonospace": "\uff22", 

145 "Brevesmall": "\uf6f4", 

146 "Bsmall": "\uf762", 

147 "Btopbar": "\u0182", 

148 "C": "\u0043", 

149 "Caarmenian": "\u053e", 

150 "Cacute": "\u0106", 

151 "Caron": "\uf6ca", 

152 "Caronsmall": "\uf6f5", 

153 "Ccaron": "\u010c", 

154 "Ccedilla": "\u00c7", 

155 "Ccedillaacute": "\u1e08", 

156 "Ccedillasmall": "\uf7e7", 

157 "Ccircle": "\u24b8", 

158 "Ccircumflex": "\u0108", 

159 "Cdot": "\u010a", 

160 "Cdotaccent": "\u010a", 

161 "Cedillasmall": "\uf7b8", 

162 "Chaarmenian": "\u0549", 

163 "Cheabkhasiancyrillic": "\u04bc", 

164 "Checyrillic": "\u0427", 

165 "Chedescenderabkhasiancyrillic": "\u04be", 

166 "Chedescendercyrillic": "\u04b6", 

167 "Chedieresiscyrillic": "\u04f4", 

168 "Cheharmenian": "\u0543", 

169 "Chekhakassiancyrillic": "\u04cb", 

170 "Cheverticalstrokecyrillic": "\u04b8", 

171 "Chi": "\u03a7", 

172 "Chook": "\u0187", 

173 "Circumflexsmall": "\uf6f6", 

174 "Cmonospace": "\uff23", 

175 "Coarmenian": "\u0551", 

176 "Csmall": "\uf763", 

177 "D": "\u0044", 

178 "DZ": "\u01f1", 

179 "DZcaron": "\u01c4", 

180 "Daarmenian": "\u0534", 

181 "Dafrican": "\u0189", 

182 "Dcaron": "\u010e", 

183 "Dcedilla": "\u1e10", 

184 "Dcircle": "\u24b9", 

185 "Dcircumflexbelow": "\u1e12", 

186 "Dcroat": "\u0110", 

187 "Ddotaccent": "\u1e0a", 

188 "Ddotbelow": "\u1e0c", 

189 "Decyrillic": "\u0414", 

190 "Deicoptic": "\u03ee", 

191 "Delta": "\u2206", 

192 "Deltagreek": "\u0394", 

193 "Dhook": "\u018a", 

194 "Dieresis": "\uf6cb", 

195 "DieresisAcute": "\uf6cc", 

196 "DieresisGrave": "\uf6cd", 

197 "Dieresissmall": "\uf7a8", 

198 "Digammagreek": "\u03dc", 

199 "Djecyrillic": "\u0402", 

200 "Dlinebelow": "\u1e0e", 

201 "Dmonospace": "\uff24", 

202 "Dotaccentsmall": "\uf6f7", 

203 "Dslash": "\u0110", 

204 "Dsmall": "\uf764", 

205 "Dtopbar": "\u018b", 

206 "Dz": "\u01f2", 

207 "Dzcaron": "\u01c5", 

208 "Dzeabkhasiancyrillic": "\u04e0", 

209 "Dzecyrillic": "\u0405", 

210 "Dzhecyrillic": "\u040f", 

211 "E": "\u0045", 

212 "Eacute": "\u00c9", 

213 "Eacutesmall": "\uf7e9", 

214 "Ebreve": "\u0114", 

215 "Ecaron": "\u011a", 

216 "Ecedillabreve": "\u1e1c", 

217 "Echarmenian": "\u0535", 

218 "Ecircle": "\u24ba", 

219 "Ecircumflex": "\u00ca", 

220 "Ecircumflexacute": "\u1ebe", 

221 "Ecircumflexbelow": "\u1e18", 

222 "Ecircumflexdotbelow": "\u1ec6", 

223 "Ecircumflexgrave": "\u1ec0", 

224 "Ecircumflexhookabove": "\u1ec2", 

225 "Ecircumflexsmall": "\uf7ea", 

226 "Ecircumflextilde": "\u1ec4", 

227 "Ecyrillic": "\u0404", 

228 "Edblgrave": "\u0204", 

229 "Edieresis": "\u00cb", 

230 "Edieresissmall": "\uf7eb", 

231 "Edot": "\u0116", 

232 "Edotaccent": "\u0116", 

233 "Edotbelow": "\u1eb8", 

234 "Efcyrillic": "\u0424", 

235 "Egrave": "\u00c8", 

236 "Egravesmall": "\uf7e8", 

237 "Eharmenian": "\u0537", 

238 "Ehookabove": "\u1eba", 

239 "Eightroman": "\u2167", 

240 "Einvertedbreve": "\u0206", 

241 "Eiotifiedcyrillic": "\u0464", 

242 "Elcyrillic": "\u041b", 

243 "Elevenroman": "\u216a", 

244 "Emacron": "\u0112", 

245 "Emacronacute": "\u1e16", 

246 "Emacrongrave": "\u1e14", 

247 "Emcyrillic": "\u041c", 

248 "Emonospace": "\uff25", 

249 "Encyrillic": "\u041d", 

250 "Endescendercyrillic": "\u04a2", 

251 "Eng": "\u014a", 

252 "Enghecyrillic": "\u04a4", 

253 "Enhookcyrillic": "\u04c7", 

254 "Eogonek": "\u0118", 

255 "Eopen": "\u0190", 

256 "Epsilon": "\u0395", 

257 "Epsilontonos": "\u0388", 

258 "Ercyrillic": "\u0420", 

259 "Ereversed": "\u018e", 

260 "Ereversedcyrillic": "\u042d", 

261 "Escyrillic": "\u0421", 

262 "Esdescendercyrillic": "\u04aa", 

263 "Esh": "\u01a9", 

264 "Esmall": "\uf765", 

265 "Eta": "\u0397", 

266 "Etarmenian": "\u0538", 

267 "Etatonos": "\u0389", 

268 "Eth": "\u00d0", 

269 "Ethsmall": "\uf7f0", 

270 "Etilde": "\u1ebc", 

271 "Etildebelow": "\u1e1a", 

272 "Euro": "\u20ac", 

273 "Ezh": "\u01b7", 

274 "Ezhcaron": "\u01ee", 

275 "Ezhreversed": "\u01b8", 

276 "F": "\u0046", 

277 "Fcircle": "\u24bb", 

278 "Fdotaccent": "\u1e1e", 

279 "Feharmenian": "\u0556", 

280 "Feicoptic": "\u03e4", 

281 "Fhook": "\u0191", 

282 "Fitacyrillic": "\u0472", 

283 "Fiveroman": "\u2164", 

284 "Fmonospace": "\uff26", 

285 "Fourroman": "\u2163", 

286 "Fsmall": "\uf766", 

287 "G": "\u0047", 

288 "GBsquare": "\u3387", 

289 "Gacute": "\u01f4", 

290 "Gamma": "\u0393", 

291 "Gammaafrican": "\u0194", 

292 "Gangiacoptic": "\u03ea", 

293 "Gbreve": "\u011e", 

294 "Gcaron": "\u01e6", 

295 "Gcedilla": "\u0122", 

296 "Gcircle": "\u24bc", 

297 "Gcircumflex": "\u011c", 

298 "Gcommaaccent": "\u0122", 

299 "Gdot": "\u0120", 

300 "Gdotaccent": "\u0120", 

301 "Gecyrillic": "\u0413", 

302 "Ghadarmenian": "\u0542", 

303 "Ghemiddlehookcyrillic": "\u0494", 

304 "Ghestrokecyrillic": "\u0492", 

305 "Gheupturncyrillic": "\u0490", 

306 "Ghook": "\u0193", 

307 "Gimarmenian": "\u0533", 

308 "Gjecyrillic": "\u0403", 

309 "Gmacron": "\u1e20", 

310 "Gmonospace": "\uff27", 

311 "Grave": "\uf6ce", 

312 "Gravesmall": "\uf760", 

313 "Gsmall": "\uf767", 

314 "Gsmallhook": "\u029b", 

315 "Gstroke": "\u01e4", 

316 "H": "\u0048", 

317 "H18533": "\u25cf", 

318 "H18543": "\u25aa", 

319 "H18551": "\u25ab", 

320 "H22073": "\u25a1", 

321 "HPsquare": "\u33cb", 

322 "Haabkhasiancyrillic": "\u04a8", 

323 "Hadescendercyrillic": "\u04b2", 

324 "Hardsigncyrillic": "\u042a", 

325 "Hbar": "\u0126", 

326 "Hbrevebelow": "\u1e2a", 

327 "Hcedilla": "\u1e28", 

328 "Hcircle": "\u24bd", 

329 "Hcircumflex": "\u0124", 

330 "Hdieresis": "\u1e26", 

331 "Hdotaccent": "\u1e22", 

332 "Hdotbelow": "\u1e24", 

333 "Hmonospace": "\uff28", 

334 "Hoarmenian": "\u0540", 

335 "Horicoptic": "\u03e8", 

336 "Hsmall": "\uf768", 

337 "Hungarumlaut": "\uf6cf", 

338 "Hungarumlautsmall": "\uf6f8", 

339 "Hzsquare": "\u3390", 

340 "I": "\u0049", 

341 "IAcyrillic": "\u042f", 

342 "IJ": "\u0132", 

343 "IUcyrillic": "\u042e", 

344 "Iacute": "\u00cd", 

345 "Iacutesmall": "\uf7ed", 

346 "Ibreve": "\u012c", 

347 "Icaron": "\u01cf", 

348 "Icircle": "\u24be", 

349 "Icircumflex": "\u00ce", 

350 "Icircumflexsmall": "\uf7ee", 

351 "Icyrillic": "\u0406", 

352 "Idblgrave": "\u0208", 

353 "Idieresis": "\u00cf", 

354 "Idieresisacute": "\u1e2e", 

355 "Idieresiscyrillic": "\u04e4", 

356 "Idieresissmall": "\uf7ef", 

357 "Idot": "\u0130", 

358 "Idotaccent": "\u0130", 

359 "Idotbelow": "\u1eca", 

360 "Iebrevecyrillic": "\u04d6", 

361 "Iecyrillic": "\u0415", 

362 "Ifraktur": "\u2111", 

363 "Igrave": "\u00cc", 

364 "Igravesmall": "\uf7ec", 

365 "Ihookabove": "\u1ec8", 

366 "Iicyrillic": "\u0418", 

367 "Iinvertedbreve": "\u020a", 

368 "Iishortcyrillic": "\u0419", 

369 "Imacron": "\u012a", 

370 "Imacroncyrillic": "\u04e2", 

371 "Imonospace": "\uff29", 

372 "Iniarmenian": "\u053b", 

373 "Iocyrillic": "\u0401", 

374 "Iogonek": "\u012e", 

375 "Iota": "\u0399", 

376 "Iotaafrican": "\u0196", 

377 "Iotadieresis": "\u03aa", 

378 "Iotatonos": "\u038a", 

379 "Ismall": "\uf769", 

380 "Istroke": "\u0197", 

381 "Itilde": "\u0128", 

382 "Itildebelow": "\u1e2c", 

383 "Izhitsacyrillic": "\u0474", 

384 "Izhitsadblgravecyrillic": "\u0476", 

385 "J": "\u004a", 

386 "Jaarmenian": "\u0541", 

387 "Jcircle": "\u24bf", 

388 "Jcircumflex": "\u0134", 

389 "Jecyrillic": "\u0408", 

390 "Jheharmenian": "\u054b", 

391 "Jmonospace": "\uff2a", 

392 "Jsmall": "\uf76a", 

393 "K": "\u004b", 

394 "KBsquare": "\u3385", 

395 "KKsquare": "\u33cd", 

396 "Kabashkircyrillic": "\u04a0", 

397 "Kacute": "\u1e30", 

398 "Kacyrillic": "\u041a", 

399 "Kadescendercyrillic": "\u049a", 

400 "Kahookcyrillic": "\u04c3", 

401 "Kappa": "\u039a", 

402 "Kastrokecyrillic": "\u049e", 

403 "Kaverticalstrokecyrillic": "\u049c", 

404 "Kcaron": "\u01e8", 

405 "Kcedilla": "\u0136", 

406 "Kcircle": "\u24c0", 

407 "Kcommaaccent": "\u0136", 

408 "Kdotbelow": "\u1e32", 

409 "Keharmenian": "\u0554", 

410 "Kenarmenian": "\u053f", 

411 "Khacyrillic": "\u0425", 

412 "Kheicoptic": "\u03e6", 

413 "Khook": "\u0198", 

414 "Kjecyrillic": "\u040c", 

415 "Klinebelow": "\u1e34", 

416 "Kmonospace": "\uff2b", 

417 "Koppacyrillic": "\u0480", 

418 "Koppagreek": "\u03de", 

419 "Ksicyrillic": "\u046e", 

420 "Ksmall": "\uf76b", 

421 "L": "\u004c", 

422 "LJ": "\u01c7", 

423 "LL": "\uf6bf", 

424 "Lacute": "\u0139", 

425 "Lambda": "\u039b", 

426 "Lcaron": "\u013d", 

427 "Lcedilla": "\u013b", 

428 "Lcircle": "\u24c1", 

429 "Lcircumflexbelow": "\u1e3c", 

430 "Lcommaaccent": "\u013b", 

431 "Ldot": "\u013f", 

432 "Ldotaccent": "\u013f", 

433 "Ldotbelow": "\u1e36", 

434 "Ldotbelowmacron": "\u1e38", 

435 "Liwnarmenian": "\u053c", 

436 "Lj": "\u01c8", 

437 "Ljecyrillic": "\u0409", 

438 "Llinebelow": "\u1e3a", 

439 "Lmonospace": "\uff2c", 

440 "Lslash": "\u0141", 

441 "Lslashsmall": "\uf6f9", 

442 "Lsmall": "\uf76c", 

443 "M": "\u004d", 

444 "MBsquare": "\u3386", 

445 "Macron": "\uf6d0", 

446 "Macronsmall": "\uf7af", 

447 "Macute": "\u1e3e", 

448 "Mcircle": "\u24c2", 

449 "Mdotaccent": "\u1e40", 

450 "Mdotbelow": "\u1e42", 

451 "Menarmenian": "\u0544", 

452 "Mmonospace": "\uff2d", 

453 "Msmall": "\uf76d", 

454 "Mturned": "\u019c", 

455 "Mu": "\u039c", 

456 "N": "\u004e", 

457 "NJ": "\u01ca", 

458 "Nacute": "\u0143", 

459 "Ncaron": "\u0147", 

460 "Ncedilla": "\u0145", 

461 "Ncircle": "\u24c3", 

462 "Ncircumflexbelow": "\u1e4a", 

463 "Ncommaaccent": "\u0145", 

464 "Ndotaccent": "\u1e44", 

465 "Ndotbelow": "\u1e46", 

466 "Nhookleft": "\u019d", 

467 "Nineroman": "\u2168", 

468 "Nj": "\u01cb", 

469 "Njecyrillic": "\u040a", 

470 "Nlinebelow": "\u1e48", 

471 "Nmonospace": "\uff2e", 

472 "Nowarmenian": "\u0546", 

473 "Nsmall": "\uf76e", 

474 "Ntilde": "\u00d1", 

475 "Ntildesmall": "\uf7f1", 

476 "Nu": "\u039d", 

477 "O": "\u004f", 

478 "OE": "\u0152", 

479 "OEsmall": "\uf6fa", 

480 "Oacute": "\u00d3", 

481 "Oacutesmall": "\uf7f3", 

482 "Obarredcyrillic": "\u04e8", 

483 "Obarreddieresiscyrillic": "\u04ea", 

484 "Obreve": "\u014e", 

485 "Ocaron": "\u01d1", 

486 "Ocenteredtilde": "\u019f", 

487 "Ocircle": "\u24c4", 

488 "Ocircumflex": "\u00d4", 

489 "Ocircumflexacute": "\u1ed0", 

490 "Ocircumflexdotbelow": "\u1ed8", 

491 "Ocircumflexgrave": "\u1ed2", 

492 "Ocircumflexhookabove": "\u1ed4", 

493 "Ocircumflexsmall": "\uf7f4", 

494 "Ocircumflextilde": "\u1ed6", 

495 "Ocyrillic": "\u041e", 

496 "Odblacute": "\u0150", 

497 "Odblgrave": "\u020c", 

498 "Odieresis": "\u00d6", 

499 "Odieresiscyrillic": "\u04e6", 

500 "Odieresissmall": "\uf7f6", 

501 "Odotbelow": "\u1ecc", 

502 "Ogoneksmall": "\uf6fb", 

503 "Ograve": "\u00d2", 

504 "Ogravesmall": "\uf7f2", 

505 "Oharmenian": "\u0555", 

506 "Ohm": "\u2126", 

507 "Ohookabove": "\u1ece", 

508 "Ohorn": "\u01a0", 

509 "Ohornacute": "\u1eda", 

510 "Ohorndotbelow": "\u1ee2", 

511 "Ohorngrave": "\u1edc", 

512 "Ohornhookabove": "\u1ede", 

513 "Ohorntilde": "\u1ee0", 

514 "Ohungarumlaut": "\u0150", 

515 "Oi": "\u01a2", 

516 "Oinvertedbreve": "\u020e", 

517 "Omacron": "\u014c", 

518 "Omacronacute": "\u1e52", 

519 "Omacrongrave": "\u1e50", 

520 "Omega": "\u2126", 

521 "Omegacyrillic": "\u0460", 

522 "Omegagreek": "\u03a9", 

523 "Omegaroundcyrillic": "\u047a", 

524 "Omegatitlocyrillic": "\u047c", 

525 "Omegatonos": "\u038f", 

526 "Omicron": "\u039f", 

527 "Omicrontonos": "\u038c", 

528 "Omonospace": "\uff2f", 

529 "Oneroman": "\u2160", 

530 "Oogonek": "\u01ea", 

531 "Oogonekmacron": "\u01ec", 

532 "Oopen": "\u0186", 

533 "Oslash": "\u00d8", 

534 "Oslashacute": "\u01fe", 

535 "Oslashsmall": "\uf7f8", 

536 "Osmall": "\uf76f", 

537 "Ostrokeacute": "\u01fe", 

538 "Otcyrillic": "\u047e", 

539 "Otilde": "\u00d5", 

540 "Otildeacute": "\u1e4c", 

541 "Otildedieresis": "\u1e4e", 

542 "Otildesmall": "\uf7f5", 

543 "P": "\u0050", 

544 "Pacute": "\u1e54", 

545 "Pcircle": "\u24c5", 

546 "Pdotaccent": "\u1e56", 

547 "Pecyrillic": "\u041f", 

548 "Peharmenian": "\u054a", 

549 "Pemiddlehookcyrillic": "\u04a6", 

550 "Phi": "\u03a6", 

551 "Phook": "\u01a4", 

552 "Pi": "\u03a0", 

553 "Piwrarmenian": "\u0553", 

554 "Pmonospace": "\uff30", 

555 "Psi": "\u03a8", 

556 "Psicyrillic": "\u0470", 

557 "Psmall": "\uf770", 

558 "Q": "\u0051", 

559 "Qcircle": "\u24c6", 

560 "Qmonospace": "\uff31", 

561 "Qsmall": "\uf771", 

562 "R": "\u0052", 

563 "Raarmenian": "\u054c", 

564 "Racute": "\u0154", 

565 "Rcaron": "\u0158", 

566 "Rcedilla": "\u0156", 

567 "Rcircle": "\u24c7", 

568 "Rcommaaccent": "\u0156", 

569 "Rdblgrave": "\u0210", 

570 "Rdotaccent": "\u1e58", 

571 "Rdotbelow": "\u1e5a", 

572 "Rdotbelowmacron": "\u1e5c", 

573 "Reharmenian": "\u0550", 

574 "Rfraktur": "\u211c", 

575 "Rho": "\u03a1", 

576 "Ringsmall": "\uf6fc", 

577 "Rinvertedbreve": "\u0212", 

578 "Rlinebelow": "\u1e5e", 

579 "Rmonospace": "\uff32", 

580 "Rsmall": "\uf772", 

581 "Rsmallinverted": "\u0281", 

582 "Rsmallinvertedsuperior": "\u02b6", 

583 "S": "\u0053", 

584 "SF010000": "\u250c", 

585 "SF020000": "\u2514", 

586 "SF030000": "\u2510", 

587 "SF040000": "\u2518", 

588 "SF050000": "\u253c", 

589 "SF060000": "\u252c", 

590 "SF070000": "\u2534", 

591 "SF080000": "\u251c", 

592 "SF090000": "\u2524", 

593 "SF100000": "\u2500", 

594 "SF110000": "\u2502", 

595 "SF190000": "\u2561", 

596 "SF200000": "\u2562", 

597 "SF210000": "\u2556", 

598 "SF220000": "\u2555", 

599 "SF230000": "\u2563", 

600 "SF240000": "\u2551", 

601 "SF250000": "\u2557", 

602 "SF260000": "\u255d", 

603 "SF270000": "\u255c", 

604 "SF280000": "\u255b", 

605 "SF360000": "\u255e", 

606 "SF370000": "\u255f", 

607 "SF380000": "\u255a", 

608 "SF390000": "\u2554", 

609 "SF400000": "\u2569", 

610 "SF410000": "\u2566", 

611 "SF420000": "\u2560", 

612 "SF430000": "\u2550", 

613 "SF440000": "\u256c", 

614 "SF450000": "\u2567", 

615 "SF460000": "\u2568", 

616 "SF470000": "\u2564", 

617 "SF480000": "\u2565", 

618 "SF490000": "\u2559", 

619 "SF500000": "\u2558", 

620 "SF510000": "\u2552", 

621 "SF520000": "\u2553", 

622 "SF530000": "\u256b", 

623 "SF540000": "\u256a", 

624 "Sacute": "\u015a", 

625 "Sacutedotaccent": "\u1e64", 

626 "Sampigreek": "\u03e0", 

627 "Scaron": "\u0160", 

628 "Scarondotaccent": "\u1e66", 

629 "Scaronsmall": "\uf6fd", 

630 "Scedilla": "\u015e", 

631 "Schwa": "\u018f", 

632 "Schwacyrillic": "\u04d8", 

633 "Schwadieresiscyrillic": "\u04da", 

634 "Scircle": "\u24c8", 

635 "Scircumflex": "\u015c", 

636 "Scommaaccent": "\u0218", 

637 "Sdotaccent": "\u1e60", 

638 "Sdotbelow": "\u1e62", 

639 "Sdotbelowdotaccent": "\u1e68", 

640 "Seharmenian": "\u054d", 

641 "Sevenroman": "\u2166", 

642 "Shaarmenian": "\u0547", 

643 "Shacyrillic": "\u0428", 

644 "Shchacyrillic": "\u0429", 

645 "Sheicoptic": "\u03e2", 

646 "Shhacyrillic": "\u04ba", 

647 "Shimacoptic": "\u03ec", 

648 "Sigma": "\u03a3", 

649 "Sixroman": "\u2165", 

650 "Smonospace": "\uff33", 

651 "Softsigncyrillic": "\u042c", 

652 "Ssmall": "\uf773", 

653 "Stigmagreek": "\u03da", 

654 "T": "\u0054", 

655 "Tau": "\u03a4", 

656 "Tbar": "\u0166", 

657 "Tcaron": "\u0164", 

658 "Tcedilla": "\u0162", 

659 "Tcircle": "\u24c9", 

660 "Tcircumflexbelow": "\u1e70", 

661 "Tcommaaccent": "\u0162", 

662 "Tdotaccent": "\u1e6a", 

663 "Tdotbelow": "\u1e6c", 

664 "Tecyrillic": "\u0422", 

665 "Tedescendercyrillic": "\u04ac", 

666 "Tenroman": "\u2169", 

667 "Tetsecyrillic": "\u04b4", 

668 "Theta": "\u0398", 

669 "Thook": "\u01ac", 

670 "Thorn": "\u00de", 

671 "Thornsmall": "\uf7fe", 

672 "Threeroman": "\u2162", 

673 "Tildesmall": "\uf6fe", 

674 "Tiwnarmenian": "\u054f", 

675 "Tlinebelow": "\u1e6e", 

676 "Tmonospace": "\uff34", 

677 "Toarmenian": "\u0539", 

678 "Tonefive": "\u01bc", 

679 "Tonesix": "\u0184", 

680 "Tonetwo": "\u01a7", 

681 "Tretroflexhook": "\u01ae", 

682 "Tsecyrillic": "\u0426", 

683 "Tshecyrillic": "\u040b", 

684 "Tsmall": "\uf774", 

685 "Twelveroman": "\u216b", 

686 "Tworoman": "\u2161", 

687 "U": "\u0055", 

688 "Uacute": "\u00da", 

689 "Uacutesmall": "\uf7fa", 

690 "Ubreve": "\u016c", 

691 "Ucaron": "\u01d3", 

692 "Ucircle": "\u24ca", 

693 "Ucircumflex": "\u00db", 

694 "Ucircumflexbelow": "\u1e76", 

695 "Ucircumflexsmall": "\uf7fb", 

696 "Ucyrillic": "\u0423", 

697 "Udblacute": "\u0170", 

698 "Udblgrave": "\u0214", 

699 "Udieresis": "\u00dc", 

700 "Udieresisacute": "\u01d7", 

701 "Udieresisbelow": "\u1e72", 

702 "Udieresiscaron": "\u01d9", 

703 "Udieresiscyrillic": "\u04f0", 

704 "Udieresisgrave": "\u01db", 

705 "Udieresismacron": "\u01d5", 

706 "Udieresissmall": "\uf7fc", 

707 "Udotbelow": "\u1ee4", 

708 "Ugrave": "\u00d9", 

709 "Ugravesmall": "\uf7f9", 

710 "Uhookabove": "\u1ee6", 

711 "Uhorn": "\u01af", 

712 "Uhornacute": "\u1ee8", 

713 "Uhorndotbelow": "\u1ef0", 

714 "Uhorngrave": "\u1eea", 

715 "Uhornhookabove": "\u1eec", 

716 "Uhorntilde": "\u1eee", 

717 "Uhungarumlaut": "\u0170", 

718 "Uhungarumlautcyrillic": "\u04f2", 

719 "Uinvertedbreve": "\u0216", 

720 "Ukcyrillic": "\u0478", 

721 "Umacron": "\u016a", 

722 "Umacroncyrillic": "\u04ee", 

723 "Umacrondieresis": "\u1e7a", 

724 "Umonospace": "\uff35", 

725 "Uogonek": "\u0172", 

726 "Upsilon": "\u03a5", 

727 "Upsilon1": "\u03d2", 

728 "Upsilonacutehooksymbolgreek": "\u03d3", 

729 "Upsilonafrican": "\u01b1", 

730 "Upsilondieresis": "\u03ab", 

731 "Upsilondieresishooksymbolgreek": "\u03d4", 

732 "Upsilonhooksymbol": "\u03d2", 

733 "Upsilontonos": "\u038e", 

734 "Uring": "\u016e", 

735 "Ushortcyrillic": "\u040e", 

736 "Usmall": "\uf775", 

737 "Ustraightcyrillic": "\u04ae", 

738 "Ustraightstrokecyrillic": "\u04b0", 

739 "Utilde": "\u0168", 

740 "Utildeacute": "\u1e78", 

741 "Utildebelow": "\u1e74", 

742 "V": "\u0056", 

743 "Vcircle": "\u24cb", 

744 "Vdotbelow": "\u1e7e", 

745 "Vecyrillic": "\u0412", 

746 "Vewarmenian": "\u054e", 

747 "Vhook": "\u01b2", 

748 "Vmonospace": "\uff36", 

749 "Voarmenian": "\u0548", 

750 "Vsmall": "\uf776", 

751 "Vtilde": "\u1e7c", 

752 "W": "\u0057", 

753 "Wacute": "\u1e82", 

754 "Wcircle": "\u24cc", 

755 "Wcircumflex": "\u0174", 

756 "Wdieresis": "\u1e84", 

757 "Wdotaccent": "\u1e86", 

758 "Wdotbelow": "\u1e88", 

759 "Wgrave": "\u1e80", 

760 "Wmonospace": "\uff37", 

761 "Wsmall": "\uf777", 

762 "X": "\u0058", 

763 "Xcircle": "\u24cd", 

764 "Xdieresis": "\u1e8c", 

765 "Xdotaccent": "\u1e8a", 

766 "Xeharmenian": "\u053d", 

767 "Xi": "\u039e", 

768 "Xmonospace": "\uff38", 

769 "Xsmall": "\uf778", 

770 "Y": "\u0059", 

771 "Yacute": "\u00dd", 

772 "Yacutesmall": "\uf7fd", 

773 "Yatcyrillic": "\u0462", 

774 "Ycircle": "\u24ce", 

775 "Ycircumflex": "\u0176", 

776 "Ydieresis": "\u0178", 

777 "Ydieresissmall": "\uf7ff", 

778 "Ydotaccent": "\u1e8e", 

779 "Ydotbelow": "\u1ef4", 

780 "Yericyrillic": "\u042b", 

781 "Yerudieresiscyrillic": "\u04f8", 

782 "Ygrave": "\u1ef2", 

783 "Yhook": "\u01b3", 

784 "Yhookabove": "\u1ef6", 

785 "Yiarmenian": "\u0545", 

786 "Yicyrillic": "\u0407", 

787 "Yiwnarmenian": "\u0552", 

788 "Ymonospace": "\uff39", 

789 "Ysmall": "\uf779", 

790 "Ytilde": "\u1ef8", 

791 "Yusbigcyrillic": "\u046a", 

792 "Yusbigiotifiedcyrillic": "\u046c", 

793 "Yuslittlecyrillic": "\u0466", 

794 "Yuslittleiotifiedcyrillic": "\u0468", 

795 "Z": "\u005a", 

796 "Zaarmenian": "\u0536", 

797 "Zacute": "\u0179", 

798 "Zcaron": "\u017d", 

799 "Zcaronsmall": "\uf6ff", 

800 "Zcircle": "\u24cf", 

801 "Zcircumflex": "\u1e90", 

802 "Zdot": "\u017b", 

803 "Zdotaccent": "\u017b", 

804 "Zdotbelow": "\u1e92", 

805 "Zecyrillic": "\u0417", 

806 "Zedescendercyrillic": "\u0498", 

807 "Zedieresiscyrillic": "\u04de", 

808 "Zeta": "\u0396", 

809 "Zhearmenian": "\u053a", 

810 "Zhebrevecyrillic": "\u04c1", 

811 "Zhecyrillic": "\u0416", 

812 "Zhedescendercyrillic": "\u0496", 

813 "Zhedieresiscyrillic": "\u04dc", 

814 "Zlinebelow": "\u1e94", 

815 "Zmonospace": "\uff3a", 

816 "Zsmall": "\uf77a", 

817 "Zstroke": "\u01b5", 

818 "a": "\u0061", 

819 "aabengali": "\u0986", 

820 "aacute": "\u00e1", 

821 "aadeva": "\u0906", 

822 "aagujarati": "\u0a86", 

823 "aagurmukhi": "\u0a06", 

824 "aamatragurmukhi": "\u0a3e", 

825 "aarusquare": "\u3303", 

826 "aavowelsignbengali": "\u09be", 

827 "aavowelsigndeva": "\u093e", 

828 "aavowelsigngujarati": "\u0abe", 

829 "abbreviationmarkarmenian": "\u055f", 

830 "abbreviationsigndeva": "\u0970", 

831 "abengali": "\u0985", 

832 "abopomofo": "\u311a", 

833 "abreve": "\u0103", 

834 "abreveacute": "\u1eaf", 

835 "abrevecyrillic": "\u04d1", 

836 "abrevedotbelow": "\u1eb7", 

837 "abrevegrave": "\u1eb1", 

838 "abrevehookabove": "\u1eb3", 

839 "abrevetilde": "\u1eb5", 

840 "acaron": "\u01ce", 

841 "acircle": "\u24d0", 

842 "acircumflex": "\u00e2", 

843 "acircumflexacute": "\u1ea5", 

844 "acircumflexdotbelow": "\u1ead", 

845 "acircumflexgrave": "\u1ea7", 

846 "acircumflexhookabove": "\u1ea9", 

847 "acircumflextilde": "\u1eab", 

848 "acute": "\u00b4", 

849 "acutebelowcmb": "\u0317", 

850 "acutecmb": "\u0301", 

851 "acutecomb": "\u0301", 

852 "acutedeva": "\u0954", 

853 "acutelowmod": "\u02cf", 

854 "acutetonecmb": "\u0341", 

855 "acyrillic": "\u0430", 

856 "adblgrave": "\u0201", 

857 "addakgurmukhi": "\u0a71", 

858 "adeva": "\u0905", 

859 "adieresis": "\u00e4", 

860 "adieresiscyrillic": "\u04d3", 

861 "adieresismacron": "\u01df", 

862 "adotbelow": "\u1ea1", 

863 "adotmacron": "\u01e1", 

864 "ae": "\u00e6", 

865 "aeacute": "\u01fd", 

866 "aekorean": "\u3150", 

867 "aemacron": "\u01e3", 

868 "afii00208": "\u2015", 

869 "afii08941": "\u20a4", 

870 "afii10017": "\u0410", 

871 "afii10018": "\u0411", 

872 "afii10019": "\u0412", 

873 "afii10020": "\u0413", 

874 "afii10021": "\u0414", 

875 "afii10022": "\u0415", 

876 "afii10023": "\u0401", 

877 "afii10024": "\u0416", 

878 "afii10025": "\u0417", 

879 "afii10026": "\u0418", 

880 "afii10027": "\u0419", 

881 "afii10028": "\u041a", 

882 "afii10029": "\u041b", 

883 "afii10030": "\u041c", 

884 "afii10031": "\u041d", 

885 "afii10032": "\u041e", 

886 "afii10033": "\u041f", 

887 "afii10034": "\u0420", 

888 "afii10035": "\u0421", 

889 "afii10036": "\u0422", 

890 "afii10037": "\u0423", 

891 "afii10038": "\u0424", 

892 "afii10039": "\u0425", 

893 "afii10040": "\u0426", 

894 "afii10041": "\u0427", 

895 "afii10042": "\u0428", 

896 "afii10043": "\u0429", 

897 "afii10044": "\u042a", 

898 "afii10045": "\u042b", 

899 "afii10046": "\u042c", 

900 "afii10047": "\u042d", 

901 "afii10048": "\u042e", 

902 "afii10049": "\u042f", 

903 "afii10050": "\u0490", 

904 "afii10051": "\u0402", 

905 "afii10052": "\u0403", 

906 "afii10053": "\u0404", 

907 "afii10054": "\u0405", 

908 "afii10055": "\u0406", 

909 "afii10056": "\u0407", 

910 "afii10057": "\u0408", 

911 "afii10058": "\u0409", 

912 "afii10059": "\u040a", 

913 "afii10060": "\u040b", 

914 "afii10061": "\u040c", 

915 "afii10062": "\u040e", 

916 "afii10063": "\uf6c4", 

917 "afii10064": "\uf6c5", 

918 "afii10065": "\u0430", 

919 "afii10066": "\u0431", 

920 "afii10067": "\u0432", 

921 "afii10068": "\u0433", 

922 "afii10069": "\u0434", 

923 "afii10070": "\u0435", 

924 "afii10071": "\u0451", 

925 "afii10072": "\u0436", 

926 "afii10073": "\u0437", 

927 "afii10074": "\u0438", 

928 "afii10075": "\u0439", 

929 "afii10076": "\u043a", 

930 "afii10077": "\u043b", 

931 "afii10078": "\u043c", 

932 "afii10079": "\u043d", 

933 "afii10080": "\u043e", 

934 "afii10081": "\u043f", 

935 "afii10082": "\u0440", 

936 "afii10083": "\u0441", 

937 "afii10084": "\u0442", 

938 "afii10085": "\u0443", 

939 "afii10086": "\u0444", 

940 "afii10087": "\u0445", 

941 "afii10088": "\u0446", 

942 "afii10089": "\u0447", 

943 "afii10090": "\u0448", 

944 "afii10091": "\u0449", 

945 "afii10092": "\u044a", 

946 "afii10093": "\u044b", 

947 "afii10094": "\u044c", 

948 "afii10095": "\u044d", 

949 "afii10096": "\u044e", 

950 "afii10097": "\u044f", 

951 "afii10098": "\u0491", 

952 "afii10099": "\u0452", 

953 "afii10100": "\u0453", 

954 "afii10101": "\u0454", 

955 "afii10102": "\u0455", 

956 "afii10103": "\u0456", 

957 "afii10104": "\u0457", 

958 "afii10105": "\u0458", 

959 "afii10106": "\u0459", 

960 "afii10107": "\u045a", 

961 "afii10108": "\u045b", 

962 "afii10109": "\u045c", 

963 "afii10110": "\u045e", 

964 "afii10145": "\u040f", 

965 "afii10146": "\u0462", 

966 "afii10147": "\u0472", 

967 "afii10148": "\u0474", 

968 "afii10192": "\uf6c6", 

969 "afii10193": "\u045f", 

970 "afii10194": "\u0463", 

971 "afii10195": "\u0473", 

972 "afii10196": "\u0475", 

973 "afii10831": "\uf6c7", 

974 "afii10832": "\uf6c8", 

975 "afii10846": "\u04d9", 

976 "afii299": "\u200e", 

977 "afii300": "\u200f", 

978 "afii301": "\u200d", 

979 "afii57381": "\u066a", 

980 "afii57388": "\u060c", 

981 "afii57392": "\u0660", 

982 "afii57393": "\u0661", 

983 "afii57394": "\u0662", 

984 "afii57395": "\u0663", 

985 "afii57396": "\u0664", 

986 "afii57397": "\u0665", 

987 "afii57398": "\u0666", 

988 "afii57399": "\u0667", 

989 "afii57400": "\u0668", 

990 "afii57401": "\u0669", 

991 "afii57403": "\u061b", 

992 "afii57407": "\u061f", 

993 "afii57409": "\u0621", 

994 "afii57410": "\u0622", 

995 "afii57411": "\u0623", 

996 "afii57412": "\u0624", 

997 "afii57413": "\u0625", 

998 "afii57414": "\u0626", 

999 "afii57415": "\u0627", 

1000 "afii57416": "\u0628", 

1001 "afii57417": "\u0629", 

1002 "afii57418": "\u062a", 

1003 "afii57419": "\u062b", 

1004 "afii57420": "\u062c", 

1005 "afii57421": "\u062d", 

1006 "afii57422": "\u062e", 

1007 "afii57423": "\u062f", 

1008 "afii57424": "\u0630", 

1009 "afii57425": "\u0631", 

1010 "afii57426": "\u0632", 

1011 "afii57427": "\u0633", 

1012 "afii57428": "\u0634", 

1013 "afii57429": "\u0635", 

1014 "afii57430": "\u0636", 

1015 "afii57431": "\u0637", 

1016 "afii57432": "\u0638", 

1017 "afii57433": "\u0639", 

1018 "afii57434": "\u063a", 

1019 "afii57440": "\u0640", 

1020 "afii57441": "\u0641", 

1021 "afii57442": "\u0642", 

1022 "afii57443": "\u0643", 

1023 "afii57444": "\u0644", 

1024 "afii57445": "\u0645", 

1025 "afii57446": "\u0646", 

1026 "afii57448": "\u0648", 

1027 "afii57449": "\u0649", 

1028 "afii57450": "\u064a", 

1029 "afii57451": "\u064b", 

1030 "afii57452": "\u064c", 

1031 "afii57453": "\u064d", 

1032 "afii57454": "\u064e", 

1033 "afii57455": "\u064f", 

1034 "afii57456": "\u0650", 

1035 "afii57457": "\u0651", 

1036 "afii57458": "\u0652", 

1037 "afii57470": "\u0647", 

1038 "afii57505": "\u06a4", 

1039 "afii57506": "\u067e", 

1040 "afii57507": "\u0686", 

1041 "afii57508": "\u0698", 

1042 "afii57509": "\u06af", 

1043 "afii57511": "\u0679", 

1044 "afii57512": "\u0688", 

1045 "afii57513": "\u0691", 

1046 "afii57514": "\u06ba", 

1047 "afii57519": "\u06d2", 

1048 "afii57534": "\u06d5", 

1049 "afii57636": "\u20aa", 

1050 "afii57645": "\u05be", 

1051 "afii57658": "\u05c3", 

1052 "afii57664": "\u05d0", 

1053 "afii57665": "\u05d1", 

1054 "afii57666": "\u05d2", 

1055 "afii57667": "\u05d3", 

1056 "afii57668": "\u05d4", 

1057 "afii57669": "\u05d5", 

1058 "afii57670": "\u05d6", 

1059 "afii57671": "\u05d7", 

1060 "afii57672": "\u05d8", 

1061 "afii57673": "\u05d9", 

1062 "afii57674": "\u05da", 

1063 "afii57675": "\u05db", 

1064 "afii57676": "\u05dc", 

1065 "afii57677": "\u05dd", 

1066 "afii57678": "\u05de", 

1067 "afii57679": "\u05df", 

1068 "afii57680": "\u05e0", 

1069 "afii57681": "\u05e1", 

1070 "afii57682": "\u05e2", 

1071 "afii57683": "\u05e3", 

1072 "afii57684": "\u05e4", 

1073 "afii57685": "\u05e5", 

1074 "afii57686": "\u05e6", 

1075 "afii57687": "\u05e7", 

1076 "afii57688": "\u05e8", 

1077 "afii57689": "\u05e9", 

1078 "afii57690": "\u05ea", 

1079 "afii57694": "\ufb2a", 

1080 "afii57695": "\ufb2b", 

1081 "afii57700": "\ufb4b", 

1082 "afii57705": "\ufb1f", 

1083 "afii57716": "\u05f0", 

1084 "afii57717": "\u05f1", 

1085 "afii57718": "\u05f2", 

1086 "afii57723": "\ufb35", 

1087 "afii57793": "\u05b4", 

1088 "afii57794": "\u05b5", 

1089 "afii57795": "\u05b6", 

1090 "afii57796": "\u05bb", 

1091 "afii57797": "\u05b8", 

1092 "afii57798": "\u05b7", 

1093 "afii57799": "\u05b0", 

1094 "afii57800": "\u05b2", 

1095 "afii57801": "\u05b1", 

1096 "afii57802": "\u05b3", 

1097 "afii57803": "\u05c2", 

1098 "afii57804": "\u05c1", 

1099 "afii57806": "\u05b9", 

1100 "afii57807": "\u05bc", 

1101 "afii57839": "\u05bd", 

1102 "afii57841": "\u05bf", 

1103 "afii57842": "\u05c0", 

1104 "afii57929": "\u02bc", 

1105 "afii61248": "\u2105", 

1106 "afii61289": "\u2113", 

1107 "afii61352": "\u2116", 

1108 "afii61573": "\u202c", 

1109 "afii61574": "\u202d", 

1110 "afii61575": "\u202e", 

1111 "afii61664": "\u200c", 

1112 "afii63167": "\u066d", 

1113 "afii64937": "\u02bd", 

1114 "agrave": "\u00e0", 

1115 "agujarati": "\u0a85", 

1116 "agurmukhi": "\u0a05", 

1117 "ahiragana": "\u3042", 

1118 "ahookabove": "\u1ea3", 

1119 "aibengali": "\u0990", 

1120 "aibopomofo": "\u311e", 

1121 "aideva": "\u0910", 

1122 "aiecyrillic": "\u04d5", 

1123 "aigujarati": "\u0a90", 

1124 "aigurmukhi": "\u0a10", 

1125 "aimatragurmukhi": "\u0a48", 

1126 "ainarabic": "\u0639", 

1127 "ainfinalarabic": "\ufeca", 

1128 "aininitialarabic": "\ufecb", 

1129 "ainmedialarabic": "\ufecc", 

1130 "ainvertedbreve": "\u0203", 

1131 "aivowelsignbengali": "\u09c8", 

1132 "aivowelsigndeva": "\u0948", 

1133 "aivowelsigngujarati": "\u0ac8", 

1134 "akatakana": "\u30a2", 

1135 "akatakanahalfwidth": "\uff71", 

1136 "akorean": "\u314f", 

1137 "alef": "\u05d0", 

1138 "alefarabic": "\u0627", 

1139 "alefdageshhebrew": "\ufb30", 

1140 "aleffinalarabic": "\ufe8e", 

1141 "alefhamzaabovearabic": "\u0623", 

1142 "alefhamzaabovefinalarabic": "\ufe84", 

1143 "alefhamzabelowarabic": "\u0625", 

1144 "alefhamzabelowfinalarabic": "\ufe88", 

1145 "alefhebrew": "\u05d0", 

1146 "aleflamedhebrew": "\ufb4f", 

1147 "alefmaddaabovearabic": "\u0622", 

1148 "alefmaddaabovefinalarabic": "\ufe82", 

1149 "alefmaksuraarabic": "\u0649", 

1150 "alefmaksurafinalarabic": "\ufef0", 

1151 "alefmaksurainitialarabic": "\ufef3", 

1152 "alefmaksuramedialarabic": "\ufef4", 

1153 "alefpatahhebrew": "\ufb2e", 

1154 "alefqamatshebrew": "\ufb2f", 

1155 "aleph": "\u2135", 

1156 "allequal": "\u224c", 

1157 "alpha": "\u03b1", 

1158 "alphatonos": "\u03ac", 

1159 "amacron": "\u0101", 

1160 "amonospace": "\uff41", 

1161 "ampersand": "\u0026", 

1162 "ampersandmonospace": "\uff06", 

1163 "ampersandsmall": "\uf726", 

1164 "amsquare": "\u33c2", 

1165 "anbopomofo": "\u3122", 

1166 "angbopomofo": "\u3124", 

1167 "angkhankhuthai": "\u0e5a", 

1168 "angle": "\u2220", 

1169 "anglebracketleft": "\u3008", 

1170 "anglebracketleftvertical": "\ufe3f", 

1171 "anglebracketright": "\u3009", 

1172 "anglebracketrightvertical": "\ufe40", 

1173 "angleleft": "\u2329", 

1174 "angleright": "\u232a", 

1175 "angstrom": "\u212b", 

1176 "anoteleia": "\u0387", 

1177 "anudattadeva": "\u0952", 

1178 "anusvarabengali": "\u0982", 

1179 "anusvaradeva": "\u0902", 

1180 "anusvaragujarati": "\u0a82", 

1181 "aogonek": "\u0105", 

1182 "apaatosquare": "\u3300", 

1183 "aparen": "\u249c", 

1184 "apostrophearmenian": "\u055a", 

1185 "apostrophemod": "\u02bc", 

1186 "apple": "\uf8ff", 

1187 "approaches": "\u2250", 

1188 "approxequal": "\u2248", 

1189 "approxequalorimage": "\u2252", 

1190 "approximatelyequal": "\u2245", 

1191 "araeaekorean": "\u318e", 

1192 "araeakorean": "\u318d", 

1193 "arc": "\u2312", 

1194 "arighthalfring": "\u1e9a", 

1195 "aring": "\u00e5", 

1196 "aringacute": "\u01fb", 

1197 "aringbelow": "\u1e01", 

1198 "arrowboth": "\u2194", 

1199 "arrowdashdown": "\u21e3", 

1200 "arrowdashleft": "\u21e0", 

1201 "arrowdashright": "\u21e2", 

1202 "arrowdashup": "\u21e1", 

1203 "arrowdblboth": "\u21d4", 

1204 "arrowdbldown": "\u21d3", 

1205 "arrowdblleft": "\u21d0", 

1206 "arrowdblright": "\u21d2", 

1207 "arrowdblup": "\u21d1", 

1208 "arrowdown": "\u2193", 

1209 "arrowdownleft": "\u2199", 

1210 "arrowdownright": "\u2198", 

1211 "arrowdownwhite": "\u21e9", 

1212 "arrowheaddownmod": "\u02c5", 

1213 "arrowheadleftmod": "\u02c2", 

1214 "arrowheadrightmod": "\u02c3", 

1215 "arrowheadupmod": "\u02c4", 

1216 "arrowhorizex": "\uf8e7", 

1217 "arrowleft": "\u2190", 

1218 "arrowleftdbl": "\u21d0", 

1219 "arrowleftdblstroke": "\u21cd", 

1220 "arrowleftoverright": "\u21c6", 

1221 "arrowleftwhite": "\u21e6", 

1222 "arrowright": "\u2192", 

1223 "arrowrightdblstroke": "\u21cf", 

1224 "arrowrightheavy": "\u279e", 

1225 "arrowrightoverleft": "\u21c4", 

1226 "arrowrightwhite": "\u21e8", 

1227 "arrowtableft": "\u21e4", 

1228 "arrowtabright": "\u21e5", 

1229 "arrowup": "\u2191", 

1230 "arrowupdn": "\u2195", 

1231 "arrowupdnbse": "\u21a8", 

1232 "arrowupdownbase": "\u21a8", 

1233 "arrowupleft": "\u2196", 

1234 "arrowupleftofdown": "\u21c5", 

1235 "arrowupright": "\u2197", 

1236 "arrowupwhite": "\u21e7", 

1237 "arrowvertex": "\uf8e6", 

1238 "asciicircum": "\u005e", 

1239 "asciicircummonospace": "\uff3e", 

1240 "asciitilde": "\u007e", 

1241 "asciitildemonospace": "\uff5e", 

1242 "ascript": "\u0251", 

1243 "ascriptturned": "\u0252", 

1244 "asmallhiragana": "\u3041", 

1245 "asmallkatakana": "\u30a1", 

1246 "asmallkatakanahalfwidth": "\uff67", 

1247 "asterisk": "\u002a", 

1248 "asteriskaltonearabic": "\u066d", 

1249 "asteriskarabic": "\u066d", 

1250 "asteriskmath": "\u2217", 

1251 "asteriskmonospace": "\uff0a", 

1252 "asterisksmall": "\ufe61", 

1253 "asterism": "\u2042", 

1254 "asuperior": "\uf6e9", 

1255 "asymptoticallyequal": "\u2243", 

1256 "at": "\u0040", 

1257 "atilde": "\u00e3", 

1258 "atmonospace": "\uff20", 

1259 "atsmall": "\ufe6b", 

1260 "aturned": "\u0250", 

1261 "aubengali": "\u0994", 

1262 "aubopomofo": "\u3120", 

1263 "audeva": "\u0914", 

1264 "augujarati": "\u0a94", 

1265 "augurmukhi": "\u0a14", 

1266 "aulengthmarkbengali": "\u09d7", 

1267 "aumatragurmukhi": "\u0a4c", 

1268 "auvowelsignbengali": "\u09cc", 

1269 "auvowelsigndeva": "\u094c", 

1270 "auvowelsigngujarati": "\u0acc", 

1271 "avagrahadeva": "\u093d", 

1272 "aybarmenian": "\u0561", 

1273 "ayin": "\u05e2", 

1274 "ayinaltonehebrew": "\ufb20", 

1275 "ayinhebrew": "\u05e2", 

1276 "b": "\u0062", 

1277 "babengali": "\u09ac", 

1278 "backslash": "\u005c", 

1279 "backslashmonospace": "\uff3c", 

1280 "badeva": "\u092c", 

1281 "bagujarati": "\u0aac", 

1282 "bagurmukhi": "\u0a2c", 

1283 "bahiragana": "\u3070", 

1284 "bahtthai": "\u0e3f", 

1285 "bakatakana": "\u30d0", 

1286 "bar": "\u007c", 

1287 "barmonospace": "\uff5c", 

1288 "bbopomofo": "\u3105", 

1289 "bcircle": "\u24d1", 

1290 "bdotaccent": "\u1e03", 

1291 "bdotbelow": "\u1e05", 

1292 "beamedsixteenthnotes": "\u266c", 

1293 "because": "\u2235", 

1294 "becyrillic": "\u0431", 

1295 "beharabic": "\u0628", 

1296 "behfinalarabic": "\ufe90", 

1297 "behinitialarabic": "\ufe91", 

1298 "behiragana": "\u3079", 

1299 "behmedialarabic": "\ufe92", 

1300 "behmeeminitialarabic": "\ufc9f", 

1301 "behmeemisolatedarabic": "\ufc08", 

1302 "behnoonfinalarabic": "\ufc6d", 

1303 "bekatakana": "\u30d9", 

1304 "benarmenian": "\u0562", 

1305 "bet": "\u05d1", 

1306 "beta": "\u03b2", 

1307 "betasymbolgreek": "\u03d0", 

1308 "betdagesh": "\ufb31", 

1309 "betdageshhebrew": "\ufb31", 

1310 "bethebrew": "\u05d1", 

1311 "betrafehebrew": "\ufb4c", 

1312 "bhabengali": "\u09ad", 

1313 "bhadeva": "\u092d", 

1314 "bhagujarati": "\u0aad", 

1315 "bhagurmukhi": "\u0a2d", 

1316 "bhook": "\u0253", 

1317 "bihiragana": "\u3073", 

1318 "bikatakana": "\u30d3", 

1319 "bilabialclick": "\u0298", 

1320 "bindigurmukhi": "\u0a02", 

1321 "birusquare": "\u3331", 

1322 "blackcircle": "\u25cf", 

1323 "blackdiamond": "\u25c6", 

1324 "blackdownpointingtriangle": "\u25bc", 

1325 "blackleftpointingpointer": "\u25c4", 

1326 "blackleftpointingtriangle": "\u25c0", 

1327 "blacklenticularbracketleft": "\u3010", 

1328 "blacklenticularbracketleftvertical": "\ufe3b", 

1329 "blacklenticularbracketright": "\u3011", 

1330 "blacklenticularbracketrightvertical": "\ufe3c", 

1331 "blacklowerlefttriangle": "\u25e3", 

1332 "blacklowerrighttriangle": "\u25e2", 

1333 "blackrectangle": "\u25ac", 

1334 "blackrightpointingpointer": "\u25ba", 

1335 "blackrightpointingtriangle": "\u25b6", 

1336 "blacksmallsquare": "\u25aa", 

1337 "blacksmilingface": "\u263b", 

1338 "blacksquare": "\u25a0", 

1339 "blackstar": "\u2605", 

1340 "blackupperlefttriangle": "\u25e4", 

1341 "blackupperrighttriangle": "\u25e5", 

1342 "blackuppointingsmalltriangle": "\u25b4", 

1343 "blackuppointingtriangle": "\u25b2", 

1344 "blank": "\u2423", 

1345 "blinebelow": "\u1e07", 

1346 "block": "\u2588", 

1347 "bmonospace": "\uff42", 

1348 "bobaimaithai": "\u0e1a", 

1349 "bohiragana": "\u307c", 

1350 "bokatakana": "\u30dc", 

1351 "bparen": "\u249d", 

1352 "bqsquare": "\u33c3", 

1353 "braceex": "\uf8f4", 

1354 "braceleft": "\u007b", 

1355 "braceleftbt": "\uf8f3", 

1356 "braceleftmid": "\uf8f2", 

1357 "braceleftmonospace": "\uff5b", 

1358 "braceleftsmall": "\ufe5b", 

1359 "bracelefttp": "\uf8f1", 

1360 "braceleftvertical": "\ufe37", 

1361 "braceright": "\u007d", 

1362 "bracerightbt": "\uf8fe", 

1363 "bracerightmid": "\uf8fd", 

1364 "bracerightmonospace": "\uff5d", 

1365 "bracerightsmall": "\ufe5c", 

1366 "bracerighttp": "\uf8fc", 

1367 "bracerightvertical": "\ufe38", 

1368 "bracketleft": "\u005b", 

1369 "bracketleftbt": "\uf8f0", 

1370 "bracketleftex": "\uf8ef", 

1371 "bracketleftmonospace": "\uff3b", 

1372 "bracketlefttp": "\uf8ee", 

1373 "bracketright": "\u005d", 

1374 "bracketrightbt": "\uf8fb", 

1375 "bracketrightex": "\uf8fa", 

1376 "bracketrightmonospace": "\uff3d", 

1377 "bracketrighttp": "\uf8f9", 

1378 "breve": "\u02d8", 

1379 "brevebelowcmb": "\u032e", 

1380 "brevecmb": "\u0306", 

1381 "breveinvertedbelowcmb": "\u032f", 

1382 "breveinvertedcmb": "\u0311", 

1383 "breveinverteddoublecmb": "\u0361", 

1384 "bridgebelowcmb": "\u032a", 

1385 "bridgeinvertedbelowcmb": "\u033a", 

1386 "brokenbar": "\u00a6", 

1387 "bstroke": "\u0180", 

1388 "bsuperior": "\uf6ea", 

1389 "btopbar": "\u0183", 

1390 "buhiragana": "\u3076", 

1391 "bukatakana": "\u30d6", 

1392 "bullet": "\u2022", 

1393 "bulletinverse": "\u25d8", 

1394 "bulletoperator": "\u2219", 

1395 "bullseye": "\u25ce", 

1396 "c": "\u0063", 

1397 "caarmenian": "\u056e", 

1398 "cabengali": "\u099a", 

1399 "cacute": "\u0107", 

1400 "cadeva": "\u091a", 

1401 "cagujarati": "\u0a9a", 

1402 "cagurmukhi": "\u0a1a", 

1403 "calsquare": "\u3388", 

1404 "candrabindubengali": "\u0981", 

1405 "candrabinducmb": "\u0310", 

1406 "candrabindudeva": "\u0901", 

1407 "candrabindugujarati": "\u0a81", 

1408 "capslock": "\u21ea", 

1409 "careof": "\u2105", 

1410 "caron": "\u02c7", 

1411 "caronbelowcmb": "\u032c", 

1412 "caroncmb": "\u030c", 

1413 "carriagereturn": "\u21b5", 

1414 "cbopomofo": "\u3118", 

1415 "ccaron": "\u010d", 

1416 "ccedilla": "\u00e7", 

1417 "ccedillaacute": "\u1e09", 

1418 "ccircle": "\u24d2", 

1419 "ccircumflex": "\u0109", 

1420 "ccurl": "\u0255", 

1421 "cdot": "\u010b", 

1422 "cdotaccent": "\u010b", 

1423 "cdsquare": "\u33c5", 

1424 "cedilla": "\u00b8", 

1425 "cedillacmb": "\u0327", 

1426 "cent": "\u00a2", 

1427 "centigrade": "\u2103", 

1428 "centinferior": "\uf6df", 

1429 "centmonospace": "\uffe0", 

1430 "centoldstyle": "\uf7a2", 

1431 "centsuperior": "\uf6e0", 

1432 "chaarmenian": "\u0579", 

1433 "chabengali": "\u099b", 

1434 "chadeva": "\u091b", 

1435 "chagujarati": "\u0a9b", 

1436 "chagurmukhi": "\u0a1b", 

1437 "chbopomofo": "\u3114", 

1438 "cheabkhasiancyrillic": "\u04bd", 

1439 "checkmark": "\u2713", 

1440 "checyrillic": "\u0447", 

1441 "chedescenderabkhasiancyrillic": "\u04bf", 

1442 "chedescendercyrillic": "\u04b7", 

1443 "chedieresiscyrillic": "\u04f5", 

1444 "cheharmenian": "\u0573", 

1445 "chekhakassiancyrillic": "\u04cc", 

1446 "cheverticalstrokecyrillic": "\u04b9", 

1447 "chi": "\u03c7", 

1448 "chieuchacirclekorean": "\u3277", 

1449 "chieuchaparenkorean": "\u3217", 

1450 "chieuchcirclekorean": "\u3269", 

1451 "chieuchkorean": "\u314a", 

1452 "chieuchparenkorean": "\u3209", 

1453 "chochangthai": "\u0e0a", 

1454 "chochanthai": "\u0e08", 

1455 "chochingthai": "\u0e09", 

1456 "chochoethai": "\u0e0c", 

1457 "chook": "\u0188", 

1458 "cieucacirclekorean": "\u3276", 

1459 "cieucaparenkorean": "\u3216", 

1460 "cieuccirclekorean": "\u3268", 

1461 "cieuckorean": "\u3148", 

1462 "cieucparenkorean": "\u3208", 

1463 "cieucuparenkorean": "\u321c", 

1464 "circle": "\u25cb", 

1465 "circlemultiply": "\u2297", 

1466 "circleot": "\u2299", 

1467 "circleplus": "\u2295", 

1468 "circlepostalmark": "\u3036", 

1469 "circlewithlefthalfblack": "\u25d0", 

1470 "circlewithrighthalfblack": "\u25d1", 

1471 "circumflex": "\u02c6", 

1472 "circumflexbelowcmb": "\u032d", 

1473 "circumflexcmb": "\u0302", 

1474 "clear": "\u2327", 

1475 "clickalveolar": "\u01c2", 

1476 "clickdental": "\u01c0", 

1477 "clicklateral": "\u01c1", 

1478 "clickretroflex": "\u01c3", 

1479 "club": "\u2663", 

1480 "clubsuitblack": "\u2663", 

1481 "clubsuitwhite": "\u2667", 

1482 "cmcubedsquare": "\u33a4", 

1483 "cmonospace": "\uff43", 

1484 "cmsquaredsquare": "\u33a0", 

1485 "coarmenian": "\u0581", 

1486 "colon": "\u003a", 

1487 "colonmonetary": "\u20a1", 

1488 "colonmonospace": "\uff1a", 

1489 "colonsign": "\u20a1", 

1490 "colonsmall": "\ufe55", 

1491 "colontriangularhalfmod": "\u02d1", 

1492 "colontriangularmod": "\u02d0", 

1493 "comma": "\u002c", 

1494 "commaabovecmb": "\u0313", 

1495 "commaaboverightcmb": "\u0315", 

1496 "commaaccent": "\uf6c3", 

1497 "commaarabic": "\u060c", 

1498 "commaarmenian": "\u055d", 

1499 "commainferior": "\uf6e1", 

1500 "commamonospace": "\uff0c", 

1501 "commareversedabovecmb": "\u0314", 

1502 "commareversedmod": "\u02bd", 

1503 "commasmall": "\ufe50", 

1504 "commasuperior": "\uf6e2", 

1505 "commaturnedabovecmb": "\u0312", 

1506 "commaturnedmod": "\u02bb", 

1507 "compass": "\u263c", 

1508 "congruent": "\u2245", 

1509 "contourintegral": "\u222e", 

1510 "control": "\u2303", 

1511 "controlACK": "\u0006", 

1512 "controlBEL": "\u0007", 

1513 "controlBS": "\u0008", 

1514 "controlCAN": "\u0018", 

1515 "controlCR": "\u000d", 

1516 "controlDC1": "\u0011", 

1517 "controlDC2": "\u0012", 

1518 "controlDC3": "\u0013", 

1519 "controlDC4": "\u0014", 

1520 "controlDEL": "\u007f", 

1521 "controlDLE": "\u0010", 

1522 "controlEM": "\u0019", 

1523 "controlENQ": "\u0005", 

1524 "controlEOT": "\u0004", 

1525 "controlESC": "\u001b", 

1526 "controlETB": "\u0017", 

1527 "controlETX": "\u0003", 

1528 "controlFF": "\u000c", 

1529 "controlFS": "\u001c", 

1530 "controlGS": "\u001d", 

1531 "controlHT": "\u0009", 

1532 "controlLF": "\u000a", 

1533 "controlNAK": "\u0015", 

1534 "controlRS": "\u001e", 

1535 "controlSI": "\u000f", 

1536 "controlSO": "\u000e", 

1537 "controlSOT": "\u0002", 

1538 "controlSTX": "\u0001", 

1539 "controlSUB": "\u001a", 

1540 "controlSYN": "\u0016", 

1541 "controlUS": "\u001f", 

1542 "controlVT": "\u000b", 

1543 "copyright": "\u00a9", 

1544 "copyrightsans": "\uf8e9", 

1545 "copyrightserif": "\uf6d9", 

1546 "cornerbracketleft": "\u300c", 

1547 "cornerbracketlefthalfwidth": "\uff62", 

1548 "cornerbracketleftvertical": "\ufe41", 

1549 "cornerbracketright": "\u300d", 

1550 "cornerbracketrighthalfwidth": "\uff63", 

1551 "cornerbracketrightvertical": "\ufe42", 

1552 "corporationsquare": "\u337f", 

1553 "cosquare": "\u33c7", 

1554 "coverkgsquare": "\u33c6", 

1555 "cparen": "\u249e", 

1556 "cruzeiro": "\u20a2", 

1557 "cstretched": "\u0297", 

1558 "curlyand": "\u22cf", 

1559 "curlyor": "\u22ce", 

1560 "currency": "\u00a4", 

1561 "cyrBreve": "\uf6d1", 

1562 "cyrFlex": "\uf6d2", 

1563 "cyrbreve": "\uf6d4", 

1564 "cyrflex": "\uf6d5", 

1565 "d": "\u0064", 

1566 "daarmenian": "\u0564", 

1567 "dabengali": "\u09a6", 

1568 "dadarabic": "\u0636", 

1569 "dadeva": "\u0926", 

1570 "dadfinalarabic": "\ufebe", 

1571 "dadinitialarabic": "\ufebf", 

1572 "dadmedialarabic": "\ufec0", 

1573 "dagesh": "\u05bc", 

1574 "dageshhebrew": "\u05bc", 

1575 "dagger": "\u2020", 

1576 "daggerdbl": "\u2021", 

1577 "dagujarati": "\u0aa6", 

1578 "dagurmukhi": "\u0a26", 

1579 "dahiragana": "\u3060", 

1580 "dakatakana": "\u30c0", 

1581 "dalarabic": "\u062f", 

1582 "dalet": "\u05d3", 

1583 "daletdagesh": "\ufb33", 

1584 "daletdageshhebrew": "\ufb33", 

1585 "dalethatafpatah": "\u05d3\u05b2", 

1586 "dalethatafpatahhebrew": "\u05d3\u05b2", 

1587 "dalethatafsegol": "\u05d3\u05b1", 

1588 "dalethatafsegolhebrew": "\u05d3\u05b1", 

1589 "dalethebrew": "\u05d3", 

1590 "dalethiriq": "\u05d3\u05b4", 

1591 "dalethiriqhebrew": "\u05d3\u05b4", 

1592 "daletholam": "\u05d3\u05b9", 

1593 "daletholamhebrew": "\u05d3\u05b9", 

1594 "daletpatah": "\u05d3\u05b7", 

1595 "daletpatahhebrew": "\u05d3\u05b7", 

1596 "daletqamats": "\u05d3\u05b8", 

1597 "daletqamatshebrew": "\u05d3\u05b8", 

1598 "daletqubuts": "\u05d3\u05bb", 

1599 "daletqubutshebrew": "\u05d3\u05bb", 

1600 "daletsegol": "\u05d3\u05b6", 

1601 "daletsegolhebrew": "\u05d3\u05b6", 

1602 "daletsheva": "\u05d3\u05b0", 

1603 "daletshevahebrew": "\u05d3\u05b0", 

1604 "dalettsere": "\u05d3\u05b5", 

1605 "dalettserehebrew": "\u05d3\u05b5", 

1606 "dalfinalarabic": "\ufeaa", 

1607 "dammaarabic": "\u064f", 

1608 "dammalowarabic": "\u064f", 

1609 "dammatanaltonearabic": "\u064c", 

1610 "dammatanarabic": "\u064c", 

1611 "danda": "\u0964", 

1612 "dargahebrew": "\u05a7", 

1613 "dargalefthebrew": "\u05a7", 

1614 "dasiapneumatacyrilliccmb": "\u0485", 

1615 "dblGrave": "\uf6d3", 

1616 "dblanglebracketleft": "\u300a", 

1617 "dblanglebracketleftvertical": "\ufe3d", 

1618 "dblanglebracketright": "\u300b", 

1619 "dblanglebracketrightvertical": "\ufe3e", 

1620 "dblarchinvertedbelowcmb": "\u032b", 

1621 "dblarrowleft": "\u21d4", 

1622 "dblarrowright": "\u21d2", 

1623 "dbldanda": "\u0965", 

1624 "dblgrave": "\uf6d6", 

1625 "dblgravecmb": "\u030f", 

1626 "dblintegral": "\u222c", 

1627 "dbllowline": "\u2017", 

1628 "dbllowlinecmb": "\u0333", 

1629 "dbloverlinecmb": "\u033f", 

1630 "dblprimemod": "\u02ba", 

1631 "dblverticalbar": "\u2016", 

1632 "dblverticallineabovecmb": "\u030e", 

1633 "dbopomofo": "\u3109", 

1634 "dbsquare": "\u33c8", 

1635 "dcaron": "\u010f", 

1636 "dcedilla": "\u1e11", 

1637 "dcircle": "\u24d3", 

1638 "dcircumflexbelow": "\u1e13", 

1639 "dcroat": "\u0111", 

1640 "ddabengali": "\u09a1", 

1641 "ddadeva": "\u0921", 

1642 "ddagujarati": "\u0aa1", 

1643 "ddagurmukhi": "\u0a21", 

1644 "ddalarabic": "\u0688", 

1645 "ddalfinalarabic": "\ufb89", 

1646 "dddhadeva": "\u095c", 

1647 "ddhabengali": "\u09a2", 

1648 "ddhadeva": "\u0922", 

1649 "ddhagujarati": "\u0aa2", 

1650 "ddhagurmukhi": "\u0a22", 

1651 "ddotaccent": "\u1e0b", 

1652 "ddotbelow": "\u1e0d", 

1653 "decimalseparatorarabic": "\u066b", 

1654 "decimalseparatorpersian": "\u066b", 

1655 "decyrillic": "\u0434", 

1656 "degree": "\u00b0", 

1657 "dehihebrew": "\u05ad", 

1658 "dehiragana": "\u3067", 

1659 "deicoptic": "\u03ef", 

1660 "dekatakana": "\u30c7", 

1661 "deleteleft": "\u232b", 

1662 "deleteright": "\u2326", 

1663 "delta": "\u03b4", 

1664 "deltaturned": "\u018d", 

1665 "denominatorminusonenumeratorbengali": "\u09f8", 

1666 "dezh": "\u02a4", 

1667 "dhabengali": "\u09a7", 

1668 "dhadeva": "\u0927", 

1669 "dhagujarati": "\u0aa7", 

1670 "dhagurmukhi": "\u0a27", 

1671 "dhook": "\u0257", 

1672 "dialytikatonos": "\u0385", 

1673 "dialytikatonoscmb": "\u0344", 

1674 "diamond": "\u2666", 

1675 "diamondsuitwhite": "\u2662", 

1676 "dieresis": "\u00a8", 

1677 "dieresisacute": "\uf6d7", 

1678 "dieresisbelowcmb": "\u0324", 

1679 "dieresiscmb": "\u0308", 

1680 "dieresisgrave": "\uf6d8", 

1681 "dieresistonos": "\u0385", 

1682 "dihiragana": "\u3062", 

1683 "dikatakana": "\u30c2", 

1684 "dittomark": "\u3003", 

1685 "divide": "\u00f7", 

1686 "divides": "\u2223", 

1687 "divisionslash": "\u2215", 

1688 "djecyrillic": "\u0452", 

1689 "dkshade": "\u2593", 

1690 "dlinebelow": "\u1e0f", 

1691 "dlsquare": "\u3397", 

1692 "dmacron": "\u0111", 

1693 "dmonospace": "\uff44", 

1694 "dnblock": "\u2584", 

1695 "dochadathai": "\u0e0e", 

1696 "dodekthai": "\u0e14", 

1697 "dohiragana": "\u3069", 

1698 "dokatakana": "\u30c9", 

1699 "dollar": "\u0024", 

1700 "dollarinferior": "\uf6e3", 

1701 "dollarmonospace": "\uff04", 

1702 "dollaroldstyle": "\uf724", 

1703 "dollarsmall": "\ufe69", 

1704 "dollarsuperior": "\uf6e4", 

1705 "dong": "\u20ab", 

1706 "dorusquare": "\u3326", 

1707 "dotaccent": "\u02d9", 

1708 "dotaccentcmb": "\u0307", 

1709 "dotbelowcmb": "\u0323", 

1710 "dotbelowcomb": "\u0323", 

1711 "dotkatakana": "\u30fb", 

1712 "dotlessi": "\u0131", 

1713 "dotlessj": "\uf6be", 

1714 "dotlessjstrokehook": "\u0284", 

1715 "dotmath": "\u22c5", 

1716 "dottedcircle": "\u25cc", 

1717 "doubleyodpatah": "\ufb1f", 

1718 "doubleyodpatahhebrew": "\ufb1f", 

1719 "downtackbelowcmb": "\u031e", 

1720 "downtackmod": "\u02d5", 

1721 "dparen": "\u249f", 

1722 "dsuperior": "\uf6eb", 

1723 "dtail": "\u0256", 

1724 "dtopbar": "\u018c", 

1725 "duhiragana": "\u3065", 

1726 "dukatakana": "\u30c5", 

1727 "dz": "\u01f3", 

1728 "dzaltone": "\u02a3", 

1729 "dzcaron": "\u01c6", 

1730 "dzcurl": "\u02a5", 

1731 "dzeabkhasiancyrillic": "\u04e1", 

1732 "dzecyrillic": "\u0455", 

1733 "dzhecyrillic": "\u045f", 

1734 "e": "\u0065", 

1735 "eacute": "\u00e9", 

1736 "earth": "\u2641", 

1737 "ebengali": "\u098f", 

1738 "ebopomofo": "\u311c", 

1739 "ebreve": "\u0115", 

1740 "ecandradeva": "\u090d", 

1741 "ecandragujarati": "\u0a8d", 

1742 "ecandravowelsigndeva": "\u0945", 

1743 "ecandravowelsigngujarati": "\u0ac5", 

1744 "ecaron": "\u011b", 

1745 "ecedillabreve": "\u1e1d", 

1746 "echarmenian": "\u0565", 

1747 "echyiwnarmenian": "\u0587", 

1748 "ecircle": "\u24d4", 

1749 "ecircumflex": "\u00ea", 

1750 "ecircumflexacute": "\u1ebf", 

1751 "ecircumflexbelow": "\u1e19", 

1752 "ecircumflexdotbelow": "\u1ec7", 

1753 "ecircumflexgrave": "\u1ec1", 

1754 "ecircumflexhookabove": "\u1ec3", 

1755 "ecircumflextilde": "\u1ec5", 

1756 "ecyrillic": "\u0454", 

1757 "edblgrave": "\u0205", 

1758 "edeva": "\u090f", 

1759 "edieresis": "\u00eb", 

1760 "edot": "\u0117", 

1761 "edotaccent": "\u0117", 

1762 "edotbelow": "\u1eb9", 

1763 "eegurmukhi": "\u0a0f", 

1764 "eematragurmukhi": "\u0a47", 

1765 "efcyrillic": "\u0444", 

1766 "egrave": "\u00e8", 

1767 "egujarati": "\u0a8f", 

1768 "eharmenian": "\u0567", 

1769 "ehbopomofo": "\u311d", 

1770 "ehiragana": "\u3048", 

1771 "ehookabove": "\u1ebb", 

1772 "eibopomofo": "\u311f", 

1773 "eight": "\u0038", 

1774 "eightarabic": "\u0668", 

1775 "eightbengali": "\u09ee", 

1776 "eightcircle": "\u2467", 

1777 "eightcircleinversesansserif": "\u2791", 

1778 "eightdeva": "\u096e", 

1779 "eighteencircle": "\u2471", 

1780 "eighteenparen": "\u2485", 

1781 "eighteenperiod": "\u2499", 

1782 "eightgujarati": "\u0aee", 

1783 "eightgurmukhi": "\u0a6e", 

1784 "eighthackarabic": "\u0668", 

1785 "eighthangzhou": "\u3028", 

1786 "eighthnotebeamed": "\u266b", 

1787 "eightideographicparen": "\u3227", 

1788 "eightinferior": "\u2088", 

1789 "eightmonospace": "\uff18", 

1790 "eightoldstyle": "\uf738", 

1791 "eightparen": "\u247b", 

1792 "eightperiod": "\u248f", 

1793 "eightpersian": "\u06f8", 

1794 "eightroman": "\u2177", 

1795 "eightsuperior": "\u2078", 

1796 "eightthai": "\u0e58", 

1797 "einvertedbreve": "\u0207", 

1798 "eiotifiedcyrillic": "\u0465", 

1799 "ekatakana": "\u30a8", 

1800 "ekatakanahalfwidth": "\uff74", 

1801 "ekonkargurmukhi": "\u0a74", 

1802 "ekorean": "\u3154", 

1803 "elcyrillic": "\u043b", 

1804 "element": "\u2208", 

1805 "elevencircle": "\u246a", 

1806 "elevenparen": "\u247e", 

1807 "elevenperiod": "\u2492", 

1808 "elevenroman": "\u217a", 

1809 "ellipsis": "\u2026", 

1810 "ellipsisvertical": "\u22ee", 

1811 "emacron": "\u0113", 

1812 "emacronacute": "\u1e17", 

1813 "emacrongrave": "\u1e15", 

1814 "emcyrillic": "\u043c", 

1815 "emdash": "\u2014", 

1816 "emdashvertical": "\ufe31", 

1817 "emonospace": "\uff45", 

1818 "emphasismarkarmenian": "\u055b", 

1819 "emptyset": "\u2205", 

1820 "enbopomofo": "\u3123", 

1821 "encyrillic": "\u043d", 

1822 "endash": "\u2013", 

1823 "endashvertical": "\ufe32", 

1824 "endescendercyrillic": "\u04a3", 

1825 "eng": "\u014b", 

1826 "engbopomofo": "\u3125", 

1827 "enghecyrillic": "\u04a5", 

1828 "enhookcyrillic": "\u04c8", 

1829 "enspace": "\u2002", 

1830 "eogonek": "\u0119", 

1831 "eokorean": "\u3153", 

1832 "eopen": "\u025b", 

1833 "eopenclosed": "\u029a", 

1834 "eopenreversed": "\u025c", 

1835 "eopenreversedclosed": "\u025e", 

1836 "eopenreversedhook": "\u025d", 

1837 "eparen": "\u24a0", 

1838 "epsilon": "\u03b5", 

1839 "epsilontonos": "\u03ad", 

1840 "equal": "\u003d", 

1841 "equalmonospace": "\uff1d", 

1842 "equalsmall": "\ufe66", 

1843 "equalsuperior": "\u207c", 

1844 "equivalence": "\u2261", 

1845 "erbopomofo": "\u3126", 

1846 "ercyrillic": "\u0440", 

1847 "ereversed": "\u0258", 

1848 "ereversedcyrillic": "\u044d", 

1849 "escyrillic": "\u0441", 

1850 "esdescendercyrillic": "\u04ab", 

1851 "esh": "\u0283", 

1852 "eshcurl": "\u0286", 

1853 "eshortdeva": "\u090e", 

1854 "eshortvowelsigndeva": "\u0946", 

1855 "eshreversedloop": "\u01aa", 

1856 "eshsquatreversed": "\u0285", 

1857 "esmallhiragana": "\u3047", 

1858 "esmallkatakana": "\u30a7", 

1859 "esmallkatakanahalfwidth": "\uff6a", 

1860 "estimated": "\u212e", 

1861 "esuperior": "\uf6ec", 

1862 "eta": "\u03b7", 

1863 "etarmenian": "\u0568", 

1864 "etatonos": "\u03ae", 

1865 "eth": "\u00f0", 

1866 "etilde": "\u1ebd", 

1867 "etildebelow": "\u1e1b", 

1868 "etnahtafoukhhebrew": "\u0591", 

1869 "etnahtafoukhlefthebrew": "\u0591", 

1870 "etnahtahebrew": "\u0591", 

1871 "etnahtalefthebrew": "\u0591", 

1872 "eturned": "\u01dd", 

1873 "eukorean": "\u3161", 

1874 "euro": "\u20ac", 

1875 "evowelsignbengali": "\u09c7", 

1876 "evowelsigndeva": "\u0947", 

1877 "evowelsigngujarati": "\u0ac7", 

1878 "exclam": "\u0021", 

1879 "exclamarmenian": "\u055c", 

1880 "exclamdbl": "\u203c", 

1881 "exclamdown": "\u00a1", 

1882 "exclamdownsmall": "\uf7a1", 

1883 "exclammonospace": "\uff01", 

1884 "exclamsmall": "\uf721", 

1885 "existential": "\u2203", 

1886 "ezh": "\u0292", 

1887 "ezhcaron": "\u01ef", 

1888 "ezhcurl": "\u0293", 

1889 "ezhreversed": "\u01b9", 

1890 "ezhtail": "\u01ba", 

1891 "f": "\u0066", 

1892 "fadeva": "\u095e", 

1893 "fagurmukhi": "\u0a5e", 

1894 "fahrenheit": "\u2109", 

1895 "fathaarabic": "\u064e", 

1896 "fathalowarabic": "\u064e", 

1897 "fathatanarabic": "\u064b", 

1898 "fbopomofo": "\u3108", 

1899 "fcircle": "\u24d5", 

1900 "fdotaccent": "\u1e1f", 

1901 "feharabic": "\u0641", 

1902 "feharmenian": "\u0586", 

1903 "fehfinalarabic": "\ufed2", 

1904 "fehinitialarabic": "\ufed3", 

1905 "fehmedialarabic": "\ufed4", 

1906 "feicoptic": "\u03e5", 

1907 "female": "\u2640", 

1908 "ff": "\ufb00", 

1909 "ffi": "\ufb03", 

1910 "ffl": "\ufb04", 

1911 "fi": "\ufb01", 

1912 "fifteencircle": "\u246e", 

1913 "fifteenparen": "\u2482", 

1914 "fifteenperiod": "\u2496", 

1915 "figuredash": "\u2012", 

1916 "filledbox": "\u25a0", 

1917 "filledrect": "\u25ac", 

1918 "finalkaf": "\u05da", 

1919 "finalkafdagesh": "\ufb3a", 

1920 "finalkafdageshhebrew": "\ufb3a", 

1921 "finalkafhebrew": "\u05da", 

1922 "finalkafqamats": "\u05da\u05b8", 

1923 "finalkafqamatshebrew": "\u05da\u05b8", 

1924 "finalkafsheva": "\u05da\u05b0", 

1925 "finalkafshevahebrew": "\u05da\u05b0", 

1926 "finalmem": "\u05dd", 

1927 "finalmemhebrew": "\u05dd", 

1928 "finalnun": "\u05df", 

1929 "finalnunhebrew": "\u05df", 

1930 "finalpe": "\u05e3", 

1931 "finalpehebrew": "\u05e3", 

1932 "finaltsadi": "\u05e5", 

1933 "finaltsadihebrew": "\u05e5", 

1934 "firsttonechinese": "\u02c9", 

1935 "fisheye": "\u25c9", 

1936 "fitacyrillic": "\u0473", 

1937 "five": "\u0035", 

1938 "fivearabic": "\u0665", 

1939 "fivebengali": "\u09eb", 

1940 "fivecircle": "\u2464", 

1941 "fivecircleinversesansserif": "\u278e", 

1942 "fivedeva": "\u096b", 

1943 "fiveeighths": "\u215d", 

1944 "fivegujarati": "\u0aeb", 

1945 "fivegurmukhi": "\u0a6b", 

1946 "fivehackarabic": "\u0665", 

1947 "fivehangzhou": "\u3025", 

1948 "fiveideographicparen": "\u3224", 

1949 "fiveinferior": "\u2085", 

1950 "fivemonospace": "\uff15", 

1951 "fiveoldstyle": "\uf735", 

1952 "fiveparen": "\u2478", 

1953 "fiveperiod": "\u248c", 

1954 "fivepersian": "\u06f5", 

1955 "fiveroman": "\u2174", 

1956 "fivesuperior": "\u2075", 

1957 "fivethai": "\u0e55", 

1958 "fl": "\ufb02", 

1959 "florin": "\u0192", 

1960 "fmonospace": "\uff46", 

1961 "fmsquare": "\u3399", 

1962 "fofanthai": "\u0e1f", 

1963 "fofathai": "\u0e1d", 

1964 "fongmanthai": "\u0e4f", 

1965 "forall": "\u2200", 

1966 "four": "\u0034", 

1967 "fourarabic": "\u0664", 

1968 "fourbengali": "\u09ea", 

1969 "fourcircle": "\u2463", 

1970 "fourcircleinversesansserif": "\u278d", 

1971 "fourdeva": "\u096a", 

1972 "fourgujarati": "\u0aea", 

1973 "fourgurmukhi": "\u0a6a", 

1974 "fourhackarabic": "\u0664", 

1975 "fourhangzhou": "\u3024", 

1976 "fourideographicparen": "\u3223", 

1977 "fourinferior": "\u2084", 

1978 "fourmonospace": "\uff14", 

1979 "fournumeratorbengali": "\u09f7", 

1980 "fouroldstyle": "\uf734", 

1981 "fourparen": "\u2477", 

1982 "fourperiod": "\u248b", 

1983 "fourpersian": "\u06f4", 

1984 "fourroman": "\u2173", 

1985 "foursuperior": "\u2074", 

1986 "fourteencircle": "\u246d", 

1987 "fourteenparen": "\u2481", 

1988 "fourteenperiod": "\u2495", 

1989 "fourthai": "\u0e54", 

1990 "fourthtonechinese": "\u02cb", 

1991 "fparen": "\u24a1", 

1992 "fraction": "\u2044", 

1993 "franc": "\u20a3", 

1994 "g": "\u0067", 

1995 "gabengali": "\u0997", 

1996 "gacute": "\u01f5", 

1997 "gadeva": "\u0917", 

1998 "gafarabic": "\u06af", 

1999 "gaffinalarabic": "\ufb93", 

2000 "gafinitialarabic": "\ufb94", 

2001 "gafmedialarabic": "\ufb95", 

2002 "gagujarati": "\u0a97", 

2003 "gagurmukhi": "\u0a17", 

2004 "gahiragana": "\u304c", 

2005 "gakatakana": "\u30ac", 

2006 "gamma": "\u03b3", 

2007 "gammalatinsmall": "\u0263", 

2008 "gammasuperior": "\u02e0", 

2009 "gangiacoptic": "\u03eb", 

2010 "gbopomofo": "\u310d", 

2011 "gbreve": "\u011f", 

2012 "gcaron": "\u01e7", 

2013 "gcedilla": "\u0123", 

2014 "gcircle": "\u24d6", 

2015 "gcircumflex": "\u011d", 

2016 "gcommaaccent": "\u0123", 

2017 "gdot": "\u0121", 

2018 "gdotaccent": "\u0121", 

2019 "gecyrillic": "\u0433", 

2020 "gehiragana": "\u3052", 

2021 "gekatakana": "\u30b2", 

2022 "geometricallyequal": "\u2251", 

2023 "gereshaccenthebrew": "\u059c", 

2024 "gereshhebrew": "\u05f3", 

2025 "gereshmuqdamhebrew": "\u059d", 

2026 "germandbls": "\u00df", 

2027 "gershayimaccenthebrew": "\u059e", 

2028 "gershayimhebrew": "\u05f4", 

2029 "getamark": "\u3013", 

2030 "ghabengali": "\u0998", 

2031 "ghadarmenian": "\u0572", 

2032 "ghadeva": "\u0918", 

2033 "ghagujarati": "\u0a98", 

2034 "ghagurmukhi": "\u0a18", 

2035 "ghainarabic": "\u063a", 

2036 "ghainfinalarabic": "\ufece", 

2037 "ghaininitialarabic": "\ufecf", 

2038 "ghainmedialarabic": "\ufed0", 

2039 "ghemiddlehookcyrillic": "\u0495", 

2040 "ghestrokecyrillic": "\u0493", 

2041 "gheupturncyrillic": "\u0491", 

2042 "ghhadeva": "\u095a", 

2043 "ghhagurmukhi": "\u0a5a", 

2044 "ghook": "\u0260", 

2045 "ghzsquare": "\u3393", 

2046 "gihiragana": "\u304e", 

2047 "gikatakana": "\u30ae", 

2048 "gimarmenian": "\u0563", 

2049 "gimel": "\u05d2", 

2050 "gimeldagesh": "\ufb32", 

2051 "gimeldageshhebrew": "\ufb32", 

2052 "gimelhebrew": "\u05d2", 

2053 "gjecyrillic": "\u0453", 

2054 "glottalinvertedstroke": "\u01be", 

2055 "glottalstop": "\u0294", 

2056 "glottalstopinverted": "\u0296", 

2057 "glottalstopmod": "\u02c0", 

2058 "glottalstopreversed": "\u0295", 

2059 "glottalstopreversedmod": "\u02c1", 

2060 "glottalstopreversedsuperior": "\u02e4", 

2061 "glottalstopstroke": "\u02a1", 

2062 "glottalstopstrokereversed": "\u02a2", 

2063 "gmacron": "\u1e21", 

2064 "gmonospace": "\uff47", 

2065 "gohiragana": "\u3054", 

2066 "gokatakana": "\u30b4", 

2067 "gparen": "\u24a2", 

2068 "gpasquare": "\u33ac", 

2069 "gradient": "\u2207", 

2070 "grave": "\u0060", 

2071 "gravebelowcmb": "\u0316", 

2072 "gravecmb": "\u0300", 

2073 "gravecomb": "\u0300", 

2074 "gravedeva": "\u0953", 

2075 "gravelowmod": "\u02ce", 

2076 "gravemonospace": "\uff40", 

2077 "gravetonecmb": "\u0340", 

2078 "greater": "\u003e", 

2079 "greaterequal": "\u2265", 

2080 "greaterequalorless": "\u22db", 

2081 "greatermonospace": "\uff1e", 

2082 "greaterorequivalent": "\u2273", 

2083 "greaterorless": "\u2277", 

2084 "greateroverequal": "\u2267", 

2085 "greatersmall": "\ufe65", 

2086 "gscript": "\u0261", 

2087 "gstroke": "\u01e5", 

2088 "guhiragana": "\u3050", 

2089 "guillemotleft": "\u00ab", 

2090 "guillemotright": "\u00bb", 

2091 "guilsinglleft": "\u2039", 

2092 "guilsinglright": "\u203a", 

2093 "gukatakana": "\u30b0", 

2094 "guramusquare": "\u3318", 

2095 "gysquare": "\u33c9", 

2096 "h": "\u0068", 

2097 "haabkhasiancyrillic": "\u04a9", 

2098 "haaltonearabic": "\u06c1", 

2099 "habengali": "\u09b9", 

2100 "hadescendercyrillic": "\u04b3", 

2101 "hadeva": "\u0939", 

2102 "hagujarati": "\u0ab9", 

2103 "hagurmukhi": "\u0a39", 

2104 "haharabic": "\u062d", 

2105 "hahfinalarabic": "\ufea2", 

2106 "hahinitialarabic": "\ufea3", 

2107 "hahiragana": "\u306f", 

2108 "hahmedialarabic": "\ufea4", 

2109 "haitusquare": "\u332a", 

2110 "hakatakana": "\u30cf", 

2111 "hakatakanahalfwidth": "\uff8a", 

2112 "halantgurmukhi": "\u0a4d", 

2113 "hamzaarabic": "\u0621", 

2114 "hamzadammaarabic": "\u0621\u064f", 

2115 "hamzadammatanarabic": "\u0621\u064c", 

2116 "hamzafathaarabic": "\u0621\u064e", 

2117 "hamzafathatanarabic": "\u0621\u064b", 

2118 "hamzalowarabic": "\u0621", 

2119 "hamzalowkasraarabic": "\u0621\u0650", 

2120 "hamzalowkasratanarabic": "\u0621\u064d", 

2121 "hamzasukunarabic": "\u0621\u0652", 

2122 "hangulfiller": "\u3164", 

2123 "hardsigncyrillic": "\u044a", 

2124 "harpoonleftbarbup": "\u21bc", 

2125 "harpoonrightbarbup": "\u21c0", 

2126 "hasquare": "\u33ca", 

2127 "hatafpatah": "\u05b2", 

2128 "hatafpatah16": "\u05b2", 

2129 "hatafpatah23": "\u05b2", 

2130 "hatafpatah2f": "\u05b2", 

2131 "hatafpatahhebrew": "\u05b2", 

2132 "hatafpatahnarrowhebrew": "\u05b2", 

2133 "hatafpatahquarterhebrew": "\u05b2", 

2134 "hatafpatahwidehebrew": "\u05b2", 

2135 "hatafqamats": "\u05b3", 

2136 "hatafqamats1b": "\u05b3", 

2137 "hatafqamats28": "\u05b3", 

2138 "hatafqamats34": "\u05b3", 

2139 "hatafqamatshebrew": "\u05b3", 

2140 "hatafqamatsnarrowhebrew": "\u05b3", 

2141 "hatafqamatsquarterhebrew": "\u05b3", 

2142 "hatafqamatswidehebrew": "\u05b3", 

2143 "hatafsegol": "\u05b1", 

2144 "hatafsegol17": "\u05b1", 

2145 "hatafsegol24": "\u05b1", 

2146 "hatafsegol30": "\u05b1", 

2147 "hatafsegolhebrew": "\u05b1", 

2148 "hatafsegolnarrowhebrew": "\u05b1", 

2149 "hatafsegolquarterhebrew": "\u05b1", 

2150 "hatafsegolwidehebrew": "\u05b1", 

2151 "hbar": "\u0127", 

2152 "hbopomofo": "\u310f", 

2153 "hbrevebelow": "\u1e2b", 

2154 "hcedilla": "\u1e29", 

2155 "hcircle": "\u24d7", 

2156 "hcircumflex": "\u0125", 

2157 "hdieresis": "\u1e27", 

2158 "hdotaccent": "\u1e23", 

2159 "hdotbelow": "\u1e25", 

2160 "he": "\u05d4", 

2161 "heart": "\u2665", 

2162 "heartsuitblack": "\u2665", 

2163 "heartsuitwhite": "\u2661", 

2164 "hedagesh": "\ufb34", 

2165 "hedageshhebrew": "\ufb34", 

2166 "hehaltonearabic": "\u06c1", 

2167 "heharabic": "\u0647", 

2168 "hehebrew": "\u05d4", 

2169 "hehfinalaltonearabic": "\ufba7", 

2170 "hehfinalalttwoarabic": "\ufeea", 

2171 "hehfinalarabic": "\ufeea", 

2172 "hehhamzaabovefinalarabic": "\ufba5", 

2173 "hehhamzaaboveisolatedarabic": "\ufba4", 

2174 "hehinitialaltonearabic": "\ufba8", 

2175 "hehinitialarabic": "\ufeeb", 

2176 "hehiragana": "\u3078", 

2177 "hehmedialaltonearabic": "\ufba9", 

2178 "hehmedialarabic": "\ufeec", 

2179 "heiseierasquare": "\u337b", 

2180 "hekatakana": "\u30d8", 

2181 "hekatakanahalfwidth": "\uff8d", 

2182 "hekutaarusquare": "\u3336", 

2183 "henghook": "\u0267", 

2184 "herutusquare": "\u3339", 

2185 "het": "\u05d7", 

2186 "hethebrew": "\u05d7", 

2187 "hhook": "\u0266", 

2188 "hhooksuperior": "\u02b1", 

2189 "hieuhacirclekorean": "\u327b", 

2190 "hieuhaparenkorean": "\u321b", 

2191 "hieuhcirclekorean": "\u326d", 

2192 "hieuhkorean": "\u314e", 

2193 "hieuhparenkorean": "\u320d", 

2194 "hihiragana": "\u3072", 

2195 "hikatakana": "\u30d2", 

2196 "hikatakanahalfwidth": "\uff8b", 

2197 "hiriq": "\u05b4", 

2198 "hiriq14": "\u05b4", 

2199 "hiriq21": "\u05b4", 

2200 "hiriq2d": "\u05b4", 

2201 "hiriqhebrew": "\u05b4", 

2202 "hiriqnarrowhebrew": "\u05b4", 

2203 "hiriqquarterhebrew": "\u05b4", 

2204 "hiriqwidehebrew": "\u05b4", 

2205 "hlinebelow": "\u1e96", 

2206 "hmonospace": "\uff48", 

2207 "hoarmenian": "\u0570", 

2208 "hohipthai": "\u0e2b", 

2209 "hohiragana": "\u307b", 

2210 "hokatakana": "\u30db", 

2211 "hokatakanahalfwidth": "\uff8e", 

2212 "holam": "\u05b9", 

2213 "holam19": "\u05b9", 

2214 "holam26": "\u05b9", 

2215 "holam32": "\u05b9", 

2216 "holamhebrew": "\u05b9", 

2217 "holamnarrowhebrew": "\u05b9", 

2218 "holamquarterhebrew": "\u05b9", 

2219 "holamwidehebrew": "\u05b9", 

2220 "honokhukthai": "\u0e2e", 

2221 "hookabovecomb": "\u0309", 

2222 "hookcmb": "\u0309", 

2223 "hookpalatalizedbelowcmb": "\u0321", 

2224 "hookretroflexbelowcmb": "\u0322", 

2225 "hoonsquare": "\u3342", 

2226 "horicoptic": "\u03e9", 

2227 "horizontalbar": "\u2015", 

2228 "horncmb": "\u031b", 

2229 "hotsprings": "\u2668", 

2230 "house": "\u2302", 

2231 "hparen": "\u24a3", 

2232 "hsuperior": "\u02b0", 

2233 "hturned": "\u0265", 

2234 "huhiragana": "\u3075", 

2235 "huiitosquare": "\u3333", 

2236 "hukatakana": "\u30d5", 

2237 "hukatakanahalfwidth": "\uff8c", 

2238 "hungarumlaut": "\u02dd", 

2239 "hungarumlautcmb": "\u030b", 

2240 "hv": "\u0195", 

2241 "hyphen": "\u002d", 

2242 "hypheninferior": "\uf6e5", 

2243 "hyphenmonospace": "\uff0d", 

2244 "hyphensmall": "\ufe63", 

2245 "hyphensuperior": "\uf6e6", 

2246 "hyphentwo": "\u2010", 

2247 "i": "\u0069", 

2248 "iacute": "\u00ed", 

2249 "iacyrillic": "\u044f", 

2250 "ibengali": "\u0987", 

2251 "ibopomofo": "\u3127", 

2252 "ibreve": "\u012d", 

2253 "icaron": "\u01d0", 

2254 "icircle": "\u24d8", 

2255 "icircumflex": "\u00ee", 

2256 "icyrillic": "\u0456", 

2257 "idblgrave": "\u0209", 

2258 "ideographearthcircle": "\u328f", 

2259 "ideographfirecircle": "\u328b", 

2260 "ideographicallianceparen": "\u323f", 

2261 "ideographiccallparen": "\u323a", 

2262 "ideographiccentrecircle": "\u32a5", 

2263 "ideographicclose": "\u3006", 

2264 "ideographiccomma": "\u3001", 

2265 "ideographiccommaleft": "\uff64", 

2266 "ideographiccongratulationparen": "\u3237", 

2267 "ideographiccorrectcircle": "\u32a3", 

2268 "ideographicearthparen": "\u322f", 

2269 "ideographicenterpriseparen": "\u323d", 

2270 "ideographicexcellentcircle": "\u329d", 

2271 "ideographicfestivalparen": "\u3240", 

2272 "ideographicfinancialcircle": "\u3296", 

2273 "ideographicfinancialparen": "\u3236", 

2274 "ideographicfireparen": "\u322b", 

2275 "ideographichaveparen": "\u3232", 

2276 "ideographichighcircle": "\u32a4", 

2277 "ideographiciterationmark": "\u3005", 

2278 "ideographiclaborcircle": "\u3298", 

2279 "ideographiclaborparen": "\u3238", 

2280 "ideographicleftcircle": "\u32a7", 

2281 "ideographiclowcircle": "\u32a6", 

2282 "ideographicmedicinecircle": "\u32a9", 

2283 "ideographicmetalparen": "\u322e", 

2284 "ideographicmoonparen": "\u322a", 

2285 "ideographicnameparen": "\u3234", 

2286 "ideographicperiod": "\u3002", 

2287 "ideographicprintcircle": "\u329e", 

2288 "ideographicreachparen": "\u3243", 

2289 "ideographicrepresentparen": "\u3239", 

2290 "ideographicresourceparen": "\u323e", 

2291 "ideographicrightcircle": "\u32a8", 

2292 "ideographicsecretcircle": "\u3299", 

2293 "ideographicselfparen": "\u3242", 

2294 "ideographicsocietyparen": "\u3233", 

2295 "ideographicspace": "\u3000", 

2296 "ideographicspecialparen": "\u3235", 

2297 "ideographicstockparen": "\u3231", 

2298 "ideographicstudyparen": "\u323b", 

2299 "ideographicsunparen": "\u3230", 

2300 "ideographicsuperviseparen": "\u323c", 

2301 "ideographicwaterparen": "\u322c", 

2302 "ideographicwoodparen": "\u322d", 

2303 "ideographiczero": "\u3007", 

2304 "ideographmetalcircle": "\u328e", 

2305 "ideographmooncircle": "\u328a", 

2306 "ideographnamecircle": "\u3294", 

2307 "ideographsuncircle": "\u3290", 

2308 "ideographwatercircle": "\u328c", 

2309 "ideographwoodcircle": "\u328d", 

2310 "ideva": "\u0907", 

2311 "idieresis": "\u00ef", 

2312 "idieresisacute": "\u1e2f", 

2313 "idieresiscyrillic": "\u04e5", 

2314 "idotbelow": "\u1ecb", 

2315 "iebrevecyrillic": "\u04d7", 

2316 "iecyrillic": "\u0435", 

2317 "ieungacirclekorean": "\u3275", 

2318 "ieungaparenkorean": "\u3215", 

2319 "ieungcirclekorean": "\u3267", 

2320 "ieungkorean": "\u3147", 

2321 "ieungparenkorean": "\u3207", 

2322 "igrave": "\u00ec", 

2323 "igujarati": "\u0a87", 

2324 "igurmukhi": "\u0a07", 

2325 "ihiragana": "\u3044", 

2326 "ihookabove": "\u1ec9", 

2327 "iibengali": "\u0988", 

2328 "iicyrillic": "\u0438", 

2329 "iideva": "\u0908", 

2330 "iigujarati": "\u0a88", 

2331 "iigurmukhi": "\u0a08", 

2332 "iimatragurmukhi": "\u0a40", 

2333 "iinvertedbreve": "\u020b", 

2334 "iishortcyrillic": "\u0439", 

2335 "iivowelsignbengali": "\u09c0", 

2336 "iivowelsigndeva": "\u0940", 

2337 "iivowelsigngujarati": "\u0ac0", 

2338 "ij": "\u0133", 

2339 "ikatakana": "\u30a4", 

2340 "ikatakanahalfwidth": "\uff72", 

2341 "ikorean": "\u3163", 

2342 "ilde": "\u02dc", 

2343 "iluyhebrew": "\u05ac", 

2344 "imacron": "\u012b", 

2345 "imacroncyrillic": "\u04e3", 

2346 "imageorapproximatelyequal": "\u2253", 

2347 "imatragurmukhi": "\u0a3f", 

2348 "imonospace": "\uff49", 

2349 "increment": "\u2206", 

2350 "infinity": "\u221e", 

2351 "iniarmenian": "\u056b", 

2352 "integral": "\u222b", 

2353 "integralbottom": "\u2321", 

2354 "integralbt": "\u2321", 

2355 "integralex": "\uf8f5", 

2356 "integraltop": "\u2320", 

2357 "integraltp": "\u2320", 

2358 "intersection": "\u2229", 

2359 "intisquare": "\u3305", 

2360 "invbullet": "\u25d8", 

2361 "invcircle": "\u25d9", 

2362 "invsmileface": "\u263b", 

2363 "iocyrillic": "\u0451", 

2364 "iogonek": "\u012f", 

2365 "iota": "\u03b9", 

2366 "iotadieresis": "\u03ca", 

2367 "iotadieresistonos": "\u0390", 

2368 "iotalatin": "\u0269", 

2369 "iotatonos": "\u03af", 

2370 "iparen": "\u24a4", 

2371 "irigurmukhi": "\u0a72", 

2372 "ismallhiragana": "\u3043", 

2373 "ismallkatakana": "\u30a3", 

2374 "ismallkatakanahalfwidth": "\uff68", 

2375 "issharbengali": "\u09fa", 

2376 "istroke": "\u0268", 

2377 "isuperior": "\uf6ed", 

2378 "iterationhiragana": "\u309d", 

2379 "iterationkatakana": "\u30fd", 

2380 "itilde": "\u0129", 

2381 "itildebelow": "\u1e2d", 

2382 "iubopomofo": "\u3129", 

2383 "iucyrillic": "\u044e", 

2384 "ivowelsignbengali": "\u09bf", 

2385 "ivowelsigndeva": "\u093f", 

2386 "ivowelsigngujarati": "\u0abf", 

2387 "izhitsacyrillic": "\u0475", 

2388 "izhitsadblgravecyrillic": "\u0477", 

2389 "j": "\u006a", 

2390 "jaarmenian": "\u0571", 

2391 "jabengali": "\u099c", 

2392 "jadeva": "\u091c", 

2393 "jagujarati": "\u0a9c", 

2394 "jagurmukhi": "\u0a1c", 

2395 "jbopomofo": "\u3110", 

2396 "jcaron": "\u01f0", 

2397 "jcircle": "\u24d9", 

2398 "jcircumflex": "\u0135", 

2399 "jcrossedtail": "\u029d", 

2400 "jdotlessstroke": "\u025f", 

2401 "jecyrillic": "\u0458", 

2402 "jeemarabic": "\u062c", 

2403 "jeemfinalarabic": "\ufe9e", 

2404 "jeeminitialarabic": "\ufe9f", 

2405 "jeemmedialarabic": "\ufea0", 

2406 "jeharabic": "\u0698", 

2407 "jehfinalarabic": "\ufb8b", 

2408 "jhabengali": "\u099d", 

2409 "jhadeva": "\u091d", 

2410 "jhagujarati": "\u0a9d", 

2411 "jhagurmukhi": "\u0a1d", 

2412 "jheharmenian": "\u057b", 

2413 "jis": "\u3004", 

2414 "jmonospace": "\uff4a", 

2415 "jparen": "\u24a5", 

2416 "jsuperior": "\u02b2", 

2417 "k": "\u006b", 

2418 "kabashkircyrillic": "\u04a1", 

2419 "kabengali": "\u0995", 

2420 "kacute": "\u1e31", 

2421 "kacyrillic": "\u043a", 

2422 "kadescendercyrillic": "\u049b", 

2423 "kadeva": "\u0915", 

2424 "kaf": "\u05db", 

2425 "kafarabic": "\u0643", 

2426 "kafdagesh": "\ufb3b", 

2427 "kafdageshhebrew": "\ufb3b", 

2428 "kaffinalarabic": "\ufeda", 

2429 "kafhebrew": "\u05db", 

2430 "kafinitialarabic": "\ufedb", 

2431 "kafmedialarabic": "\ufedc", 

2432 "kafrafehebrew": "\ufb4d", 

2433 "kagujarati": "\u0a95", 

2434 "kagurmukhi": "\u0a15", 

2435 "kahiragana": "\u304b", 

2436 "kahookcyrillic": "\u04c4", 

2437 "kakatakana": "\u30ab", 

2438 "kakatakanahalfwidth": "\uff76", 

2439 "kappa": "\u03ba", 

2440 "kappasymbolgreek": "\u03f0", 

2441 "kapyeounmieumkorean": "\u3171", 

2442 "kapyeounphieuphkorean": "\u3184", 

2443 "kapyeounpieupkorean": "\u3178", 

2444 "kapyeounssangpieupkorean": "\u3179", 

2445 "karoriisquare": "\u330d", 

2446 "kashidaautoarabic": "\u0640", 

2447 "kashidaautonosidebearingarabic": "\u0640", 

2448 "kasmallkatakana": "\u30f5", 

2449 "kasquare": "\u3384", 

2450 "kasraarabic": "\u0650", 

2451 "kasratanarabic": "\u064d", 

2452 "kastrokecyrillic": "\u049f", 

2453 "katahiraprolongmarkhalfwidth": "\uff70", 

2454 "kaverticalstrokecyrillic": "\u049d", 

2455 "kbopomofo": "\u310e", 

2456 "kcalsquare": "\u3389", 

2457 "kcaron": "\u01e9", 

2458 "kcedilla": "\u0137", 

2459 "kcircle": "\u24da", 

2460 "kcommaaccent": "\u0137", 

2461 "kdotbelow": "\u1e33", 

2462 "keharmenian": "\u0584", 

2463 "kehiragana": "\u3051", 

2464 "kekatakana": "\u30b1", 

2465 "kekatakanahalfwidth": "\uff79", 

2466 "kenarmenian": "\u056f", 

2467 "kesmallkatakana": "\u30f6", 

2468 "kgreenlandic": "\u0138", 

2469 "khabengali": "\u0996", 

2470 "khacyrillic": "\u0445", 

2471 "khadeva": "\u0916", 

2472 "khagujarati": "\u0a96", 

2473 "khagurmukhi": "\u0a16", 

2474 "khaharabic": "\u062e", 

2475 "khahfinalarabic": "\ufea6", 

2476 "khahinitialarabic": "\ufea7", 

2477 "khahmedialarabic": "\ufea8", 

2478 "kheicoptic": "\u03e7", 

2479 "khhadeva": "\u0959", 

2480 "khhagurmukhi": "\u0a59", 

2481 "khieukhacirclekorean": "\u3278", 

2482 "khieukhaparenkorean": "\u3218", 

2483 "khieukhcirclekorean": "\u326a", 

2484 "khieukhkorean": "\u314b", 

2485 "khieukhparenkorean": "\u320a", 

2486 "khokhaithai": "\u0e02", 

2487 "khokhonthai": "\u0e05", 

2488 "khokhuatthai": "\u0e03", 

2489 "khokhwaithai": "\u0e04", 

2490 "khomutthai": "\u0e5b", 

2491 "khook": "\u0199", 

2492 "khorakhangthai": "\u0e06", 

2493 "khzsquare": "\u3391", 

2494 "kihiragana": "\u304d", 

2495 "kikatakana": "\u30ad", 

2496 "kikatakanahalfwidth": "\uff77", 

2497 "kiroguramusquare": "\u3315", 

2498 "kiromeetorusquare": "\u3316", 

2499 "kirosquare": "\u3314", 

2500 "kiyeokacirclekorean": "\u326e", 

2501 "kiyeokaparenkorean": "\u320e", 

2502 "kiyeokcirclekorean": "\u3260", 

2503 "kiyeokkorean": "\u3131", 

2504 "kiyeokparenkorean": "\u3200", 

2505 "kiyeoksioskorean": "\u3133", 

2506 "kjecyrillic": "\u045c", 

2507 "klinebelow": "\u1e35", 

2508 "klsquare": "\u3398", 

2509 "kmcubedsquare": "\u33a6", 

2510 "kmonospace": "\uff4b", 

2511 "kmsquaredsquare": "\u33a2", 

2512 "kohiragana": "\u3053", 

2513 "kohmsquare": "\u33c0", 

2514 "kokaithai": "\u0e01", 

2515 "kokatakana": "\u30b3", 

2516 "kokatakanahalfwidth": "\uff7a", 

2517 "kooposquare": "\u331e", 

2518 "koppacyrillic": "\u0481", 

2519 "koreanstandardsymbol": "\u327f", 

2520 "koroniscmb": "\u0343", 

2521 "kparen": "\u24a6", 

2522 "kpasquare": "\u33aa", 

2523 "ksicyrillic": "\u046f", 

2524 "ktsquare": "\u33cf", 

2525 "kturned": "\u029e", 

2526 "kuhiragana": "\u304f", 

2527 "kukatakana": "\u30af", 

2528 "kukatakanahalfwidth": "\uff78", 

2529 "kvsquare": "\u33b8", 

2530 "kwsquare": "\u33be", 

2531 "l": "\u006c", 

2532 "labengali": "\u09b2", 

2533 "lacute": "\u013a", 

2534 "ladeva": "\u0932", 

2535 "lagujarati": "\u0ab2", 

2536 "lagurmukhi": "\u0a32", 

2537 "lakkhangyaothai": "\u0e45", 

2538 "lamaleffinalarabic": "\ufefc", 

2539 "lamalefhamzaabovefinalarabic": "\ufef8", 

2540 "lamalefhamzaaboveisolatedarabic": "\ufef7", 

2541 "lamalefhamzabelowfinalarabic": "\ufefa", 

2542 "lamalefhamzabelowisolatedarabic": "\ufef9", 

2543 "lamalefisolatedarabic": "\ufefb", 

2544 "lamalefmaddaabovefinalarabic": "\ufef6", 

2545 "lamalefmaddaaboveisolatedarabic": "\ufef5", 

2546 "lamarabic": "\u0644", 

2547 "lambda": "\u03bb", 

2548 "lambdastroke": "\u019b", 

2549 "lamed": "\u05dc", 

2550 "lameddagesh": "\ufb3c", 

2551 "lameddageshhebrew": "\ufb3c", 

2552 "lamedhebrew": "\u05dc", 

2553 "lamedholam": "\u05dc\u05b9", 

2554 "lamedholamdagesh": "\u05dc\u05b9\u05bc", 

2555 "lamedholamdageshhebrew": "\u05dc\u05b9\u05bc", 

2556 "lamedholamhebrew": "\u05dc\u05b9", 

2557 "lamfinalarabic": "\ufede", 

2558 "lamhahinitialarabic": "\ufcca", 

2559 "laminitialarabic": "\ufedf", 

2560 "lamjeeminitialarabic": "\ufcc9", 

2561 "lamkhahinitialarabic": "\ufccb", 

2562 "lamlamhehisolatedarabic": "\ufdf2", 

2563 "lammedialarabic": "\ufee0", 

2564 "lammeemhahinitialarabic": "\ufd88", 

2565 "lammeeminitialarabic": "\ufccc", 

2566 "lammeemjeeminitialarabic": "\ufedf\ufee4\ufea0", 

2567 "lammeemkhahinitialarabic": "\ufedf\ufee4\ufea8", 

2568 "largecircle": "\u25ef", 

2569 "lbar": "\u019a", 

2570 "lbelt": "\u026c", 

2571 "lbopomofo": "\u310c", 

2572 "lcaron": "\u013e", 

2573 "lcedilla": "\u013c", 

2574 "lcircle": "\u24db", 

2575 "lcircumflexbelow": "\u1e3d", 

2576 "lcommaaccent": "\u013c", 

2577 "ldot": "\u0140", 

2578 "ldotaccent": "\u0140", 

2579 "ldotbelow": "\u1e37", 

2580 "ldotbelowmacron": "\u1e39", 

2581 "leftangleabovecmb": "\u031a", 

2582 "lefttackbelowcmb": "\u0318", 

2583 "less": "\u003c", 

2584 "lessequal": "\u2264", 

2585 "lessequalorgreater": "\u22da", 

2586 "lessmonospace": "\uff1c", 

2587 "lessorequivalent": "\u2272", 

2588 "lessorgreater": "\u2276", 

2589 "lessoverequal": "\u2266", 

2590 "lesssmall": "\ufe64", 

2591 "lezh": "\u026e", 

2592 "lfblock": "\u258c", 

2593 "lhookretroflex": "\u026d", 

2594 "lira": "\u20a4", 

2595 "liwnarmenian": "\u056c", 

2596 "lj": "\u01c9", 

2597 "ljecyrillic": "\u0459", 

2598 "ll": "\uf6c0", 

2599 "lladeva": "\u0933", 

2600 "llagujarati": "\u0ab3", 

2601 "llinebelow": "\u1e3b", 

2602 "llladeva": "\u0934", 

2603 "llvocalicbengali": "\u09e1", 

2604 "llvocalicdeva": "\u0961", 

2605 "llvocalicvowelsignbengali": "\u09e3", 

2606 "llvocalicvowelsigndeva": "\u0963", 

2607 "lmiddletilde": "\u026b", 

2608 "lmonospace": "\uff4c", 

2609 "lmsquare": "\u33d0", 

2610 "lochulathai": "\u0e2c", 

2611 "logicaland": "\u2227", 

2612 "logicalnot": "\u00ac", 

2613 "logicalnotreversed": "\u2310", 

2614 "logicalor": "\u2228", 

2615 "lolingthai": "\u0e25", 

2616 "longs": "\u017f", 

2617 "lowlinecenterline": "\ufe4e", 

2618 "lowlinecmb": "\u0332", 

2619 "lowlinedashed": "\ufe4d", 

2620 "lozenge": "\u25ca", 

2621 "lparen": "\u24a7", 

2622 "lslash": "\u0142", 

2623 "lsquare": "\u2113", 

2624 "lsuperior": "\uf6ee", 

2625 "ltshade": "\u2591", 

2626 "luthai": "\u0e26", 

2627 "lvocalicbengali": "\u098c", 

2628 "lvocalicdeva": "\u090c", 

2629 "lvocalicvowelsignbengali": "\u09e2", 

2630 "lvocalicvowelsigndeva": "\u0962", 

2631 "lxsquare": "\u33d3", 

2632 "m": "\u006d", 

2633 "mabengali": "\u09ae", 

2634 "macron": "\u00af", 

2635 "macronbelowcmb": "\u0331", 

2636 "macroncmb": "\u0304", 

2637 "macronlowmod": "\u02cd", 

2638 "macronmonospace": "\uffe3", 

2639 "macute": "\u1e3f", 

2640 "madeva": "\u092e", 

2641 "magujarati": "\u0aae", 

2642 "magurmukhi": "\u0a2e", 

2643 "mahapakhhebrew": "\u05a4", 

2644 "mahapakhlefthebrew": "\u05a4", 

2645 "mahiragana": "\u307e", 

2646 "maichattawalowleftthai": "\uf895", 

2647 "maichattawalowrightthai": "\uf894", 

2648 "maichattawathai": "\u0e4b", 

2649 "maichattawaupperleftthai": "\uf893", 

2650 "maieklowleftthai": "\uf88c", 

2651 "maieklowrightthai": "\uf88b", 

2652 "maiekthai": "\u0e48", 

2653 "maiekupperleftthai": "\uf88a", 

2654 "maihanakatleftthai": "\uf884", 

2655 "maihanakatthai": "\u0e31", 

2656 "maitaikhuleftthai": "\uf889", 

2657 "maitaikhuthai": "\u0e47", 

2658 "maitholowleftthai": "\uf88f", 

2659 "maitholowrightthai": "\uf88e", 

2660 "maithothai": "\u0e49", 

2661 "maithoupperleftthai": "\uf88d", 

2662 "maitrilowleftthai": "\uf892", 

2663 "maitrilowrightthai": "\uf891", 

2664 "maitrithai": "\u0e4a", 

2665 "maitriupperleftthai": "\uf890", 

2666 "maiyamokthai": "\u0e46", 

2667 "makatakana": "\u30de", 

2668 "makatakanahalfwidth": "\uff8f", 

2669 "male": "\u2642", 

2670 "mansyonsquare": "\u3347", 

2671 "maqafhebrew": "\u05be", 

2672 "mars": "\u2642", 

2673 "masoracirclehebrew": "\u05af", 

2674 "masquare": "\u3383", 

2675 "mbopomofo": "\u3107", 

2676 "mbsquare": "\u33d4", 

2677 "mcircle": "\u24dc", 

2678 "mcubedsquare": "\u33a5", 

2679 "mdotaccent": "\u1e41", 

2680 "mdotbelow": "\u1e43", 

2681 "meemarabic": "\u0645", 

2682 "meemfinalarabic": "\ufee2", 

2683 "meeminitialarabic": "\ufee3", 

2684 "meemmedialarabic": "\ufee4", 

2685 "meemmeeminitialarabic": "\ufcd1", 

2686 "meemmeemisolatedarabic": "\ufc48", 

2687 "meetorusquare": "\u334d", 

2688 "mehiragana": "\u3081", 

2689 "meizierasquare": "\u337e", 

2690 "mekatakana": "\u30e1", 

2691 "mekatakanahalfwidth": "\uff92", 

2692 "mem": "\u05de", 

2693 "memdagesh": "\ufb3e", 

2694 "memdageshhebrew": "\ufb3e", 

2695 "memhebrew": "\u05de", 

2696 "menarmenian": "\u0574", 

2697 "merkhahebrew": "\u05a5", 

2698 "merkhakefulahebrew": "\u05a6", 

2699 "merkhakefulalefthebrew": "\u05a6", 

2700 "merkhalefthebrew": "\u05a5", 

2701 "mhook": "\u0271", 

2702 "mhzsquare": "\u3392", 

2703 "middledotkatakanahalfwidth": "\uff65", 

2704 "middot": "\u00b7", 

2705 "mieumacirclekorean": "\u3272", 

2706 "mieumaparenkorean": "\u3212", 

2707 "mieumcirclekorean": "\u3264", 

2708 "mieumkorean": "\u3141", 

2709 "mieumpansioskorean": "\u3170", 

2710 "mieumparenkorean": "\u3204", 

2711 "mieumpieupkorean": "\u316e", 

2712 "mieumsioskorean": "\u316f", 

2713 "mihiragana": "\u307f", 

2714 "mikatakana": "\u30df", 

2715 "mikatakanahalfwidth": "\uff90", 

2716 "minus": "\u2212", 

2717 "minusbelowcmb": "\u0320", 

2718 "minuscircle": "\u2296", 

2719 "minusmod": "\u02d7", 

2720 "minusplus": "\u2213", 

2721 "minute": "\u2032", 

2722 "miribaarusquare": "\u334a", 

2723 "mirisquare": "\u3349", 

2724 "mlonglegturned": "\u0270", 

2725 "mlsquare": "\u3396", 

2726 "mmcubedsquare": "\u33a3", 

2727 "mmonospace": "\uff4d", 

2728 "mmsquaredsquare": "\u339f", 

2729 "mohiragana": "\u3082", 

2730 "mohmsquare": "\u33c1", 

2731 "mokatakana": "\u30e2", 

2732 "mokatakanahalfwidth": "\uff93", 

2733 "molsquare": "\u33d6", 

2734 "momathai": "\u0e21", 

2735 "moverssquare": "\u33a7", 

2736 "moverssquaredsquare": "\u33a8", 

2737 "mparen": "\u24a8", 

2738 "mpasquare": "\u33ab", 

2739 "mssquare": "\u33b3", 

2740 "msuperior": "\uf6ef", 

2741 "mturned": "\u026f", 

2742 "mu": "\u00b5", 

2743 "mu1": "\u00b5", 

2744 "muasquare": "\u3382", 

2745 "muchgreater": "\u226b", 

2746 "muchless": "\u226a", 

2747 "mufsquare": "\u338c", 

2748 "mugreek": "\u03bc", 

2749 "mugsquare": "\u338d", 

2750 "muhiragana": "\u3080", 

2751 "mukatakana": "\u30e0", 

2752 "mukatakanahalfwidth": "\uff91", 

2753 "mulsquare": "\u3395", 

2754 "multiply": "\u00d7", 

2755 "mumsquare": "\u339b", 

2756 "munahhebrew": "\u05a3", 

2757 "munahlefthebrew": "\u05a3", 

2758 "musicalnote": "\u266a", 

2759 "musicalnotedbl": "\u266b", 

2760 "musicflatsign": "\u266d", 

2761 "musicsharpsign": "\u266f", 

2762 "mussquare": "\u33b2", 

2763 "muvsquare": "\u33b6", 

2764 "muwsquare": "\u33bc", 

2765 "mvmegasquare": "\u33b9", 

2766 "mvsquare": "\u33b7", 

2767 "mwmegasquare": "\u33bf", 

2768 "mwsquare": "\u33bd", 

2769 "n": "\u006e", 

2770 "nabengali": "\u09a8", 

2771 "nabla": "\u2207", 

2772 "nacute": "\u0144", 

2773 "nadeva": "\u0928", 

2774 "nagujarati": "\u0aa8", 

2775 "nagurmukhi": "\u0a28", 

2776 "nahiragana": "\u306a", 

2777 "nakatakana": "\u30ca", 

2778 "nakatakanahalfwidth": "\uff85", 

2779 "napostrophe": "\u0149", 

2780 "nasquare": "\u3381", 

2781 "nbopomofo": "\u310b", 

2782 "nbspace": "\u00a0", 

2783 "ncaron": "\u0148", 

2784 "ncedilla": "\u0146", 

2785 "ncircle": "\u24dd", 

2786 "ncircumflexbelow": "\u1e4b", 

2787 "ncommaaccent": "\u0146", 

2788 "ndotaccent": "\u1e45", 

2789 "ndotbelow": "\u1e47", 

2790 "nehiragana": "\u306d", 

2791 "nekatakana": "\u30cd", 

2792 "nekatakanahalfwidth": "\uff88", 

2793 "newsheqelsign": "\u20aa", 

2794 "nfsquare": "\u338b", 

2795 "ngabengali": "\u0999", 

2796 "ngadeva": "\u0919", 

2797 "ngagujarati": "\u0a99", 

2798 "ngagurmukhi": "\u0a19", 

2799 "ngonguthai": "\u0e07", 

2800 "nhiragana": "\u3093", 

2801 "nhookleft": "\u0272", 

2802 "nhookretroflex": "\u0273", 

2803 "nieunacirclekorean": "\u326f", 

2804 "nieunaparenkorean": "\u320f", 

2805 "nieuncieuckorean": "\u3135", 

2806 "nieuncirclekorean": "\u3261", 

2807 "nieunhieuhkorean": "\u3136", 

2808 "nieunkorean": "\u3134", 

2809 "nieunpansioskorean": "\u3168", 

2810 "nieunparenkorean": "\u3201", 

2811 "nieunsioskorean": "\u3167", 

2812 "nieuntikeutkorean": "\u3166", 

2813 "nihiragana": "\u306b", 

2814 "nikatakana": "\u30cb", 

2815 "nikatakanahalfwidth": "\uff86", 

2816 "nikhahitleftthai": "\uf899", 

2817 "nikhahitthai": "\u0e4d", 

2818 "nine": "\u0039", 

2819 "ninearabic": "\u0669", 

2820 "ninebengali": "\u09ef", 

2821 "ninecircle": "\u2468", 

2822 "ninecircleinversesansserif": "\u2792", 

2823 "ninedeva": "\u096f", 

2824 "ninegujarati": "\u0aef", 

2825 "ninegurmukhi": "\u0a6f", 

2826 "ninehackarabic": "\u0669", 

2827 "ninehangzhou": "\u3029", 

2828 "nineideographicparen": "\u3228", 

2829 "nineinferior": "\u2089", 

2830 "ninemonospace": "\uff19", 

2831 "nineoldstyle": "\uf739", 

2832 "nineparen": "\u247c", 

2833 "nineperiod": "\u2490", 

2834 "ninepersian": "\u06f9", 

2835 "nineroman": "\u2178", 

2836 "ninesuperior": "\u2079", 

2837 "nineteencircle": "\u2472", 

2838 "nineteenparen": "\u2486", 

2839 "nineteenperiod": "\u249a", 

2840 "ninethai": "\u0e59", 

2841 "nj": "\u01cc", 

2842 "njecyrillic": "\u045a", 

2843 "nkatakana": "\u30f3", 

2844 "nkatakanahalfwidth": "\uff9d", 

2845 "nlegrightlong": "\u019e", 

2846 "nlinebelow": "\u1e49", 

2847 "nmonospace": "\uff4e", 

2848 "nmsquare": "\u339a", 

2849 "nnabengali": "\u09a3", 

2850 "nnadeva": "\u0923", 

2851 "nnagujarati": "\u0aa3", 

2852 "nnagurmukhi": "\u0a23", 

2853 "nnnadeva": "\u0929", 

2854 "nohiragana": "\u306e", 

2855 "nokatakana": "\u30ce", 

2856 "nokatakanahalfwidth": "\uff89", 

2857 "nonbreakingspace": "\u00a0", 

2858 "nonenthai": "\u0e13", 

2859 "nonuthai": "\u0e19", 

2860 "noonarabic": "\u0646", 

2861 "noonfinalarabic": "\ufee6", 

2862 "noonghunnaarabic": "\u06ba", 

2863 "noonghunnafinalarabic": "\ufb9f", 

2864 "noonhehinitialarabic": "\ufee7\ufeec", 

2865 "nooninitialarabic": "\ufee7", 

2866 "noonjeeminitialarabic": "\ufcd2", 

2867 "noonjeemisolatedarabic": "\ufc4b", 

2868 "noonmedialarabic": "\ufee8", 

2869 "noonmeeminitialarabic": "\ufcd5", 

2870 "noonmeemisolatedarabic": "\ufc4e", 

2871 "noonnoonfinalarabic": "\ufc8d", 

2872 "notcontains": "\u220c", 

2873 "notelement": "\u2209", 

2874 "notelementof": "\u2209", 

2875 "notequal": "\u2260", 

2876 "notgreater": "\u226f", 

2877 "notgreaternorequal": "\u2271", 

2878 "notgreaternorless": "\u2279", 

2879 "notidentical": "\u2262", 

2880 "notless": "\u226e", 

2881 "notlessnorequal": "\u2270", 

2882 "notparallel": "\u2226", 

2883 "notprecedes": "\u2280", 

2884 "notsubset": "\u2284", 

2885 "notsucceeds": "\u2281", 

2886 "notsuperset": "\u2285", 

2887 "nowarmenian": "\u0576", 

2888 "nparen": "\u24a9", 

2889 "nssquare": "\u33b1", 

2890 "nsuperior": "\u207f", 

2891 "ntilde": "\u00f1", 

2892 "nu": "\u03bd", 

2893 "nuhiragana": "\u306c", 

2894 "nukatakana": "\u30cc", 

2895 "nukatakanahalfwidth": "\uff87", 

2896 "nuktabengali": "\u09bc", 

2897 "nuktadeva": "\u093c", 

2898 "nuktagujarati": "\u0abc", 

2899 "nuktagurmukhi": "\u0a3c", 

2900 "numbersign": "\u0023", 

2901 "numbersignmonospace": "\uff03", 

2902 "numbersignsmall": "\ufe5f", 

2903 "numeralsigngreek": "\u0374", 

2904 "numeralsignlowergreek": "\u0375", 

2905 "numero": "\u2116", 

2906 "nun": "\u05e0", 

2907 "nundagesh": "\ufb40", 

2908 "nundageshhebrew": "\ufb40", 

2909 "nunhebrew": "\u05e0", 

2910 "nvsquare": "\u33b5", 

2911 "nwsquare": "\u33bb", 

2912 "nyabengali": "\u099e", 

2913 "nyadeva": "\u091e", 

2914 "nyagujarati": "\u0a9e", 

2915 "nyagurmukhi": "\u0a1e", 

2916 "o": "\u006f", 

2917 "oacute": "\u00f3", 

2918 "oangthai": "\u0e2d", 

2919 "obarred": "\u0275", 

2920 "obarredcyrillic": "\u04e9", 

2921 "obarreddieresiscyrillic": "\u04eb", 

2922 "obengali": "\u0993", 

2923 "obopomofo": "\u311b", 

2924 "obreve": "\u014f", 

2925 "ocandradeva": "\u0911", 

2926 "ocandragujarati": "\u0a91", 

2927 "ocandravowelsigndeva": "\u0949", 

2928 "ocandravowelsigngujarati": "\u0ac9", 

2929 "ocaron": "\u01d2", 

2930 "ocircle": "\u24de", 

2931 "ocircumflex": "\u00f4", 

2932 "ocircumflexacute": "\u1ed1", 

2933 "ocircumflexdotbelow": "\u1ed9", 

2934 "ocircumflexgrave": "\u1ed3", 

2935 "ocircumflexhookabove": "\u1ed5", 

2936 "ocircumflextilde": "\u1ed7", 

2937 "ocyrillic": "\u043e", 

2938 "odblacute": "\u0151", 

2939 "odblgrave": "\u020d", 

2940 "odeva": "\u0913", 

2941 "odieresis": "\u00f6", 

2942 "odieresiscyrillic": "\u04e7", 

2943 "odotbelow": "\u1ecd", 

2944 "oe": "\u0153", 

2945 "oekorean": "\u315a", 

2946 "ogonek": "\u02db", 

2947 "ogonekcmb": "\u0328", 

2948 "ograve": "\u00f2", 

2949 "ogujarati": "\u0a93", 

2950 "oharmenian": "\u0585", 

2951 "ohiragana": "\u304a", 

2952 "ohookabove": "\u1ecf", 

2953 "ohorn": "\u01a1", 

2954 "ohornacute": "\u1edb", 

2955 "ohorndotbelow": "\u1ee3", 

2956 "ohorngrave": "\u1edd", 

2957 "ohornhookabove": "\u1edf", 

2958 "ohorntilde": "\u1ee1", 

2959 "ohungarumlaut": "\u0151", 

2960 "oi": "\u01a3", 

2961 "oinvertedbreve": "\u020f", 

2962 "okatakana": "\u30aa", 

2963 "okatakanahalfwidth": "\uff75", 

2964 "okorean": "\u3157", 

2965 "olehebrew": "\u05ab", 

2966 "omacron": "\u014d", 

2967 "omacronacute": "\u1e53", 

2968 "omacrongrave": "\u1e51", 

2969 "omdeva": "\u0950", 

2970 "omega": "\u03c9", 

2971 "omega1": "\u03d6", 

2972 "omegacyrillic": "\u0461", 

2973 "omegalatinclosed": "\u0277", 

2974 "omegaroundcyrillic": "\u047b", 

2975 "omegatitlocyrillic": "\u047d", 

2976 "omegatonos": "\u03ce", 

2977 "omgujarati": "\u0ad0", 

2978 "omicron": "\u03bf", 

2979 "omicrontonos": "\u03cc", 

2980 "omonospace": "\uff4f", 

2981 "one": "\u0031", 

2982 "onearabic": "\u0661", 

2983 "onebengali": "\u09e7", 

2984 "onecircle": "\u2460", 

2985 "onecircleinversesansserif": "\u278a", 

2986 "onedeva": "\u0967", 

2987 "onedotenleader": "\u2024", 

2988 "oneeighth": "\u215b", 

2989 "onefitted": "\uf6dc", 

2990 "onegujarati": "\u0ae7", 

2991 "onegurmukhi": "\u0a67", 

2992 "onehackarabic": "\u0661", 

2993 "onehalf": "\u00bd", 

2994 "onehangzhou": "\u3021", 

2995 "oneideographicparen": "\u3220", 

2996 "oneinferior": "\u2081", 

2997 "onemonospace": "\uff11", 

2998 "onenumeratorbengali": "\u09f4", 

2999 "oneoldstyle": "\uf731", 

3000 "oneparen": "\u2474", 

3001 "oneperiod": "\u2488", 

3002 "onepersian": "\u06f1", 

3003 "onequarter": "\u00bc", 

3004 "oneroman": "\u2170", 

3005 "onesuperior": "\u00b9", 

3006 "onethai": "\u0e51", 

3007 "onethird": "\u2153", 

3008 "oogonek": "\u01eb", 

3009 "oogonekmacron": "\u01ed", 

3010 "oogurmukhi": "\u0a13", 

3011 "oomatragurmukhi": "\u0a4b", 

3012 "oopen": "\u0254", 

3013 "oparen": "\u24aa", 

3014 "openbullet": "\u25e6", 

3015 "option": "\u2325", 

3016 "ordfeminine": "\u00aa", 

3017 "ordmasculine": "\u00ba", 

3018 "orthogonal": "\u221f", 

3019 "oshortdeva": "\u0912", 

3020 "oshortvowelsigndeva": "\u094a", 

3021 "oslash": "\u00f8", 

3022 "oslashacute": "\u01ff", 

3023 "osmallhiragana": "\u3049", 

3024 "osmallkatakana": "\u30a9", 

3025 "osmallkatakanahalfwidth": "\uff6b", 

3026 "ostrokeacute": "\u01ff", 

3027 "osuperior": "\uf6f0", 

3028 "otcyrillic": "\u047f", 

3029 "otilde": "\u00f5", 

3030 "otildeacute": "\u1e4d", 

3031 "otildedieresis": "\u1e4f", 

3032 "oubopomofo": "\u3121", 

3033 "overline": "\u203e", 

3034 "overlinecenterline": "\ufe4a", 

3035 "overlinecmb": "\u0305", 

3036 "overlinedashed": "\ufe49", 

3037 "overlinedblwavy": "\ufe4c", 

3038 "overlinewavy": "\ufe4b", 

3039 "overscore": "\u00af", 

3040 "ovowelsignbengali": "\u09cb", 

3041 "ovowelsigndeva": "\u094b", 

3042 "ovowelsigngujarati": "\u0acb", 

3043 "p": "\u0070", 

3044 "paampssquare": "\u3380", 

3045 "paasentosquare": "\u332b", 

3046 "pabengali": "\u09aa", 

3047 "pacute": "\u1e55", 

3048 "padeva": "\u092a", 

3049 "pagedown": "\u21df", 

3050 "pageup": "\u21de", 

3051 "pagujarati": "\u0aaa", 

3052 "pagurmukhi": "\u0a2a", 

3053 "pahiragana": "\u3071", 

3054 "paiyannoithai": "\u0e2f", 

3055 "pakatakana": "\u30d1", 

3056 "palatalizationcyrilliccmb": "\u0484", 

3057 "palochkacyrillic": "\u04c0", 

3058 "pansioskorean": "\u317f", 

3059 "paragraph": "\u00b6", 

3060 "parallel": "\u2225", 

3061 "parenleft": "\u0028", 

3062 "parenleftaltonearabic": "\ufd3e", 

3063 "parenleftbt": "\uf8ed", 

3064 "parenleftex": "\uf8ec", 

3065 "parenleftinferior": "\u208d", 

3066 "parenleftmonospace": "\uff08", 

3067 "parenleftsmall": "\ufe59", 

3068 "parenleftsuperior": "\u207d", 

3069 "parenlefttp": "\uf8eb", 

3070 "parenleftvertical": "\ufe35", 

3071 "parenright": "\u0029", 

3072 "parenrightaltonearabic": "\ufd3f", 

3073 "parenrightbt": "\uf8f8", 

3074 "parenrightex": "\uf8f7", 

3075 "parenrightinferior": "\u208e", 

3076 "parenrightmonospace": "\uff09", 

3077 "parenrightsmall": "\ufe5a", 

3078 "parenrightsuperior": "\u207e", 

3079 "parenrighttp": "\uf8f6", 

3080 "parenrightvertical": "\ufe36", 

3081 "partialdiff": "\u2202", 

3082 "paseqhebrew": "\u05c0", 

3083 "pashtahebrew": "\u0599", 

3084 "pasquare": "\u33a9", 

3085 "patah": "\u05b7", 

3086 "patah11": "\u05b7", 

3087 "patah1d": "\u05b7", 

3088 "patah2a": "\u05b7", 

3089 "patahhebrew": "\u05b7", 

3090 "patahnarrowhebrew": "\u05b7", 

3091 "patahquarterhebrew": "\u05b7", 

3092 "patahwidehebrew": "\u05b7", 

3093 "pazerhebrew": "\u05a1", 

3094 "pbopomofo": "\u3106", 

3095 "pcircle": "\u24df", 

3096 "pdotaccent": "\u1e57", 

3097 "pe": "\u05e4", 

3098 "pecyrillic": "\u043f", 

3099 "pedagesh": "\ufb44", 

3100 "pedageshhebrew": "\ufb44", 

3101 "peezisquare": "\u333b", 

3102 "pefinaldageshhebrew": "\ufb43", 

3103 "peharabic": "\u067e", 

3104 "peharmenian": "\u057a", 

3105 "pehebrew": "\u05e4", 

3106 "pehfinalarabic": "\ufb57", 

3107 "pehinitialarabic": "\ufb58", 

3108 "pehiragana": "\u307a", 

3109 "pehmedialarabic": "\ufb59", 

3110 "pekatakana": "\u30da", 

3111 "pemiddlehookcyrillic": "\u04a7", 

3112 "perafehebrew": "\ufb4e", 

3113 "percent": "\u0025", 

3114 "percentarabic": "\u066a", 

3115 "percentmonospace": "\uff05", 

3116 "percentsmall": "\ufe6a", 

3117 "period": "\u002e", 

3118 "periodarmenian": "\u0589", 

3119 "periodcentered": "\u00b7", 

3120 "periodhalfwidth": "\uff61", 

3121 "periodinferior": "\uf6e7", 

3122 "periodmonospace": "\uff0e", 

3123 "periodsmall": "\ufe52", 

3124 "periodsuperior": "\uf6e8", 

3125 "perispomenigreekcmb": "\u0342", 

3126 "perpendicular": "\u22a5", 

3127 "perthousand": "\u2030", 

3128 "peseta": "\u20a7", 

3129 "pfsquare": "\u338a", 

3130 "phabengali": "\u09ab", 

3131 "phadeva": "\u092b", 

3132 "phagujarati": "\u0aab", 

3133 "phagurmukhi": "\u0a2b", 

3134 "phi": "\u03c6", 

3135 "phi1": "\u03d5", 

3136 "phieuphacirclekorean": "\u327a", 

3137 "phieuphaparenkorean": "\u321a", 

3138 "phieuphcirclekorean": "\u326c", 

3139 "phieuphkorean": "\u314d", 

3140 "phieuphparenkorean": "\u320c", 

3141 "philatin": "\u0278", 

3142 "phinthuthai": "\u0e3a", 

3143 "phisymbolgreek": "\u03d5", 

3144 "phook": "\u01a5", 

3145 "phophanthai": "\u0e1e", 

3146 "phophungthai": "\u0e1c", 

3147 "phosamphaothai": "\u0e20", 

3148 "pi": "\u03c0", 

3149 "pieupacirclekorean": "\u3273", 

3150 "pieupaparenkorean": "\u3213", 

3151 "pieupcieuckorean": "\u3176", 

3152 "pieupcirclekorean": "\u3265", 

3153 "pieupkiyeokkorean": "\u3172", 

3154 "pieupkorean": "\u3142", 

3155 "pieupparenkorean": "\u3205", 

3156 "pieupsioskiyeokkorean": "\u3174", 

3157 "pieupsioskorean": "\u3144", 

3158 "pieupsiostikeutkorean": "\u3175", 

3159 "pieupthieuthkorean": "\u3177", 

3160 "pieuptikeutkorean": "\u3173", 

3161 "pihiragana": "\u3074", 

3162 "pikatakana": "\u30d4", 

3163 "pisymbolgreek": "\u03d6", 

3164 "piwrarmenian": "\u0583", 

3165 "plus": "\u002b", 

3166 "plusbelowcmb": "\u031f", 

3167 "pluscircle": "\u2295", 

3168 "plusminus": "\u00b1", 

3169 "plusmod": "\u02d6", 

3170 "plusmonospace": "\uff0b", 

3171 "plussmall": "\ufe62", 

3172 "plussuperior": "\u207a", 

3173 "pmonospace": "\uff50", 

3174 "pmsquare": "\u33d8", 

3175 "pohiragana": "\u307d", 

3176 "pointingindexdownwhite": "\u261f", 

3177 "pointingindexleftwhite": "\u261c", 

3178 "pointingindexrightwhite": "\u261e", 

3179 "pointingindexupwhite": "\u261d", 

3180 "pokatakana": "\u30dd", 

3181 "poplathai": "\u0e1b", 

3182 "postalmark": "\u3012", 

3183 "postalmarkface": "\u3020", 

3184 "pparen": "\u24ab", 

3185 "precedes": "\u227a", 

3186 "prescription": "\u211e", 

3187 "primemod": "\u02b9", 

3188 "primereversed": "\u2035", 

3189 "product": "\u220f", 

3190 "projective": "\u2305", 

3191 "prolongedkana": "\u30fc", 

3192 "propellor": "\u2318", 

3193 "propersubset": "\u2282", 

3194 "propersuperset": "\u2283", 

3195 "proportion": "\u2237", 

3196 "proportional": "\u221d", 

3197 "psi": "\u03c8", 

3198 "psicyrillic": "\u0471", 

3199 "psilipneumatacyrilliccmb": "\u0486", 

3200 "pssquare": "\u33b0", 

3201 "puhiragana": "\u3077", 

3202 "pukatakana": "\u30d7", 

3203 "pvsquare": "\u33b4", 

3204 "pwsquare": "\u33ba", 

3205 "q": "\u0071", 

3206 "qadeva": "\u0958", 

3207 "qadmahebrew": "\u05a8", 

3208 "qafarabic": "\u0642", 

3209 "qaffinalarabic": "\ufed6", 

3210 "qafinitialarabic": "\ufed7", 

3211 "qafmedialarabic": "\ufed8", 

3212 "qamats": "\u05b8", 

3213 "qamats10": "\u05b8", 

3214 "qamats1a": "\u05b8", 

3215 "qamats1c": "\u05b8", 

3216 "qamats27": "\u05b8", 

3217 "qamats29": "\u05b8", 

3218 "qamats33": "\u05b8", 

3219 "qamatsde": "\u05b8", 

3220 "qamatshebrew": "\u05b8", 

3221 "qamatsnarrowhebrew": "\u05b8", 

3222 "qamatsqatanhebrew": "\u05b8", 

3223 "qamatsqatannarrowhebrew": "\u05b8", 

3224 "qamatsqatanquarterhebrew": "\u05b8", 

3225 "qamatsqatanwidehebrew": "\u05b8", 

3226 "qamatsquarterhebrew": "\u05b8", 

3227 "qamatswidehebrew": "\u05b8", 

3228 "qarneyparahebrew": "\u059f", 

3229 "qbopomofo": "\u3111", 

3230 "qcircle": "\u24e0", 

3231 "qhook": "\u02a0", 

3232 "qmonospace": "\uff51", 

3233 "qof": "\u05e7", 

3234 "qofdagesh": "\ufb47", 

3235 "qofdageshhebrew": "\ufb47", 

3236 "qofhatafpatah": "\u05e7\u05b2", 

3237 "qofhatafpatahhebrew": "\u05e7\u05b2", 

3238 "qofhatafsegol": "\u05e7\u05b1", 

3239 "qofhatafsegolhebrew": "\u05e7\u05b1", 

3240 "qofhebrew": "\u05e7", 

3241 "qofhiriq": "\u05e7\u05b4", 

3242 "qofhiriqhebrew": "\u05e7\u05b4", 

3243 "qofholam": "\u05e7\u05b9", 

3244 "qofholamhebrew": "\u05e7\u05b9", 

3245 "qofpatah": "\u05e7\u05b7", 

3246 "qofpatahhebrew": "\u05e7\u05b7", 

3247 "qofqamats": "\u05e7\u05b8", 

3248 "qofqamatshebrew": "\u05e7\u05b8", 

3249 "qofqubuts": "\u05e7\u05bb", 

3250 "qofqubutshebrew": "\u05e7\u05bb", 

3251 "qofsegol": "\u05e7\u05b6", 

3252 "qofsegolhebrew": "\u05e7\u05b6", 

3253 "qofsheva": "\u05e7\u05b0", 

3254 "qofshevahebrew": "\u05e7\u05b0", 

3255 "qoftsere": "\u05e7\u05b5", 

3256 "qoftserehebrew": "\u05e7\u05b5", 

3257 "qparen": "\u24ac", 

3258 "quarternote": "\u2669", 

3259 "qubuts": "\u05bb", 

3260 "qubuts18": "\u05bb", 

3261 "qubuts25": "\u05bb", 

3262 "qubuts31": "\u05bb", 

3263 "qubutshebrew": "\u05bb", 

3264 "qubutsnarrowhebrew": "\u05bb", 

3265 "qubutsquarterhebrew": "\u05bb", 

3266 "qubutswidehebrew": "\u05bb", 

3267 "question": "\u003f", 

3268 "questionarabic": "\u061f", 

3269 "questionarmenian": "\u055e", 

3270 "questiondown": "\u00bf", 

3271 "questiondownsmall": "\uf7bf", 

3272 "questiongreek": "\u037e", 

3273 "questionmonospace": "\uff1f", 

3274 "questionsmall": "\uf73f", 

3275 "quotedbl": "\u0022", 

3276 "quotedblbase": "\u201e", 

3277 "quotedblleft": "\u201c", 

3278 "quotedblmonospace": "\uff02", 

3279 "quotedblprime": "\u301e", 

3280 "quotedblprimereversed": "\u301d", 

3281 "quotedblright": "\u201d", 

3282 "quoteleft": "\u2018", 

3283 "quoteleftreversed": "\u201b", 

3284 "quotereversed": "\u201b", 

3285 "quoteright": "\u2019", 

3286 "quoterightn": "\u0149", 

3287 "quotesinglbase": "\u201a", 

3288 "quotesingle": "\u0027", 

3289 "quotesinglemonospace": "\uff07", 

3290 "r": "\u0072", 

3291 "raarmenian": "\u057c", 

3292 "rabengali": "\u09b0", 

3293 "racute": "\u0155", 

3294 "radeva": "\u0930", 

3295 "radical": "\u221a", 

3296 "radicalex": "\uf8e5", 

3297 "radoverssquare": "\u33ae", 

3298 "radoverssquaredsquare": "\u33af", 

3299 "radsquare": "\u33ad", 

3300 "rafe": "\u05bf", 

3301 "rafehebrew": "\u05bf", 

3302 "ragujarati": "\u0ab0", 

3303 "ragurmukhi": "\u0a30", 

3304 "rahiragana": "\u3089", 

3305 "rakatakana": "\u30e9", 

3306 "rakatakanahalfwidth": "\uff97", 

3307 "ralowerdiagonalbengali": "\u09f1", 

3308 "ramiddlediagonalbengali": "\u09f0", 

3309 "ramshorn": "\u0264", 

3310 "ratio": "\u2236", 

3311 "rbopomofo": "\u3116", 

3312 "rcaron": "\u0159", 

3313 "rcedilla": "\u0157", 

3314 "rcircle": "\u24e1", 

3315 "rcommaaccent": "\u0157", 

3316 "rdblgrave": "\u0211", 

3317 "rdotaccent": "\u1e59", 

3318 "rdotbelow": "\u1e5b", 

3319 "rdotbelowmacron": "\u1e5d", 

3320 "referencemark": "\u203b", 

3321 "reflexsubset": "\u2286", 

3322 "reflexsuperset": "\u2287", 

3323 "registered": "\u00ae", 

3324 "registersans": "\uf8e8", 

3325 "registerserif": "\uf6da", 

3326 "reharabic": "\u0631", 

3327 "reharmenian": "\u0580", 

3328 "rehfinalarabic": "\ufeae", 

3329 "rehiragana": "\u308c", 

3330 "rehyehaleflamarabic": "\u0631\ufef3\ufe8e\u0644", 

3331 "rekatakana": "\u30ec", 

3332 "rekatakanahalfwidth": "\uff9a", 

3333 "resh": "\u05e8", 

3334 "reshdageshhebrew": "\ufb48", 

3335 "reshhatafpatah": "\u05e8\u05b2", 

3336 "reshhatafpatahhebrew": "\u05e8\u05b2", 

3337 "reshhatafsegol": "\u05e8\u05b1", 

3338 "reshhatafsegolhebrew": "\u05e8\u05b1", 

3339 "reshhebrew": "\u05e8", 

3340 "reshhiriq": "\u05e8\u05b4", 

3341 "reshhiriqhebrew": "\u05e8\u05b4", 

3342 "reshholam": "\u05e8\u05b9", 

3343 "reshholamhebrew": "\u05e8\u05b9", 

3344 "reshpatah": "\u05e8\u05b7", 

3345 "reshpatahhebrew": "\u05e8\u05b7", 

3346 "reshqamats": "\u05e8\u05b8", 

3347 "reshqamatshebrew": "\u05e8\u05b8", 

3348 "reshqubuts": "\u05e8\u05bb", 

3349 "reshqubutshebrew": "\u05e8\u05bb", 

3350 "reshsegol": "\u05e8\u05b6", 

3351 "reshsegolhebrew": "\u05e8\u05b6", 

3352 "reshsheva": "\u05e8\u05b0", 

3353 "reshshevahebrew": "\u05e8\u05b0", 

3354 "reshtsere": "\u05e8\u05b5", 

3355 "reshtserehebrew": "\u05e8\u05b5", 

3356 "reversedtilde": "\u223d", 

3357 "reviahebrew": "\u0597", 

3358 "reviamugrashhebrew": "\u0597", 

3359 "revlogicalnot": "\u2310", 

3360 "rfishhook": "\u027e", 

3361 "rfishhookreversed": "\u027f", 

3362 "rhabengali": "\u09dd", 

3363 "rhadeva": "\u095d", 

3364 "rho": "\u03c1", 

3365 "rhook": "\u027d", 

3366 "rhookturned": "\u027b", 

3367 "rhookturnedsuperior": "\u02b5", 

3368 "rhosymbolgreek": "\u03f1", 

3369 "rhotichookmod": "\u02de", 

3370 "rieulacirclekorean": "\u3271", 

3371 "rieulaparenkorean": "\u3211", 

3372 "rieulcirclekorean": "\u3263", 

3373 "rieulhieuhkorean": "\u3140", 

3374 "rieulkiyeokkorean": "\u313a", 

3375 "rieulkiyeoksioskorean": "\u3169", 

3376 "rieulkorean": "\u3139", 

3377 "rieulmieumkorean": "\u313b", 

3378 "rieulpansioskorean": "\u316c", 

3379 "rieulparenkorean": "\u3203", 

3380 "rieulphieuphkorean": "\u313f", 

3381 "rieulpieupkorean": "\u313c", 

3382 "rieulpieupsioskorean": "\u316b", 

3383 "rieulsioskorean": "\u313d", 

3384 "rieulthieuthkorean": "\u313e", 

3385 "rieultikeutkorean": "\u316a", 

3386 "rieulyeorinhieuhkorean": "\u316d", 

3387 "rightangle": "\u221f", 

3388 "righttackbelowcmb": "\u0319", 

3389 "righttriangle": "\u22bf", 

3390 "rihiragana": "\u308a", 

3391 "rikatakana": "\u30ea", 

3392 "rikatakanahalfwidth": "\uff98", 

3393 "ring": "\u02da", 

3394 "ringbelowcmb": "\u0325", 

3395 "ringcmb": "\u030a", 

3396 "ringhalfleft": "\u02bf", 

3397 "ringhalfleftarmenian": "\u0559", 

3398 "ringhalfleftbelowcmb": "\u031c", 

3399 "ringhalfleftcentered": "\u02d3", 

3400 "ringhalfright": "\u02be", 

3401 "ringhalfrightbelowcmb": "\u0339", 

3402 "ringhalfrightcentered": "\u02d2", 

3403 "rinvertedbreve": "\u0213", 

3404 "rittorusquare": "\u3351", 

3405 "rlinebelow": "\u1e5f", 

3406 "rlongleg": "\u027c", 

3407 "rlonglegturned": "\u027a", 

3408 "rmonospace": "\uff52", 

3409 "rohiragana": "\u308d", 

3410 "rokatakana": "\u30ed", 

3411 "rokatakanahalfwidth": "\uff9b", 

3412 "roruathai": "\u0e23", 

3413 "rparen": "\u24ad", 

3414 "rrabengali": "\u09dc", 

3415 "rradeva": "\u0931", 

3416 "rragurmukhi": "\u0a5c", 

3417 "rreharabic": "\u0691", 

3418 "rrehfinalarabic": "\ufb8d", 

3419 "rrvocalicbengali": "\u09e0", 

3420 "rrvocalicdeva": "\u0960", 

3421 "rrvocalicgujarati": "\u0ae0", 

3422 "rrvocalicvowelsignbengali": "\u09c4", 

3423 "rrvocalicvowelsigndeva": "\u0944", 

3424 "rrvocalicvowelsigngujarati": "\u0ac4", 

3425 "rsuperior": "\uf6f1", 

3426 "rtblock": "\u2590", 

3427 "rturned": "\u0279", 

3428 "rturnedsuperior": "\u02b4", 

3429 "ruhiragana": "\u308b", 

3430 "rukatakana": "\u30eb", 

3431 "rukatakanahalfwidth": "\uff99", 

3432 "rupeemarkbengali": "\u09f2", 

3433 "rupeesignbengali": "\u09f3", 

3434 "rupiah": "\uf6dd", 

3435 "ruthai": "\u0e24", 

3436 "rvocalicbengali": "\u098b", 

3437 "rvocalicdeva": "\u090b", 

3438 "rvocalicgujarati": "\u0a8b", 

3439 "rvocalicvowelsignbengali": "\u09c3", 

3440 "rvocalicvowelsigndeva": "\u0943", 

3441 "rvocalicvowelsigngujarati": "\u0ac3", 

3442 "s": "\u0073", 

3443 "sabengali": "\u09b8", 

3444 "sacute": "\u015b", 

3445 "sacutedotaccent": "\u1e65", 

3446 "sadarabic": "\u0635", 

3447 "sadeva": "\u0938", 

3448 "sadfinalarabic": "\ufeba", 

3449 "sadinitialarabic": "\ufebb", 

3450 "sadmedialarabic": "\ufebc", 

3451 "sagujarati": "\u0ab8", 

3452 "sagurmukhi": "\u0a38", 

3453 "sahiragana": "\u3055", 

3454 "sakatakana": "\u30b5", 

3455 "sakatakanahalfwidth": "\uff7b", 

3456 "sallallahoualayhewasallamarabic": "\ufdfa", 

3457 "samekh": "\u05e1", 

3458 "samekhdagesh": "\ufb41", 

3459 "samekhdageshhebrew": "\ufb41", 

3460 "samekhhebrew": "\u05e1", 

3461 "saraaathai": "\u0e32", 

3462 "saraaethai": "\u0e41", 

3463 "saraaimaimalaithai": "\u0e44", 

3464 "saraaimaimuanthai": "\u0e43", 

3465 "saraamthai": "\u0e33", 

3466 "saraathai": "\u0e30", 

3467 "saraethai": "\u0e40", 

3468 "saraiileftthai": "\uf886", 

3469 "saraiithai": "\u0e35", 

3470 "saraileftthai": "\uf885", 

3471 "saraithai": "\u0e34", 

3472 "saraothai": "\u0e42", 

3473 "saraueeleftthai": "\uf888", 

3474 "saraueethai": "\u0e37", 

3475 "saraueleftthai": "\uf887", 

3476 "sarauethai": "\u0e36", 

3477 "sarauthai": "\u0e38", 

3478 "sarauuthai": "\u0e39", 

3479 "sbopomofo": "\u3119", 

3480 "scaron": "\u0161", 

3481 "scarondotaccent": "\u1e67", 

3482 "scedilla": "\u015f", 

3483 "schwa": "\u0259", 

3484 "schwacyrillic": "\u04d9", 

3485 "schwadieresiscyrillic": "\u04db", 

3486 "schwahook": "\u025a", 

3487 "scircle": "\u24e2", 

3488 "scircumflex": "\u015d", 

3489 "scommaaccent": "\u0219", 

3490 "sdotaccent": "\u1e61", 

3491 "sdotbelow": "\u1e63", 

3492 "sdotbelowdotaccent": "\u1e69", 

3493 "seagullbelowcmb": "\u033c", 

3494 "second": "\u2033", 

3495 "secondtonechinese": "\u02ca", 

3496 "section": "\u00a7", 

3497 "seenarabic": "\u0633", 

3498 "seenfinalarabic": "\ufeb2", 

3499 "seeninitialarabic": "\ufeb3", 

3500 "seenmedialarabic": "\ufeb4", 

3501 "segol": "\u05b6", 

3502 "segol13": "\u05b6", 

3503 "segol1f": "\u05b6", 

3504 "segol2c": "\u05b6", 

3505 "segolhebrew": "\u05b6", 

3506 "segolnarrowhebrew": "\u05b6", 

3507 "segolquarterhebrew": "\u05b6", 

3508 "segoltahebrew": "\u0592", 

3509 "segolwidehebrew": "\u05b6", 

3510 "seharmenian": "\u057d", 

3511 "sehiragana": "\u305b", 

3512 "sekatakana": "\u30bb", 

3513 "sekatakanahalfwidth": "\uff7e", 

3514 "semicolon": "\u003b", 

3515 "semicolonarabic": "\u061b", 

3516 "semicolonmonospace": "\uff1b", 

3517 "semicolonsmall": "\ufe54", 

3518 "semivoicedmarkkana": "\u309c", 

3519 "semivoicedmarkkanahalfwidth": "\uff9f", 

3520 "sentisquare": "\u3322", 

3521 "sentosquare": "\u3323", 

3522 "seven": "\u0037", 

3523 "sevenarabic": "\u0667", 

3524 "sevenbengali": "\u09ed", 

3525 "sevencircle": "\u2466", 

3526 "sevencircleinversesansserif": "\u2790", 

3527 "sevendeva": "\u096d", 

3528 "seveneighths": "\u215e", 

3529 "sevengujarati": "\u0aed", 

3530 "sevengurmukhi": "\u0a6d", 

3531 "sevenhackarabic": "\u0667", 

3532 "sevenhangzhou": "\u3027", 

3533 "sevenideographicparen": "\u3226", 

3534 "seveninferior": "\u2087", 

3535 "sevenmonospace": "\uff17", 

3536 "sevenoldstyle": "\uf737", 

3537 "sevenparen": "\u247a", 

3538 "sevenperiod": "\u248e", 

3539 "sevenpersian": "\u06f7", 

3540 "sevenroman": "\u2176", 

3541 "sevensuperior": "\u2077", 

3542 "seventeencircle": "\u2470", 

3543 "seventeenparen": "\u2484", 

3544 "seventeenperiod": "\u2498", 

3545 "seventhai": "\u0e57", 

3546 "sfthyphen": "\u00ad", 

3547 "shaarmenian": "\u0577", 

3548 "shabengali": "\u09b6", 

3549 "shacyrillic": "\u0448", 

3550 "shaddaarabic": "\u0651", 

3551 "shaddadammaarabic": "\ufc61", 

3552 "shaddadammatanarabic": "\ufc5e", 

3553 "shaddafathaarabic": "\ufc60", 

3554 "shaddafathatanarabic": "\u0651\u064b", 

3555 "shaddakasraarabic": "\ufc62", 

3556 "shaddakasratanarabic": "\ufc5f", 

3557 "shade": "\u2592", 

3558 "shadedark": "\u2593", 

3559 "shadelight": "\u2591", 

3560 "shademedium": "\u2592", 

3561 "shadeva": "\u0936", 

3562 "shagujarati": "\u0ab6", 

3563 "shagurmukhi": "\u0a36", 

3564 "shalshelethebrew": "\u0593", 

3565 "shbopomofo": "\u3115", 

3566 "shchacyrillic": "\u0449", 

3567 "sheenarabic": "\u0634", 

3568 "sheenfinalarabic": "\ufeb6", 

3569 "sheeninitialarabic": "\ufeb7", 

3570 "sheenmedialarabic": "\ufeb8", 

3571 "sheicoptic": "\u03e3", 

3572 "sheqel": "\u20aa", 

3573 "sheqelhebrew": "\u20aa", 

3574 "sheva": "\u05b0", 

3575 "sheva115": "\u05b0", 

3576 "sheva15": "\u05b0", 

3577 "sheva22": "\u05b0", 

3578 "sheva2e": "\u05b0", 

3579 "shevahebrew": "\u05b0", 

3580 "shevanarrowhebrew": "\u05b0", 

3581 "shevaquarterhebrew": "\u05b0", 

3582 "shevawidehebrew": "\u05b0", 

3583 "shhacyrillic": "\u04bb", 

3584 "shimacoptic": "\u03ed", 

3585 "shin": "\u05e9", 

3586 "shindagesh": "\ufb49", 

3587 "shindageshhebrew": "\ufb49", 

3588 "shindageshshindot": "\ufb2c", 

3589 "shindageshshindothebrew": "\ufb2c", 

3590 "shindageshsindot": "\ufb2d", 

3591 "shindageshsindothebrew": "\ufb2d", 

3592 "shindothebrew": "\u05c1", 

3593 "shinhebrew": "\u05e9", 

3594 "shinshindot": "\ufb2a", 

3595 "shinshindothebrew": "\ufb2a", 

3596 "shinsindot": "\ufb2b", 

3597 "shinsindothebrew": "\ufb2b", 

3598 "shook": "\u0282", 

3599 "sigma": "\u03c3", 

3600 "sigma1": "\u03c2", 

3601 "sigmafinal": "\u03c2", 

3602 "sigmalunatesymbolgreek": "\u03f2", 

3603 "sihiragana": "\u3057", 

3604 "sikatakana": "\u30b7", 

3605 "sikatakanahalfwidth": "\uff7c", 

3606 "siluqhebrew": "\u05bd", 

3607 "siluqlefthebrew": "\u05bd", 

3608 "similar": "\u223c", 

3609 "sindothebrew": "\u05c2", 

3610 "siosacirclekorean": "\u3274", 

3611 "siosaparenkorean": "\u3214", 

3612 "sioscieuckorean": "\u317e", 

3613 "sioscirclekorean": "\u3266", 

3614 "sioskiyeokkorean": "\u317a", 

3615 "sioskorean": "\u3145", 

3616 "siosnieunkorean": "\u317b", 

3617 "siosparenkorean": "\u3206", 

3618 "siospieupkorean": "\u317d", 

3619 "siostikeutkorean": "\u317c", 

3620 "six": "\u0036", 

3621 "sixarabic": "\u0666", 

3622 "sixbengali": "\u09ec", 

3623 "sixcircle": "\u2465", 

3624 "sixcircleinversesansserif": "\u278f", 

3625 "sixdeva": "\u096c", 

3626 "sixgujarati": "\u0aec", 

3627 "sixgurmukhi": "\u0a6c", 

3628 "sixhackarabic": "\u0666", 

3629 "sixhangzhou": "\u3026", 

3630 "sixideographicparen": "\u3225", 

3631 "sixinferior": "\u2086", 

3632 "sixmonospace": "\uff16", 

3633 "sixoldstyle": "\uf736", 

3634 "sixparen": "\u2479", 

3635 "sixperiod": "\u248d", 

3636 "sixpersian": "\u06f6", 

3637 "sixroman": "\u2175", 

3638 "sixsuperior": "\u2076", 

3639 "sixteencircle": "\u246f", 

3640 "sixteencurrencydenominatorbengali": "\u09f9", 

3641 "sixteenparen": "\u2483", 

3642 "sixteenperiod": "\u2497", 

3643 "sixthai": "\u0e56", 

3644 "slash": "\u002f", 

3645 "slashmonospace": "\uff0f", 

3646 "slong": "\u017f", 

3647 "slongdotaccent": "\u1e9b", 

3648 "smileface": "\u263a", 

3649 "smonospace": "\uff53", 

3650 "sofpasuqhebrew": "\u05c3", 

3651 "softhyphen": "\u00ad", 

3652 "softsigncyrillic": "\u044c", 

3653 "sohiragana": "\u305d", 

3654 "sokatakana": "\u30bd", 

3655 "sokatakanahalfwidth": "\uff7f", 

3656 "soliduslongoverlaycmb": "\u0338", 

3657 "solidusshortoverlaycmb": "\u0337", 

3658 "sorusithai": "\u0e29", 

3659 "sosalathai": "\u0e28", 

3660 "sosothai": "\u0e0b", 

3661 "sosuathai": "\u0e2a", 

3662 "space": "\u0020", 

3663 "spacehackarabic": "\u0020", 

3664 "spade": "\u2660", 

3665 "spadesuitblack": "\u2660", 

3666 "spadesuitwhite": "\u2664", 

3667 "sparen": "\u24ae", 

3668 "squarebelowcmb": "\u033b", 

3669 "squarecc": "\u33c4", 

3670 "squarecm": "\u339d", 

3671 "squarediagonalcrosshatchfill": "\u25a9", 

3672 "squarehorizontalfill": "\u25a4", 

3673 "squarekg": "\u338f", 

3674 "squarekm": "\u339e", 

3675 "squarekmcapital": "\u33ce", 

3676 "squareln": "\u33d1", 

3677 "squarelog": "\u33d2", 

3678 "squaremg": "\u338e", 

3679 "squaremil": "\u33d5", 

3680 "squaremm": "\u339c", 

3681 "squaremsquared": "\u33a1", 

3682 "squareorthogonalcrosshatchfill": "\u25a6", 

3683 "squareupperlefttolowerrightfill": "\u25a7", 

3684 "squareupperrighttolowerleftfill": "\u25a8", 

3685 "squareverticalfill": "\u25a5", 

3686 "squarewhitewithsmallblack": "\u25a3", 

3687 "srsquare": "\u33db", 

3688 "ssabengali": "\u09b7", 

3689 "ssadeva": "\u0937", 

3690 "ssagujarati": "\u0ab7", 

3691 "ssangcieuckorean": "\u3149", 

3692 "ssanghieuhkorean": "\u3185", 

3693 "ssangieungkorean": "\u3180", 

3694 "ssangkiyeokkorean": "\u3132", 

3695 "ssangnieunkorean": "\u3165", 

3696 "ssangpieupkorean": "\u3143", 

3697 "ssangsioskorean": "\u3146", 

3698 "ssangtikeutkorean": "\u3138", 

3699 "ssuperior": "\uf6f2", 

3700 "sterling": "\u00a3", 

3701 "sterlingmonospace": "\uffe1", 

3702 "strokelongoverlaycmb": "\u0336", 

3703 "strokeshortoverlaycmb": "\u0335", 

3704 "subset": "\u2282", 

3705 "subsetnotequal": "\u228a", 

3706 "subsetorequal": "\u2286", 

3707 "succeeds": "\u227b", 

3708 "suchthat": "\u220b", 

3709 "suhiragana": "\u3059", 

3710 "sukatakana": "\u30b9", 

3711 "sukatakanahalfwidth": "\uff7d", 

3712 "sukunarabic": "\u0652", 

3713 "summation": "\u2211", 

3714 "sun": "\u263c", 

3715 "superset": "\u2283", 

3716 "supersetnotequal": "\u228b", 

3717 "supersetorequal": "\u2287", 

3718 "svsquare": "\u33dc", 

3719 "syouwaerasquare": "\u337c", 

3720 "t": "\u0074", 

3721 "tabengali": "\u09a4", 

3722 "tackdown": "\u22a4", 

3723 "tackleft": "\u22a3", 

3724 "tadeva": "\u0924", 

3725 "tagujarati": "\u0aa4", 

3726 "tagurmukhi": "\u0a24", 

3727 "taharabic": "\u0637", 

3728 "tahfinalarabic": "\ufec2", 

3729 "tahinitialarabic": "\ufec3", 

3730 "tahiragana": "\u305f", 

3731 "tahmedialarabic": "\ufec4", 

3732 "taisyouerasquare": "\u337d", 

3733 "takatakana": "\u30bf", 

3734 "takatakanahalfwidth": "\uff80", 

3735 "tatweelarabic": "\u0640", 

3736 "tau": "\u03c4", 

3737 "tav": "\u05ea", 

3738 "tavdages": "\ufb4a", 

3739 "tavdagesh": "\ufb4a", 

3740 "tavdageshhebrew": "\ufb4a", 

3741 "tavhebrew": "\u05ea", 

3742 "tbar": "\u0167", 

3743 "tbopomofo": "\u310a", 

3744 "tcaron": "\u0165", 

3745 "tccurl": "\u02a8", 

3746 "tcedilla": "\u0163", 

3747 "tcheharabic": "\u0686", 

3748 "tchehfinalarabic": "\ufb7b", 

3749 "tchehinitialarabic": "\ufb7c", 

3750 "tchehmedialarabic": "\ufb7d", 

3751 "tchehmeeminitialarabic": "\ufb7c\ufee4", 

3752 "tcircle": "\u24e3", 

3753 "tcircumflexbelow": "\u1e71", 

3754 "tcommaaccent": "\u0163", 

3755 "tdieresis": "\u1e97", 

3756 "tdotaccent": "\u1e6b", 

3757 "tdotbelow": "\u1e6d", 

3758 "tecyrillic": "\u0442", 

3759 "tedescendercyrillic": "\u04ad", 

3760 "teharabic": "\u062a", 

3761 "tehfinalarabic": "\ufe96", 

3762 "tehhahinitialarabic": "\ufca2", 

3763 "tehhahisolatedarabic": "\ufc0c", 

3764 "tehinitialarabic": "\ufe97", 

3765 "tehiragana": "\u3066", 

3766 "tehjeeminitialarabic": "\ufca1", 

3767 "tehjeemisolatedarabic": "\ufc0b", 

3768 "tehmarbutaarabic": "\u0629", 

3769 "tehmarbutafinalarabic": "\ufe94", 

3770 "tehmedialarabic": "\ufe98", 

3771 "tehmeeminitialarabic": "\ufca4", 

3772 "tehmeemisolatedarabic": "\ufc0e", 

3773 "tehnoonfinalarabic": "\ufc73", 

3774 "tekatakana": "\u30c6", 

3775 "tekatakanahalfwidth": "\uff83", 

3776 "telephone": "\u2121", 

3777 "telephoneblack": "\u260e", 

3778 "telishagedolahebrew": "\u05a0", 

3779 "telishaqetanahebrew": "\u05a9", 

3780 "tencircle": "\u2469", 

3781 "tenideographicparen": "\u3229", 

3782 "tenparen": "\u247d", 

3783 "tenperiod": "\u2491", 

3784 "tenroman": "\u2179", 

3785 "tesh": "\u02a7", 

3786 "tet": "\u05d8", 

3787 "tetdagesh": "\ufb38", 

3788 "tetdageshhebrew": "\ufb38", 

3789 "tethebrew": "\u05d8", 

3790 "tetsecyrillic": "\u04b5", 

3791 "tevirhebrew": "\u059b", 

3792 "tevirlefthebrew": "\u059b", 

3793 "thabengali": "\u09a5", 

3794 "thadeva": "\u0925", 

3795 "thagujarati": "\u0aa5", 

3796 "thagurmukhi": "\u0a25", 

3797 "thalarabic": "\u0630", 

3798 "thalfinalarabic": "\ufeac", 

3799 "thanthakhatlowleftthai": "\uf898", 

3800 "thanthakhatlowrightthai": "\uf897", 

3801 "thanthakhatthai": "\u0e4c", 

3802 "thanthakhatupperleftthai": "\uf896", 

3803 "theharabic": "\u062b", 

3804 "thehfinalarabic": "\ufe9a", 

3805 "thehinitialarabic": "\ufe9b", 

3806 "thehmedialarabic": "\ufe9c", 

3807 "thereexists": "\u2203", 

3808 "therefore": "\u2234", 

3809 "theta": "\u03b8", 

3810 "theta1": "\u03d1", 

3811 "thetasymbolgreek": "\u03d1", 

3812 "thieuthacirclekorean": "\u3279", 

3813 "thieuthaparenkorean": "\u3219", 

3814 "thieuthcirclekorean": "\u326b", 

3815 "thieuthkorean": "\u314c", 

3816 "thieuthparenkorean": "\u320b", 

3817 "thirteencircle": "\u246c", 

3818 "thirteenparen": "\u2480", 

3819 "thirteenperiod": "\u2494", 

3820 "thonangmonthothai": "\u0e11", 

3821 "thook": "\u01ad", 

3822 "thophuthaothai": "\u0e12", 

3823 "thorn": "\u00fe", 

3824 "thothahanthai": "\u0e17", 

3825 "thothanthai": "\u0e10", 

3826 "thothongthai": "\u0e18", 

3827 "thothungthai": "\u0e16", 

3828 "thousandcyrillic": "\u0482", 

3829 "thousandsseparatorarabic": "\u066c", 

3830 "thousandsseparatorpersian": "\u066c", 

3831 "three": "\u0033", 

3832 "threearabic": "\u0663", 

3833 "threebengali": "\u09e9", 

3834 "threecircle": "\u2462", 

3835 "threecircleinversesansserif": "\u278c", 

3836 "threedeva": "\u0969", 

3837 "threeeighths": "\u215c", 

3838 "threegujarati": "\u0ae9", 

3839 "threegurmukhi": "\u0a69", 

3840 "threehackarabic": "\u0663", 

3841 "threehangzhou": "\u3023", 

3842 "threeideographicparen": "\u3222", 

3843 "threeinferior": "\u2083", 

3844 "threemonospace": "\uff13", 

3845 "threenumeratorbengali": "\u09f6", 

3846 "threeoldstyle": "\uf733", 

3847 "threeparen": "\u2476", 

3848 "threeperiod": "\u248a", 

3849 "threepersian": "\u06f3", 

3850 "threequarters": "\u00be", 

3851 "threequartersemdash": "\uf6de", 

3852 "threeroman": "\u2172", 

3853 "threesuperior": "\u00b3", 

3854 "threethai": "\u0e53", 

3855 "thzsquare": "\u3394", 

3856 "tihiragana": "\u3061", 

3857 "tikatakana": "\u30c1", 

3858 "tikatakanahalfwidth": "\uff81", 

3859 "tikeutacirclekorean": "\u3270", 

3860 "tikeutaparenkorean": "\u3210", 

3861 "tikeutcirclekorean": "\u3262", 

3862 "tikeutkorean": "\u3137", 

3863 "tikeutparenkorean": "\u3202", 

3864 "tilde": "\u02dc", 

3865 "tildebelowcmb": "\u0330", 

3866 "tildecmb": "\u0303", 

3867 "tildecomb": "\u0303", 

3868 "tildedoublecmb": "\u0360", 

3869 "tildeoperator": "\u223c", 

3870 "tildeoverlaycmb": "\u0334", 

3871 "tildeverticalcmb": "\u033e", 

3872 "timescircle": "\u2297", 

3873 "tipehahebrew": "\u0596", 

3874 "tipehalefthebrew": "\u0596", 

3875 "tippigurmukhi": "\u0a70", 

3876 "titlocyrilliccmb": "\u0483", 

3877 "tiwnarmenian": "\u057f", 

3878 "tlinebelow": "\u1e6f", 

3879 "tmonospace": "\uff54", 

3880 "toarmenian": "\u0569", 

3881 "tohiragana": "\u3068", 

3882 "tokatakana": "\u30c8", 

3883 "tokatakanahalfwidth": "\uff84", 

3884 "tonebarextrahighmod": "\u02e5", 

3885 "tonebarextralowmod": "\u02e9", 

3886 "tonebarhighmod": "\u02e6", 

3887 "tonebarlowmod": "\u02e8", 

3888 "tonebarmidmod": "\u02e7", 

3889 "tonefive": "\u01bd", 

3890 "tonesix": "\u0185", 

3891 "tonetwo": "\u01a8", 

3892 "tonos": "\u0384", 

3893 "tonsquare": "\u3327", 

3894 "topatakthai": "\u0e0f", 

3895 "tortoiseshellbracketleft": "\u3014", 

3896 "tortoiseshellbracketleftsmall": "\ufe5d", 

3897 "tortoiseshellbracketleftvertical": "\ufe39", 

3898 "tortoiseshellbracketright": "\u3015", 

3899 "tortoiseshellbracketrightsmall": "\ufe5e", 

3900 "tortoiseshellbracketrightvertical": "\ufe3a", 

3901 "totaothai": "\u0e15", 

3902 "tpalatalhook": "\u01ab", 

3903 "tparen": "\u24af", 

3904 "trademark": "\u2122", 

3905 "trademarksans": "\uf8ea", 

3906 "trademarkserif": "\uf6db", 

3907 "tretroflexhook": "\u0288", 

3908 "triagdn": "\u25bc", 

3909 "triaglf": "\u25c4", 

3910 "triagrt": "\u25ba", 

3911 "triagup": "\u25b2", 

3912 "ts": "\u02a6", 

3913 "tsadi": "\u05e6", 

3914 "tsadidagesh": "\ufb46", 

3915 "tsadidageshhebrew": "\ufb46", 

3916 "tsadihebrew": "\u05e6", 

3917 "tsecyrillic": "\u0446", 

3918 "tsere": "\u05b5", 

3919 "tsere12": "\u05b5", 

3920 "tsere1e": "\u05b5", 

3921 "tsere2b": "\u05b5", 

3922 "tserehebrew": "\u05b5", 

3923 "tserenarrowhebrew": "\u05b5", 

3924 "tserequarterhebrew": "\u05b5", 

3925 "tserewidehebrew": "\u05b5", 

3926 "tshecyrillic": "\u045b", 

3927 "tsuperior": "\uf6f3", 

3928 "ttabengali": "\u099f", 

3929 "ttadeva": "\u091f", 

3930 "ttagujarati": "\u0a9f", 

3931 "ttagurmukhi": "\u0a1f", 

3932 "tteharabic": "\u0679", 

3933 "ttehfinalarabic": "\ufb67", 

3934 "ttehinitialarabic": "\ufb68", 

3935 "ttehmedialarabic": "\ufb69", 

3936 "tthabengali": "\u09a0", 

3937 "tthadeva": "\u0920", 

3938 "tthagujarati": "\u0aa0", 

3939 "tthagurmukhi": "\u0a20", 

3940 "tturned": "\u0287", 

3941 "tuhiragana": "\u3064", 

3942 "tukatakana": "\u30c4", 

3943 "tukatakanahalfwidth": "\uff82", 

3944 "tusmallhiragana": "\u3063", 

3945 "tusmallkatakana": "\u30c3", 

3946 "tusmallkatakanahalfwidth": "\uff6f", 

3947 "twelvecircle": "\u246b", 

3948 "twelveparen": "\u247f", 

3949 "twelveperiod": "\u2493", 

3950 "twelveroman": "\u217b", 

3951 "twentycircle": "\u2473", 

3952 "twentyhangzhou": "\u5344", 

3953 "twentyparen": "\u2487", 

3954 "twentyperiod": "\u249b", 

3955 "two": "\u0032", 

3956 "twoarabic": "\u0662", 

3957 "twobengali": "\u09e8", 

3958 "twocircle": "\u2461", 

3959 "twocircleinversesansserif": "\u278b", 

3960 "twodeva": "\u0968", 

3961 "twodotenleader": "\u2025", 

3962 "twodotleader": "\u2025", 

3963 "twodotleadervertical": "\ufe30", 

3964 "twogujarati": "\u0ae8", 

3965 "twogurmukhi": "\u0a68", 

3966 "twohackarabic": "\u0662", 

3967 "twohangzhou": "\u3022", 

3968 "twoideographicparen": "\u3221", 

3969 "twoinferior": "\u2082", 

3970 "twomonospace": "\uff12", 

3971 "twonumeratorbengali": "\u09f5", 

3972 "twooldstyle": "\uf732", 

3973 "twoparen": "\u2475", 

3974 "twoperiod": "\u2489", 

3975 "twopersian": "\u06f2", 

3976 "tworoman": "\u2171", 

3977 "twostroke": "\u01bb", 

3978 "twosuperior": "\u00b2", 

3979 "twothai": "\u0e52", 

3980 "twothirds": "\u2154", 

3981 "u": "\u0075", 

3982 "uacute": "\u00fa", 

3983 "ubar": "\u0289", 

3984 "ubengali": "\u0989", 

3985 "ubopomofo": "\u3128", 

3986 "ubreve": "\u016d", 

3987 "ucaron": "\u01d4", 

3988 "ucircle": "\u24e4", 

3989 "ucircumflex": "\u00fb", 

3990 "ucircumflexbelow": "\u1e77", 

3991 "ucyrillic": "\u0443", 

3992 "udattadeva": "\u0951", 

3993 "udblacute": "\u0171", 

3994 "udblgrave": "\u0215", 

3995 "udeva": "\u0909", 

3996 "udieresis": "\u00fc", 

3997 "udieresisacute": "\u01d8", 

3998 "udieresisbelow": "\u1e73", 

3999 "udieresiscaron": "\u01da", 

4000 "udieresiscyrillic": "\u04f1", 

4001 "udieresisgrave": "\u01dc", 

4002 "udieresismacron": "\u01d6", 

4003 "udotbelow": "\u1ee5", 

4004 "ugrave": "\u00f9", 

4005 "ugujarati": "\u0a89", 

4006 "ugurmukhi": "\u0a09", 

4007 "uhiragana": "\u3046", 

4008 "uhookabove": "\u1ee7", 

4009 "uhorn": "\u01b0", 

4010 "uhornacute": "\u1ee9", 

4011 "uhorndotbelow": "\u1ef1", 

4012 "uhorngrave": "\u1eeb", 

4013 "uhornhookabove": "\u1eed", 

4014 "uhorntilde": "\u1eef", 

4015 "uhungarumlaut": "\u0171", 

4016 "uhungarumlautcyrillic": "\u04f3", 

4017 "uinvertedbreve": "\u0217", 

4018 "ukatakana": "\u30a6", 

4019 "ukatakanahalfwidth": "\uff73", 

4020 "ukcyrillic": "\u0479", 

4021 "ukorean": "\u315c", 

4022 "umacron": "\u016b", 

4023 "umacroncyrillic": "\u04ef", 

4024 "umacrondieresis": "\u1e7b", 

4025 "umatragurmukhi": "\u0a41", 

4026 "umonospace": "\uff55", 

4027 "underscore": "\u005f", 

4028 "underscoredbl": "\u2017", 

4029 "underscoremonospace": "\uff3f", 

4030 "underscorevertical": "\ufe33", 

4031 "underscorewavy": "\ufe4f", 

4032 "union": "\u222a", 

4033 "universal": "\u2200", 

4034 "uogonek": "\u0173", 

4035 "uparen": "\u24b0", 

4036 "upblock": "\u2580", 

4037 "upperdothebrew": "\u05c4", 

4038 "upsilon": "\u03c5", 

4039 "upsilondieresis": "\u03cb", 

4040 "upsilondieresistonos": "\u03b0", 

4041 "upsilonlatin": "\u028a", 

4042 "upsilontonos": "\u03cd", 

4043 "uptackbelowcmb": "\u031d", 

4044 "uptackmod": "\u02d4", 

4045 "uragurmukhi": "\u0a73", 

4046 "uring": "\u016f", 

4047 "ushortcyrillic": "\u045e", 

4048 "usmallhiragana": "\u3045", 

4049 "usmallkatakana": "\u30a5", 

4050 "usmallkatakanahalfwidth": "\uff69", 

4051 "ustraightcyrillic": "\u04af", 

4052 "ustraightstrokecyrillic": "\u04b1", 

4053 "utilde": "\u0169", 

4054 "utildeacute": "\u1e79", 

4055 "utildebelow": "\u1e75", 

4056 "uubengali": "\u098a", 

4057 "uudeva": "\u090a", 

4058 "uugujarati": "\u0a8a", 

4059 "uugurmukhi": "\u0a0a", 

4060 "uumatragurmukhi": "\u0a42", 

4061 "uuvowelsignbengali": "\u09c2", 

4062 "uuvowelsigndeva": "\u0942", 

4063 "uuvowelsigngujarati": "\u0ac2", 

4064 "uvowelsignbengali": "\u09c1", 

4065 "uvowelsigndeva": "\u0941", 

4066 "uvowelsigngujarati": "\u0ac1", 

4067 "v": "\u0076", 

4068 "vadeva": "\u0935", 

4069 "vagujarati": "\u0ab5", 

4070 "vagurmukhi": "\u0a35", 

4071 "vakatakana": "\u30f7", 

4072 "vav": "\u05d5", 

4073 "vavdagesh": "\ufb35", 

4074 "vavdagesh65": "\ufb35", 

4075 "vavdageshhebrew": "\ufb35", 

4076 "vavhebrew": "\u05d5", 

4077 "vavholam": "\ufb4b", 

4078 "vavholamhebrew": "\ufb4b", 

4079 "vavvavhebrew": "\u05f0", 

4080 "vavyodhebrew": "\u05f1", 

4081 "vcircle": "\u24e5", 

4082 "vdotbelow": "\u1e7f", 

4083 "vecyrillic": "\u0432", 

4084 "veharabic": "\u06a4", 

4085 "vehfinalarabic": "\ufb6b", 

4086 "vehinitialarabic": "\ufb6c", 

4087 "vehmedialarabic": "\ufb6d", 

4088 "vekatakana": "\u30f9", 

4089 "venus": "\u2640", 

4090 "verticalbar": "\u007c", 

4091 "verticallineabovecmb": "\u030d", 

4092 "verticallinebelowcmb": "\u0329", 

4093 "verticallinelowmod": "\u02cc", 

4094 "verticallinemod": "\u02c8", 

4095 "vewarmenian": "\u057e", 

4096 "vhook": "\u028b", 

4097 "vikatakana": "\u30f8", 

4098 "viramabengali": "\u09cd", 

4099 "viramadeva": "\u094d", 

4100 "viramagujarati": "\u0acd", 

4101 "visargabengali": "\u0983", 

4102 "visargadeva": "\u0903", 

4103 "visargagujarati": "\u0a83", 

4104 "vmonospace": "\uff56", 

4105 "voarmenian": "\u0578", 

4106 "voicediterationhiragana": "\u309e", 

4107 "voicediterationkatakana": "\u30fe", 

4108 "voicedmarkkana": "\u309b", 

4109 "voicedmarkkanahalfwidth": "\uff9e", 

4110 "vokatakana": "\u30fa", 

4111 "vparen": "\u24b1", 

4112 "vtilde": "\u1e7d", 

4113 "vturned": "\u028c", 

4114 "vuhiragana": "\u3094", 

4115 "vukatakana": "\u30f4", 

4116 "w": "\u0077", 

4117 "wacute": "\u1e83", 

4118 "waekorean": "\u3159", 

4119 "wahiragana": "\u308f", 

4120 "wakatakana": "\u30ef", 

4121 "wakatakanahalfwidth": "\uff9c", 

4122 "wakorean": "\u3158", 

4123 "wasmallhiragana": "\u308e", 

4124 "wasmallkatakana": "\u30ee", 

4125 "wattosquare": "\u3357", 

4126 "wavedash": "\u301c", 

4127 "wavyunderscorevertical": "\ufe34", 

4128 "wawarabic": "\u0648", 

4129 "wawfinalarabic": "\ufeee", 

4130 "wawhamzaabovearabic": "\u0624", 

4131 "wawhamzaabovefinalarabic": "\ufe86", 

4132 "wbsquare": "\u33dd", 

4133 "wcircle": "\u24e6", 

4134 "wcircumflex": "\u0175", 

4135 "wdieresis": "\u1e85", 

4136 "wdotaccent": "\u1e87", 

4137 "wdotbelow": "\u1e89", 

4138 "wehiragana": "\u3091", 

4139 "weierstrass": "\u2118", 

4140 "wekatakana": "\u30f1", 

4141 "wekorean": "\u315e", 

4142 "weokorean": "\u315d", 

4143 "wgrave": "\u1e81", 

4144 "whitebullet": "\u25e6", 

4145 "whitecircle": "\u25cb", 

4146 "whitecircleinverse": "\u25d9", 

4147 "whitecornerbracketleft": "\u300e", 

4148 "whitecornerbracketleftvertical": "\ufe43", 

4149 "whitecornerbracketright": "\u300f", 

4150 "whitecornerbracketrightvertical": "\ufe44", 

4151 "whitediamond": "\u25c7", 

4152 "whitediamondcontainingblacksmalldiamond": "\u25c8", 

4153 "whitedownpointingsmalltriangle": "\u25bf", 

4154 "whitedownpointingtriangle": "\u25bd", 

4155 "whiteleftpointingsmalltriangle": "\u25c3", 

4156 "whiteleftpointingtriangle": "\u25c1", 

4157 "whitelenticularbracketleft": "\u3016", 

4158 "whitelenticularbracketright": "\u3017", 

4159 "whiterightpointingsmalltriangle": "\u25b9", 

4160 "whiterightpointingtriangle": "\u25b7", 

4161 "whitesmallsquare": "\u25ab", 

4162 "whitesmilingface": "\u263a", 

4163 "whitesquare": "\u25a1", 

4164 "whitestar": "\u2606", 

4165 "whitetelephone": "\u260f", 

4166 "whitetortoiseshellbracketleft": "\u3018", 

4167 "whitetortoiseshellbracketright": "\u3019", 

4168 "whiteuppointingsmalltriangle": "\u25b5", 

4169 "whiteuppointingtriangle": "\u25b3", 

4170 "wihiragana": "\u3090", 

4171 "wikatakana": "\u30f0", 

4172 "wikorean": "\u315f", 

4173 "wmonospace": "\uff57", 

4174 "wohiragana": "\u3092", 

4175 "wokatakana": "\u30f2", 

4176 "wokatakanahalfwidth": "\uff66", 

4177 "won": "\u20a9", 

4178 "wonmonospace": "\uffe6", 

4179 "wowaenthai": "\u0e27", 

4180 "wparen": "\u24b2", 

4181 "wring": "\u1e98", 

4182 "wsuperior": "\u02b7", 

4183 "wturned": "\u028d", 

4184 "wynn": "\u01bf", 

4185 "x": "\u0078", 

4186 "xabovecmb": "\u033d", 

4187 "xbopomofo": "\u3112", 

4188 "xcircle": "\u24e7", 

4189 "xdieresis": "\u1e8d", 

4190 "xdotaccent": "\u1e8b", 

4191 "xeharmenian": "\u056d", 

4192 "xi": "\u03be", 

4193 "xmonospace": "\uff58", 

4194 "xparen": "\u24b3", 

4195 "xsuperior": "\u02e3", 

4196 "y": "\u0079", 

4197 "yaadosquare": "\u334e", 

4198 "yabengali": "\u09af", 

4199 "yacute": "\u00fd", 

4200 "yadeva": "\u092f", 

4201 "yaekorean": "\u3152", 

4202 "yagujarati": "\u0aaf", 

4203 "yagurmukhi": "\u0a2f", 

4204 "yahiragana": "\u3084", 

4205 "yakatakana": "\u30e4", 

4206 "yakatakanahalfwidth": "\uff94", 

4207 "yakorean": "\u3151", 

4208 "yamakkanthai": "\u0e4e", 

4209 "yasmallhiragana": "\u3083", 

4210 "yasmallkatakana": "\u30e3", 

4211 "yasmallkatakanahalfwidth": "\uff6c", 

4212 "yatcyrillic": "\u0463", 

4213 "ycircle": "\u24e8", 

4214 "ycircumflex": "\u0177", 

4215 "ydieresis": "\u00ff", 

4216 "ydotaccent": "\u1e8f", 

4217 "ydotbelow": "\u1ef5", 

4218 "yeharabic": "\u064a", 

4219 "yehbarreearabic": "\u06d2", 

4220 "yehbarreefinalarabic": "\ufbaf", 

4221 "yehfinalarabic": "\ufef2", 

4222 "yehhamzaabovearabic": "\u0626", 

4223 "yehhamzaabovefinalarabic": "\ufe8a", 

4224 "yehhamzaaboveinitialarabic": "\ufe8b", 

4225 "yehhamzaabovemedialarabic": "\ufe8c", 

4226 "yehinitialarabic": "\ufef3", 

4227 "yehmedialarabic": "\ufef4", 

4228 "yehmeeminitialarabic": "\ufcdd", 

4229 "yehmeemisolatedarabic": "\ufc58", 

4230 "yehnoonfinalarabic": "\ufc94", 

4231 "yehthreedotsbelowarabic": "\u06d1", 

4232 "yekorean": "\u3156", 

4233 "yen": "\u00a5", 

4234 "yenmonospace": "\uffe5", 

4235 "yeokorean": "\u3155", 

4236 "yeorinhieuhkorean": "\u3186", 

4237 "yerahbenyomohebrew": "\u05aa", 

4238 "yerahbenyomolefthebrew": "\u05aa", 

4239 "yericyrillic": "\u044b", 

4240 "yerudieresiscyrillic": "\u04f9", 

4241 "yesieungkorean": "\u3181", 

4242 "yesieungpansioskorean": "\u3183", 

4243 "yesieungsioskorean": "\u3182", 

4244 "yetivhebrew": "\u059a", 

4245 "ygrave": "\u1ef3", 

4246 "yhook": "\u01b4", 

4247 "yhookabove": "\u1ef7", 

4248 "yiarmenian": "\u0575", 

4249 "yicyrillic": "\u0457", 

4250 "yikorean": "\u3162", 

4251 "yinyang": "\u262f", 

4252 "yiwnarmenian": "\u0582", 

4253 "ymonospace": "\uff59", 

4254 "yod": "\u05d9", 

4255 "yoddagesh": "\ufb39", 

4256 "yoddageshhebrew": "\ufb39", 

4257 "yodhebrew": "\u05d9", 

4258 "yodyodhebrew": "\u05f2", 

4259 "yodyodpatahhebrew": "\ufb1f", 

4260 "yohiragana": "\u3088", 

4261 "yoikorean": "\u3189", 

4262 "yokatakana": "\u30e8", 

4263 "yokatakanahalfwidth": "\uff96", 

4264 "yokorean": "\u315b", 

4265 "yosmallhiragana": "\u3087", 

4266 "yosmallkatakana": "\u30e7", 

4267 "yosmallkatakanahalfwidth": "\uff6e", 

4268 "yotgreek": "\u03f3", 

4269 "yoyaekorean": "\u3188", 

4270 "yoyakorean": "\u3187", 

4271 "yoyakthai": "\u0e22", 

4272 "yoyingthai": "\u0e0d", 

4273 "yparen": "\u24b4", 

4274 "ypogegrammeni": "\u037a", 

4275 "ypogegrammenigreekcmb": "\u0345", 

4276 "yr": "\u01a6", 

4277 "yring": "\u1e99", 

4278 "ysuperior": "\u02b8", 

4279 "ytilde": "\u1ef9", 

4280 "yturned": "\u028e", 

4281 "yuhiragana": "\u3086", 

4282 "yuikorean": "\u318c", 

4283 "yukatakana": "\u30e6", 

4284 "yukatakanahalfwidth": "\uff95", 

4285 "yukorean": "\u3160", 

4286 "yusbigcyrillic": "\u046b", 

4287 "yusbigiotifiedcyrillic": "\u046d", 

4288 "yuslittlecyrillic": "\u0467", 

4289 "yuslittleiotifiedcyrillic": "\u0469", 

4290 "yusmallhiragana": "\u3085", 

4291 "yusmallkatakana": "\u30e5", 

4292 "yusmallkatakanahalfwidth": "\uff6d", 

4293 "yuyekorean": "\u318b", 

4294 "yuyeokorean": "\u318a", 

4295 "yyabengali": "\u09df", 

4296 "yyadeva": "\u095f", 

4297 "z": "\u007a", 

4298 "zaarmenian": "\u0566", 

4299 "zacute": "\u017a", 

4300 "zadeva": "\u095b", 

4301 "zagurmukhi": "\u0a5b", 

4302 "zaharabic": "\u0638", 

4303 "zahfinalarabic": "\ufec6", 

4304 "zahinitialarabic": "\ufec7", 

4305 "zahiragana": "\u3056", 

4306 "zahmedialarabic": "\ufec8", 

4307 "zainarabic": "\u0632", 

4308 "zainfinalarabic": "\ufeb0", 

4309 "zakatakana": "\u30b6", 

4310 "zaqefgadolhebrew": "\u0595", 

4311 "zaqefqatanhebrew": "\u0594", 

4312 "zarqahebrew": "\u0598", 

4313 "zayin": "\u05d6", 

4314 "zayindagesh": "\ufb36", 

4315 "zayindageshhebrew": "\ufb36", 

4316 "zayinhebrew": "\u05d6", 

4317 "zbopomofo": "\u3117", 

4318 "zcaron": "\u017e", 

4319 "zcircle": "\u24e9", 

4320 "zcircumflex": "\u1e91", 

4321 "zcurl": "\u0291", 

4322 "zdot": "\u017c", 

4323 "zdotaccent": "\u017c", 

4324 "zdotbelow": "\u1e93", 

4325 "zecyrillic": "\u0437", 

4326 "zedescendercyrillic": "\u0499", 

4327 "zedieresiscyrillic": "\u04df", 

4328 "zehiragana": "\u305c", 

4329 "zekatakana": "\u30bc", 

4330 "zero": "\u0030", 

4331 "zeroarabic": "\u0660", 

4332 "zerobengali": "\u09e6", 

4333 "zerodeva": "\u0966", 

4334 "zerogujarati": "\u0ae6", 

4335 "zerogurmukhi": "\u0a66", 

4336 "zerohackarabic": "\u0660", 

4337 "zeroinferior": "\u2080", 

4338 "zeromonospace": "\uff10", 

4339 "zerooldstyle": "\uf730", 

4340 "zeropersian": "\u06f0", 

4341 "zerosuperior": "\u2070", 

4342 "zerothai": "\u0e50", 

4343 "zerowidthjoiner": "\ufeff", 

4344 "zerowidthnonjoiner": "\u200c", 

4345 "zerowidthspace": "\u200b", 

4346 "zeta": "\u03b6", 

4347 "zhbopomofo": "\u3113", 

4348 "zhearmenian": "\u056a", 

4349 "zhebrevecyrillic": "\u04c2", 

4350 "zhecyrillic": "\u0436", 

4351 "zhedescendercyrillic": "\u0497", 

4352 "zhedieresiscyrillic": "\u04dd", 

4353 "zihiragana": "\u3058", 

4354 "zikatakana": "\u30b8", 

4355 "zinorhebrew": "\u05ae", 

4356 "zlinebelow": "\u1e95", 

4357 "zmonospace": "\uff5a", 

4358 "zohiragana": "\u305e", 

4359 "zokatakana": "\u30be", 

4360 "zparen": "\u24b5", 

4361 "zretroflexhook": "\u0290", 

4362 "zstroke": "\u01b6", 

4363 "zuhiragana": "\u305a", 

4364 "zukatakana": "\u30ba", 

4365} 

4366# --end