fonttools 4.60.2__cp311-cp311-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (353) hide show
  1. fontTools/__init__.py +8 -0
  2. fontTools/__main__.py +35 -0
  3. fontTools/afmLib.py +439 -0
  4. fontTools/agl.py +5233 -0
  5. fontTools/annotations.py +30 -0
  6. fontTools/cffLib/CFF2ToCFF.py +258 -0
  7. fontTools/cffLib/CFFToCFF2.py +305 -0
  8. fontTools/cffLib/__init__.py +3694 -0
  9. fontTools/cffLib/specializer.py +927 -0
  10. fontTools/cffLib/transforms.py +495 -0
  11. fontTools/cffLib/width.py +210 -0
  12. fontTools/colorLib/__init__.py +0 -0
  13. fontTools/colorLib/builder.py +664 -0
  14. fontTools/colorLib/errors.py +2 -0
  15. fontTools/colorLib/geometry.py +143 -0
  16. fontTools/colorLib/table_builder.py +223 -0
  17. fontTools/colorLib/unbuilder.py +81 -0
  18. fontTools/config/__init__.py +90 -0
  19. fontTools/cu2qu/__init__.py +15 -0
  20. fontTools/cu2qu/__main__.py +6 -0
  21. fontTools/cu2qu/benchmark.py +54 -0
  22. fontTools/cu2qu/cli.py +198 -0
  23. fontTools/cu2qu/cu2qu.c +15817 -0
  24. fontTools/cu2qu/cu2qu.cp311-win32.pyd +0 -0
  25. fontTools/cu2qu/cu2qu.py +563 -0
  26. fontTools/cu2qu/errors.py +77 -0
  27. fontTools/cu2qu/ufo.py +363 -0
  28. fontTools/designspaceLib/__init__.py +3343 -0
  29. fontTools/designspaceLib/__main__.py +6 -0
  30. fontTools/designspaceLib/split.py +475 -0
  31. fontTools/designspaceLib/statNames.py +260 -0
  32. fontTools/designspaceLib/types.py +147 -0
  33. fontTools/encodings/MacRoman.py +258 -0
  34. fontTools/encodings/StandardEncoding.py +258 -0
  35. fontTools/encodings/__init__.py +1 -0
  36. fontTools/encodings/codecs.py +135 -0
  37. fontTools/feaLib/__init__.py +4 -0
  38. fontTools/feaLib/__main__.py +78 -0
  39. fontTools/feaLib/ast.py +2143 -0
  40. fontTools/feaLib/builder.py +1814 -0
  41. fontTools/feaLib/error.py +22 -0
  42. fontTools/feaLib/lexer.c +17029 -0
  43. fontTools/feaLib/lexer.cp311-win32.pyd +0 -0
  44. fontTools/feaLib/lexer.py +287 -0
  45. fontTools/feaLib/location.py +12 -0
  46. fontTools/feaLib/lookupDebugInfo.py +12 -0
  47. fontTools/feaLib/parser.py +2394 -0
  48. fontTools/feaLib/variableScalar.py +118 -0
  49. fontTools/fontBuilder.py +1014 -0
  50. fontTools/help.py +36 -0
  51. fontTools/merge/__init__.py +248 -0
  52. fontTools/merge/__main__.py +6 -0
  53. fontTools/merge/base.py +81 -0
  54. fontTools/merge/cmap.py +173 -0
  55. fontTools/merge/layout.py +526 -0
  56. fontTools/merge/options.py +85 -0
  57. fontTools/merge/tables.py +352 -0
  58. fontTools/merge/unicode.py +78 -0
  59. fontTools/merge/util.py +143 -0
  60. fontTools/misc/__init__.py +1 -0
  61. fontTools/misc/arrayTools.py +424 -0
  62. fontTools/misc/bezierTools.c +39731 -0
  63. fontTools/misc/bezierTools.cp311-win32.pyd +0 -0
  64. fontTools/misc/bezierTools.py +1500 -0
  65. fontTools/misc/classifyTools.py +170 -0
  66. fontTools/misc/cliTools.py +53 -0
  67. fontTools/misc/configTools.py +349 -0
  68. fontTools/misc/cython.py +27 -0
  69. fontTools/misc/dictTools.py +83 -0
  70. fontTools/misc/eexec.py +119 -0
  71. fontTools/misc/encodingTools.py +72 -0
  72. fontTools/misc/enumTools.py +23 -0
  73. fontTools/misc/etree.py +456 -0
  74. fontTools/misc/filenames.py +245 -0
  75. fontTools/misc/filesystem/__init__.py +68 -0
  76. fontTools/misc/filesystem/_base.py +134 -0
  77. fontTools/misc/filesystem/_copy.py +45 -0
  78. fontTools/misc/filesystem/_errors.py +54 -0
  79. fontTools/misc/filesystem/_info.py +75 -0
  80. fontTools/misc/filesystem/_osfs.py +164 -0
  81. fontTools/misc/filesystem/_path.py +67 -0
  82. fontTools/misc/filesystem/_subfs.py +92 -0
  83. fontTools/misc/filesystem/_tempfs.py +34 -0
  84. fontTools/misc/filesystem/_tools.py +34 -0
  85. fontTools/misc/filesystem/_walk.py +55 -0
  86. fontTools/misc/filesystem/_zipfs.py +204 -0
  87. fontTools/misc/fixedTools.py +253 -0
  88. fontTools/misc/intTools.py +25 -0
  89. fontTools/misc/iterTools.py +12 -0
  90. fontTools/misc/lazyTools.py +42 -0
  91. fontTools/misc/loggingTools.py +543 -0
  92. fontTools/misc/macCreatorType.py +56 -0
  93. fontTools/misc/macRes.py +261 -0
  94. fontTools/misc/plistlib/__init__.py +681 -0
  95. fontTools/misc/plistlib/py.typed +0 -0
  96. fontTools/misc/psCharStrings.py +1511 -0
  97. fontTools/misc/psLib.py +398 -0
  98. fontTools/misc/psOperators.py +572 -0
  99. fontTools/misc/py23.py +96 -0
  100. fontTools/misc/roundTools.py +110 -0
  101. fontTools/misc/sstruct.py +227 -0
  102. fontTools/misc/symfont.py +242 -0
  103. fontTools/misc/testTools.py +233 -0
  104. fontTools/misc/textTools.py +156 -0
  105. fontTools/misc/timeTools.py +88 -0
  106. fontTools/misc/transform.py +516 -0
  107. fontTools/misc/treeTools.py +45 -0
  108. fontTools/misc/vector.py +147 -0
  109. fontTools/misc/visitor.py +158 -0
  110. fontTools/misc/xmlReader.py +188 -0
  111. fontTools/misc/xmlWriter.py +231 -0
  112. fontTools/mtiLib/__init__.py +1400 -0
  113. fontTools/mtiLib/__main__.py +5 -0
  114. fontTools/otlLib/__init__.py +1 -0
  115. fontTools/otlLib/builder.py +3465 -0
  116. fontTools/otlLib/error.py +11 -0
  117. fontTools/otlLib/maxContextCalc.py +96 -0
  118. fontTools/otlLib/optimize/__init__.py +53 -0
  119. fontTools/otlLib/optimize/__main__.py +6 -0
  120. fontTools/otlLib/optimize/gpos.py +439 -0
  121. fontTools/pens/__init__.py +1 -0
  122. fontTools/pens/areaPen.py +52 -0
  123. fontTools/pens/basePen.py +475 -0
  124. fontTools/pens/boundsPen.py +98 -0
  125. fontTools/pens/cairoPen.py +26 -0
  126. fontTools/pens/cocoaPen.py +26 -0
  127. fontTools/pens/cu2quPen.py +325 -0
  128. fontTools/pens/explicitClosingLinePen.py +101 -0
  129. fontTools/pens/filterPen.py +433 -0
  130. fontTools/pens/freetypePen.py +462 -0
  131. fontTools/pens/hashPointPen.py +89 -0
  132. fontTools/pens/momentsPen.c +13378 -0
  133. fontTools/pens/momentsPen.cp311-win32.pyd +0 -0
  134. fontTools/pens/momentsPen.py +879 -0
  135. fontTools/pens/perimeterPen.py +69 -0
  136. fontTools/pens/pointInsidePen.py +192 -0
  137. fontTools/pens/pointPen.py +643 -0
  138. fontTools/pens/qtPen.py +29 -0
  139. fontTools/pens/qu2cuPen.py +105 -0
  140. fontTools/pens/quartzPen.py +43 -0
  141. fontTools/pens/recordingPen.py +335 -0
  142. fontTools/pens/reportLabPen.py +79 -0
  143. fontTools/pens/reverseContourPen.py +96 -0
  144. fontTools/pens/roundingPen.py +130 -0
  145. fontTools/pens/statisticsPen.py +312 -0
  146. fontTools/pens/svgPathPen.py +310 -0
  147. fontTools/pens/t2CharStringPen.py +88 -0
  148. fontTools/pens/teePen.py +55 -0
  149. fontTools/pens/transformPen.py +115 -0
  150. fontTools/pens/ttGlyphPen.py +335 -0
  151. fontTools/pens/wxPen.py +29 -0
  152. fontTools/qu2cu/__init__.py +15 -0
  153. fontTools/qu2cu/__main__.py +7 -0
  154. fontTools/qu2cu/benchmark.py +56 -0
  155. fontTools/qu2cu/cli.py +125 -0
  156. fontTools/qu2cu/qu2cu.c +16682 -0
  157. fontTools/qu2cu/qu2cu.cp311-win32.pyd +0 -0
  158. fontTools/qu2cu/qu2cu.py +405 -0
  159. fontTools/subset/__init__.py +4096 -0
  160. fontTools/subset/__main__.py +6 -0
  161. fontTools/subset/cff.py +184 -0
  162. fontTools/subset/svg.py +253 -0
  163. fontTools/subset/util.py +25 -0
  164. fontTools/svgLib/__init__.py +3 -0
  165. fontTools/svgLib/path/__init__.py +65 -0
  166. fontTools/svgLib/path/arc.py +154 -0
  167. fontTools/svgLib/path/parser.py +322 -0
  168. fontTools/svgLib/path/shapes.py +183 -0
  169. fontTools/t1Lib/__init__.py +648 -0
  170. fontTools/tfmLib.py +460 -0
  171. fontTools/ttLib/__init__.py +30 -0
  172. fontTools/ttLib/__main__.py +148 -0
  173. fontTools/ttLib/macUtils.py +54 -0
  174. fontTools/ttLib/removeOverlaps.py +395 -0
  175. fontTools/ttLib/reorderGlyphs.py +285 -0
  176. fontTools/ttLib/scaleUpem.py +436 -0
  177. fontTools/ttLib/sfnt.py +661 -0
  178. fontTools/ttLib/standardGlyphOrder.py +271 -0
  179. fontTools/ttLib/tables/B_A_S_E_.py +14 -0
  180. fontTools/ttLib/tables/BitmapGlyphMetrics.py +64 -0
  181. fontTools/ttLib/tables/C_B_D_T_.py +113 -0
  182. fontTools/ttLib/tables/C_B_L_C_.py +19 -0
  183. fontTools/ttLib/tables/C_F_F_.py +61 -0
  184. fontTools/ttLib/tables/C_F_F__2.py +26 -0
  185. fontTools/ttLib/tables/C_O_L_R_.py +165 -0
  186. fontTools/ttLib/tables/C_P_A_L_.py +305 -0
  187. fontTools/ttLib/tables/D_S_I_G_.py +158 -0
  188. fontTools/ttLib/tables/D__e_b_g.py +35 -0
  189. fontTools/ttLib/tables/DefaultTable.py +49 -0
  190. fontTools/ttLib/tables/E_B_D_T_.py +835 -0
  191. fontTools/ttLib/tables/E_B_L_C_.py +718 -0
  192. fontTools/ttLib/tables/F_F_T_M_.py +52 -0
  193. fontTools/ttLib/tables/F__e_a_t.py +149 -0
  194. fontTools/ttLib/tables/G_D_E_F_.py +13 -0
  195. fontTools/ttLib/tables/G_M_A_P_.py +148 -0
  196. fontTools/ttLib/tables/G_P_K_G_.py +133 -0
  197. fontTools/ttLib/tables/G_P_O_S_.py +14 -0
  198. fontTools/ttLib/tables/G_S_U_B_.py +13 -0
  199. fontTools/ttLib/tables/G_V_A_R_.py +5 -0
  200. fontTools/ttLib/tables/G__l_a_t.py +235 -0
  201. fontTools/ttLib/tables/G__l_o_c.py +85 -0
  202. fontTools/ttLib/tables/H_V_A_R_.py +13 -0
  203. fontTools/ttLib/tables/J_S_T_F_.py +13 -0
  204. fontTools/ttLib/tables/L_T_S_H_.py +58 -0
  205. fontTools/ttLib/tables/M_A_T_H_.py +13 -0
  206. fontTools/ttLib/tables/M_E_T_A_.py +352 -0
  207. fontTools/ttLib/tables/M_V_A_R_.py +13 -0
  208. fontTools/ttLib/tables/O_S_2f_2.py +752 -0
  209. fontTools/ttLib/tables/S_I_N_G_.py +99 -0
  210. fontTools/ttLib/tables/S_T_A_T_.py +15 -0
  211. fontTools/ttLib/tables/S_V_G_.py +223 -0
  212. fontTools/ttLib/tables/S__i_l_f.py +1040 -0
  213. fontTools/ttLib/tables/S__i_l_l.py +92 -0
  214. fontTools/ttLib/tables/T_S_I_B_.py +13 -0
  215. fontTools/ttLib/tables/T_S_I_C_.py +14 -0
  216. fontTools/ttLib/tables/T_S_I_D_.py +13 -0
  217. fontTools/ttLib/tables/T_S_I_J_.py +13 -0
  218. fontTools/ttLib/tables/T_S_I_P_.py +13 -0
  219. fontTools/ttLib/tables/T_S_I_S_.py +13 -0
  220. fontTools/ttLib/tables/T_S_I_V_.py +26 -0
  221. fontTools/ttLib/tables/T_S_I__0.py +70 -0
  222. fontTools/ttLib/tables/T_S_I__1.py +163 -0
  223. fontTools/ttLib/tables/T_S_I__2.py +17 -0
  224. fontTools/ttLib/tables/T_S_I__3.py +22 -0
  225. fontTools/ttLib/tables/T_S_I__5.py +60 -0
  226. fontTools/ttLib/tables/T_T_F_A_.py +14 -0
  227. fontTools/ttLib/tables/TupleVariation.py +884 -0
  228. fontTools/ttLib/tables/V_A_R_C_.py +12 -0
  229. fontTools/ttLib/tables/V_D_M_X_.py +249 -0
  230. fontTools/ttLib/tables/V_O_R_G_.py +165 -0
  231. fontTools/ttLib/tables/V_V_A_R_.py +13 -0
  232. fontTools/ttLib/tables/__init__.py +98 -0
  233. fontTools/ttLib/tables/_a_n_k_r.py +15 -0
  234. fontTools/ttLib/tables/_a_v_a_r.py +193 -0
  235. fontTools/ttLib/tables/_b_s_l_n.py +15 -0
  236. fontTools/ttLib/tables/_c_i_d_g.py +24 -0
  237. fontTools/ttLib/tables/_c_m_a_p.py +1591 -0
  238. fontTools/ttLib/tables/_c_v_a_r.py +94 -0
  239. fontTools/ttLib/tables/_c_v_t.py +56 -0
  240. fontTools/ttLib/tables/_f_e_a_t.py +15 -0
  241. fontTools/ttLib/tables/_f_p_g_m.py +62 -0
  242. fontTools/ttLib/tables/_f_v_a_r.py +261 -0
  243. fontTools/ttLib/tables/_g_a_s_p.py +63 -0
  244. fontTools/ttLib/tables/_g_c_i_d.py +13 -0
  245. fontTools/ttLib/tables/_g_l_y_f.py +2311 -0
  246. fontTools/ttLib/tables/_g_v_a_r.py +340 -0
  247. fontTools/ttLib/tables/_h_d_m_x.py +127 -0
  248. fontTools/ttLib/tables/_h_e_a_d.py +130 -0
  249. fontTools/ttLib/tables/_h_h_e_a.py +147 -0
  250. fontTools/ttLib/tables/_h_m_t_x.py +164 -0
  251. fontTools/ttLib/tables/_k_e_r_n.py +289 -0
  252. fontTools/ttLib/tables/_l_c_a_r.py +13 -0
  253. fontTools/ttLib/tables/_l_o_c_a.py +70 -0
  254. fontTools/ttLib/tables/_l_t_a_g.py +72 -0
  255. fontTools/ttLib/tables/_m_a_x_p.py +147 -0
  256. fontTools/ttLib/tables/_m_e_t_a.py +112 -0
  257. fontTools/ttLib/tables/_m_o_r_t.py +14 -0
  258. fontTools/ttLib/tables/_m_o_r_x.py +15 -0
  259. fontTools/ttLib/tables/_n_a_m_e.py +1242 -0
  260. fontTools/ttLib/tables/_o_p_b_d.py +14 -0
  261. fontTools/ttLib/tables/_p_o_s_t.py +319 -0
  262. fontTools/ttLib/tables/_p_r_e_p.py +16 -0
  263. fontTools/ttLib/tables/_p_r_o_p.py +12 -0
  264. fontTools/ttLib/tables/_s_b_i_x.py +129 -0
  265. fontTools/ttLib/tables/_t_r_a_k.py +332 -0
  266. fontTools/ttLib/tables/_v_h_e_a.py +139 -0
  267. fontTools/ttLib/tables/_v_m_t_x.py +19 -0
  268. fontTools/ttLib/tables/asciiTable.py +20 -0
  269. fontTools/ttLib/tables/grUtils.py +92 -0
  270. fontTools/ttLib/tables/otBase.py +1458 -0
  271. fontTools/ttLib/tables/otConverters.py +2068 -0
  272. fontTools/ttLib/tables/otData.py +6400 -0
  273. fontTools/ttLib/tables/otTables.py +2703 -0
  274. fontTools/ttLib/tables/otTraverse.py +163 -0
  275. fontTools/ttLib/tables/sbixGlyph.py +149 -0
  276. fontTools/ttLib/tables/sbixStrike.py +177 -0
  277. fontTools/ttLib/tables/table_API_readme.txt +91 -0
  278. fontTools/ttLib/tables/ttProgram.py +594 -0
  279. fontTools/ttLib/ttCollection.py +125 -0
  280. fontTools/ttLib/ttFont.py +1148 -0
  281. fontTools/ttLib/ttGlyphSet.py +490 -0
  282. fontTools/ttLib/ttVisitor.py +32 -0
  283. fontTools/ttLib/woff2.py +1680 -0
  284. fontTools/ttx.py +479 -0
  285. fontTools/ufoLib/__init__.py +2575 -0
  286. fontTools/ufoLib/converters.py +407 -0
  287. fontTools/ufoLib/errors.py +30 -0
  288. fontTools/ufoLib/etree.py +6 -0
  289. fontTools/ufoLib/filenames.py +356 -0
  290. fontTools/ufoLib/glifLib.py +2120 -0
  291. fontTools/ufoLib/kerning.py +141 -0
  292. fontTools/ufoLib/plistlib.py +47 -0
  293. fontTools/ufoLib/pointPen.py +6 -0
  294. fontTools/ufoLib/utils.py +107 -0
  295. fontTools/ufoLib/validators.py +1208 -0
  296. fontTools/unicode.py +50 -0
  297. fontTools/unicodedata/Blocks.py +817 -0
  298. fontTools/unicodedata/Mirrored.py +446 -0
  299. fontTools/unicodedata/OTTags.py +50 -0
  300. fontTools/unicodedata/ScriptExtensions.py +832 -0
  301. fontTools/unicodedata/Scripts.py +3639 -0
  302. fontTools/unicodedata/__init__.py +306 -0
  303. fontTools/varLib/__init__.py +1600 -0
  304. fontTools/varLib/__main__.py +6 -0
  305. fontTools/varLib/avar/__init__.py +0 -0
  306. fontTools/varLib/avar/__main__.py +72 -0
  307. fontTools/varLib/avar/build.py +79 -0
  308. fontTools/varLib/avar/map.py +108 -0
  309. fontTools/varLib/avar/plan.py +1004 -0
  310. fontTools/varLib/avar/unbuild.py +271 -0
  311. fontTools/varLib/avarPlanner.py +8 -0
  312. fontTools/varLib/builder.py +215 -0
  313. fontTools/varLib/cff.py +631 -0
  314. fontTools/varLib/errors.py +219 -0
  315. fontTools/varLib/featureVars.py +703 -0
  316. fontTools/varLib/hvar.py +113 -0
  317. fontTools/varLib/instancer/__init__.py +2052 -0
  318. fontTools/varLib/instancer/__main__.py +5 -0
  319. fontTools/varLib/instancer/featureVars.py +190 -0
  320. fontTools/varLib/instancer/names.py +388 -0
  321. fontTools/varLib/instancer/solver.py +309 -0
  322. fontTools/varLib/interpolatable.py +1209 -0
  323. fontTools/varLib/interpolatableHelpers.py +399 -0
  324. fontTools/varLib/interpolatablePlot.py +1269 -0
  325. fontTools/varLib/interpolatableTestContourOrder.py +82 -0
  326. fontTools/varLib/interpolatableTestStartingPoint.py +107 -0
  327. fontTools/varLib/interpolate_layout.py +124 -0
  328. fontTools/varLib/iup.c +19815 -0
  329. fontTools/varLib/iup.cp311-win32.pyd +0 -0
  330. fontTools/varLib/iup.py +490 -0
  331. fontTools/varLib/merger.py +1717 -0
  332. fontTools/varLib/models.py +642 -0
  333. fontTools/varLib/multiVarStore.py +253 -0
  334. fontTools/varLib/mutator.py +529 -0
  335. fontTools/varLib/mvar.py +40 -0
  336. fontTools/varLib/plot.py +238 -0
  337. fontTools/varLib/stat.py +149 -0
  338. fontTools/varLib/varStore.py +739 -0
  339. fontTools/voltLib/__init__.py +5 -0
  340. fontTools/voltLib/__main__.py +206 -0
  341. fontTools/voltLib/ast.py +452 -0
  342. fontTools/voltLib/error.py +12 -0
  343. fontTools/voltLib/lexer.py +99 -0
  344. fontTools/voltLib/parser.py +664 -0
  345. fontTools/voltLib/voltToFea.py +911 -0
  346. fonttools-4.60.2.data/data/share/man/man1/ttx.1 +225 -0
  347. fonttools-4.60.2.dist-info/METADATA +2250 -0
  348. fonttools-4.60.2.dist-info/RECORD +353 -0
  349. fonttools-4.60.2.dist-info/WHEEL +5 -0
  350. fonttools-4.60.2.dist-info/entry_points.txt +5 -0
  351. fonttools-4.60.2.dist-info/licenses/LICENSE +21 -0
  352. fonttools-4.60.2.dist-info/licenses/LICENSE.external +388 -0
  353. fonttools-4.60.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,817 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # NOTE: This file was auto-generated with MetaTools/buildUCD.py.
4
+ # Source: https://unicode.org/Public/UNIDATA/Blocks.txt
5
+ # License: http://unicode.org/copyright.html#License
6
+ #
7
+ # Blocks-17.0.0.txt
8
+ # Date: 2025-08-01
9
+ # © 2025 Unicode®, Inc.
10
+ # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
11
+ # For terms of use and license, see https://www.unicode.org/terms_of_use.html
12
+ #
13
+ # Unicode Character Database
14
+ # For documentation, see https://www.unicode.org/reports/tr44/
15
+ #
16
+ # Format:
17
+ # Start Code..End Code; Block Name
18
+
19
+ RANGES = [
20
+ 0x0000, # .. 0x007F ; Basic Latin
21
+ 0x0080, # .. 0x00FF ; Latin-1 Supplement
22
+ 0x0100, # .. 0x017F ; Latin Extended-A
23
+ 0x0180, # .. 0x024F ; Latin Extended-B
24
+ 0x0250, # .. 0x02AF ; IPA Extensions
25
+ 0x02B0, # .. 0x02FF ; Spacing Modifier Letters
26
+ 0x0300, # .. 0x036F ; Combining Diacritical Marks
27
+ 0x0370, # .. 0x03FF ; Greek and Coptic
28
+ 0x0400, # .. 0x04FF ; Cyrillic
29
+ 0x0500, # .. 0x052F ; Cyrillic Supplement
30
+ 0x0530, # .. 0x058F ; Armenian
31
+ 0x0590, # .. 0x05FF ; Hebrew
32
+ 0x0600, # .. 0x06FF ; Arabic
33
+ 0x0700, # .. 0x074F ; Syriac
34
+ 0x0750, # .. 0x077F ; Arabic Supplement
35
+ 0x0780, # .. 0x07BF ; Thaana
36
+ 0x07C0, # .. 0x07FF ; NKo
37
+ 0x0800, # .. 0x083F ; Samaritan
38
+ 0x0840, # .. 0x085F ; Mandaic
39
+ 0x0860, # .. 0x086F ; Syriac Supplement
40
+ 0x0870, # .. 0x089F ; Arabic Extended-B
41
+ 0x08A0, # .. 0x08FF ; Arabic Extended-A
42
+ 0x0900, # .. 0x097F ; Devanagari
43
+ 0x0980, # .. 0x09FF ; Bengali
44
+ 0x0A00, # .. 0x0A7F ; Gurmukhi
45
+ 0x0A80, # .. 0x0AFF ; Gujarati
46
+ 0x0B00, # .. 0x0B7F ; Oriya
47
+ 0x0B80, # .. 0x0BFF ; Tamil
48
+ 0x0C00, # .. 0x0C7F ; Telugu
49
+ 0x0C80, # .. 0x0CFF ; Kannada
50
+ 0x0D00, # .. 0x0D7F ; Malayalam
51
+ 0x0D80, # .. 0x0DFF ; Sinhala
52
+ 0x0E00, # .. 0x0E7F ; Thai
53
+ 0x0E80, # .. 0x0EFF ; Lao
54
+ 0x0F00, # .. 0x0FFF ; Tibetan
55
+ 0x1000, # .. 0x109F ; Myanmar
56
+ 0x10A0, # .. 0x10FF ; Georgian
57
+ 0x1100, # .. 0x11FF ; Hangul Jamo
58
+ 0x1200, # .. 0x137F ; Ethiopic
59
+ 0x1380, # .. 0x139F ; Ethiopic Supplement
60
+ 0x13A0, # .. 0x13FF ; Cherokee
61
+ 0x1400, # .. 0x167F ; Unified Canadian Aboriginal Syllabics
62
+ 0x1680, # .. 0x169F ; Ogham
63
+ 0x16A0, # .. 0x16FF ; Runic
64
+ 0x1700, # .. 0x171F ; Tagalog
65
+ 0x1720, # .. 0x173F ; Hanunoo
66
+ 0x1740, # .. 0x175F ; Buhid
67
+ 0x1760, # .. 0x177F ; Tagbanwa
68
+ 0x1780, # .. 0x17FF ; Khmer
69
+ 0x1800, # .. 0x18AF ; Mongolian
70
+ 0x18B0, # .. 0x18FF ; Unified Canadian Aboriginal Syllabics Extended
71
+ 0x1900, # .. 0x194F ; Limbu
72
+ 0x1950, # .. 0x197F ; Tai Le
73
+ 0x1980, # .. 0x19DF ; New Tai Lue
74
+ 0x19E0, # .. 0x19FF ; Khmer Symbols
75
+ 0x1A00, # .. 0x1A1F ; Buginese
76
+ 0x1A20, # .. 0x1AAF ; Tai Tham
77
+ 0x1AB0, # .. 0x1AFF ; Combining Diacritical Marks Extended
78
+ 0x1B00, # .. 0x1B7F ; Balinese
79
+ 0x1B80, # .. 0x1BBF ; Sundanese
80
+ 0x1BC0, # .. 0x1BFF ; Batak
81
+ 0x1C00, # .. 0x1C4F ; Lepcha
82
+ 0x1C50, # .. 0x1C7F ; Ol Chiki
83
+ 0x1C80, # .. 0x1C8F ; Cyrillic Extended-C
84
+ 0x1C90, # .. 0x1CBF ; Georgian Extended
85
+ 0x1CC0, # .. 0x1CCF ; Sundanese Supplement
86
+ 0x1CD0, # .. 0x1CFF ; Vedic Extensions
87
+ 0x1D00, # .. 0x1D7F ; Phonetic Extensions
88
+ 0x1D80, # .. 0x1DBF ; Phonetic Extensions Supplement
89
+ 0x1DC0, # .. 0x1DFF ; Combining Diacritical Marks Supplement
90
+ 0x1E00, # .. 0x1EFF ; Latin Extended Additional
91
+ 0x1F00, # .. 0x1FFF ; Greek Extended
92
+ 0x2000, # .. 0x206F ; General Punctuation
93
+ 0x2070, # .. 0x209F ; Superscripts and Subscripts
94
+ 0x20A0, # .. 0x20CF ; Currency Symbols
95
+ 0x20D0, # .. 0x20FF ; Combining Diacritical Marks for Symbols
96
+ 0x2100, # .. 0x214F ; Letterlike Symbols
97
+ 0x2150, # .. 0x218F ; Number Forms
98
+ 0x2190, # .. 0x21FF ; Arrows
99
+ 0x2200, # .. 0x22FF ; Mathematical Operators
100
+ 0x2300, # .. 0x23FF ; Miscellaneous Technical
101
+ 0x2400, # .. 0x243F ; Control Pictures
102
+ 0x2440, # .. 0x245F ; Optical Character Recognition
103
+ 0x2460, # .. 0x24FF ; Enclosed Alphanumerics
104
+ 0x2500, # .. 0x257F ; Box Drawing
105
+ 0x2580, # .. 0x259F ; Block Elements
106
+ 0x25A0, # .. 0x25FF ; Geometric Shapes
107
+ 0x2600, # .. 0x26FF ; Miscellaneous Symbols
108
+ 0x2700, # .. 0x27BF ; Dingbats
109
+ 0x27C0, # .. 0x27EF ; Miscellaneous Mathematical Symbols-A
110
+ 0x27F0, # .. 0x27FF ; Supplemental Arrows-A
111
+ 0x2800, # .. 0x28FF ; Braille Patterns
112
+ 0x2900, # .. 0x297F ; Supplemental Arrows-B
113
+ 0x2980, # .. 0x29FF ; Miscellaneous Mathematical Symbols-B
114
+ 0x2A00, # .. 0x2AFF ; Supplemental Mathematical Operators
115
+ 0x2B00, # .. 0x2BFF ; Miscellaneous Symbols and Arrows
116
+ 0x2C00, # .. 0x2C5F ; Glagolitic
117
+ 0x2C60, # .. 0x2C7F ; Latin Extended-C
118
+ 0x2C80, # .. 0x2CFF ; Coptic
119
+ 0x2D00, # .. 0x2D2F ; Georgian Supplement
120
+ 0x2D30, # .. 0x2D7F ; Tifinagh
121
+ 0x2D80, # .. 0x2DDF ; Ethiopic Extended
122
+ 0x2DE0, # .. 0x2DFF ; Cyrillic Extended-A
123
+ 0x2E00, # .. 0x2E7F ; Supplemental Punctuation
124
+ 0x2E80, # .. 0x2EFF ; CJK Radicals Supplement
125
+ 0x2F00, # .. 0x2FDF ; Kangxi Radicals
126
+ 0x2FE0, # .. 0x2FEF ; No_Block
127
+ 0x2FF0, # .. 0x2FFF ; Ideographic Description Characters
128
+ 0x3000, # .. 0x303F ; CJK Symbols and Punctuation
129
+ 0x3040, # .. 0x309F ; Hiragana
130
+ 0x30A0, # .. 0x30FF ; Katakana
131
+ 0x3100, # .. 0x312F ; Bopomofo
132
+ 0x3130, # .. 0x318F ; Hangul Compatibility Jamo
133
+ 0x3190, # .. 0x319F ; Kanbun
134
+ 0x31A0, # .. 0x31BF ; Bopomofo Extended
135
+ 0x31C0, # .. 0x31EF ; CJK Strokes
136
+ 0x31F0, # .. 0x31FF ; Katakana Phonetic Extensions
137
+ 0x3200, # .. 0x32FF ; Enclosed CJK Letters and Months
138
+ 0x3300, # .. 0x33FF ; CJK Compatibility
139
+ 0x3400, # .. 0x4DBF ; CJK Unified Ideographs Extension A
140
+ 0x4DC0, # .. 0x4DFF ; Yijing Hexagram Symbols
141
+ 0x4E00, # .. 0x9FFF ; CJK Unified Ideographs
142
+ 0xA000, # .. 0xA48F ; Yi Syllables
143
+ 0xA490, # .. 0xA4CF ; Yi Radicals
144
+ 0xA4D0, # .. 0xA4FF ; Lisu
145
+ 0xA500, # .. 0xA63F ; Vai
146
+ 0xA640, # .. 0xA69F ; Cyrillic Extended-B
147
+ 0xA6A0, # .. 0xA6FF ; Bamum
148
+ 0xA700, # .. 0xA71F ; Modifier Tone Letters
149
+ 0xA720, # .. 0xA7FF ; Latin Extended-D
150
+ 0xA800, # .. 0xA82F ; Syloti Nagri
151
+ 0xA830, # .. 0xA83F ; Common Indic Number Forms
152
+ 0xA840, # .. 0xA87F ; Phags-pa
153
+ 0xA880, # .. 0xA8DF ; Saurashtra
154
+ 0xA8E0, # .. 0xA8FF ; Devanagari Extended
155
+ 0xA900, # .. 0xA92F ; Kayah Li
156
+ 0xA930, # .. 0xA95F ; Rejang
157
+ 0xA960, # .. 0xA97F ; Hangul Jamo Extended-A
158
+ 0xA980, # .. 0xA9DF ; Javanese
159
+ 0xA9E0, # .. 0xA9FF ; Myanmar Extended-B
160
+ 0xAA00, # .. 0xAA5F ; Cham
161
+ 0xAA60, # .. 0xAA7F ; Myanmar Extended-A
162
+ 0xAA80, # .. 0xAADF ; Tai Viet
163
+ 0xAAE0, # .. 0xAAFF ; Meetei Mayek Extensions
164
+ 0xAB00, # .. 0xAB2F ; Ethiopic Extended-A
165
+ 0xAB30, # .. 0xAB6F ; Latin Extended-E
166
+ 0xAB70, # .. 0xABBF ; Cherokee Supplement
167
+ 0xABC0, # .. 0xABFF ; Meetei Mayek
168
+ 0xAC00, # .. 0xD7AF ; Hangul Syllables
169
+ 0xD7B0, # .. 0xD7FF ; Hangul Jamo Extended-B
170
+ 0xD800, # .. 0xDB7F ; High Surrogates
171
+ 0xDB80, # .. 0xDBFF ; High Private Use Surrogates
172
+ 0xDC00, # .. 0xDFFF ; Low Surrogates
173
+ 0xE000, # .. 0xF8FF ; Private Use Area
174
+ 0xF900, # .. 0xFAFF ; CJK Compatibility Ideographs
175
+ 0xFB00, # .. 0xFB4F ; Alphabetic Presentation Forms
176
+ 0xFB50, # .. 0xFDFF ; Arabic Presentation Forms-A
177
+ 0xFE00, # .. 0xFE0F ; Variation Selectors
178
+ 0xFE10, # .. 0xFE1F ; Vertical Forms
179
+ 0xFE20, # .. 0xFE2F ; Combining Half Marks
180
+ 0xFE30, # .. 0xFE4F ; CJK Compatibility Forms
181
+ 0xFE50, # .. 0xFE6F ; Small Form Variants
182
+ 0xFE70, # .. 0xFEFF ; Arabic Presentation Forms-B
183
+ 0xFF00, # .. 0xFFEF ; Halfwidth and Fullwidth Forms
184
+ 0xFFF0, # .. 0xFFFF ; Specials
185
+ 0x10000, # .. 0x1007F ; Linear B Syllabary
186
+ 0x10080, # .. 0x100FF ; Linear B Ideograms
187
+ 0x10100, # .. 0x1013F ; Aegean Numbers
188
+ 0x10140, # .. 0x1018F ; Ancient Greek Numbers
189
+ 0x10190, # .. 0x101CF ; Ancient Symbols
190
+ 0x101D0, # .. 0x101FF ; Phaistos Disc
191
+ 0x10200, # .. 0x1027F ; No_Block
192
+ 0x10280, # .. 0x1029F ; Lycian
193
+ 0x102A0, # .. 0x102DF ; Carian
194
+ 0x102E0, # .. 0x102FF ; Coptic Epact Numbers
195
+ 0x10300, # .. 0x1032F ; Old Italic
196
+ 0x10330, # .. 0x1034F ; Gothic
197
+ 0x10350, # .. 0x1037F ; Old Permic
198
+ 0x10380, # .. 0x1039F ; Ugaritic
199
+ 0x103A0, # .. 0x103DF ; Old Persian
200
+ 0x103E0, # .. 0x103FF ; No_Block
201
+ 0x10400, # .. 0x1044F ; Deseret
202
+ 0x10450, # .. 0x1047F ; Shavian
203
+ 0x10480, # .. 0x104AF ; Osmanya
204
+ 0x104B0, # .. 0x104FF ; Osage
205
+ 0x10500, # .. 0x1052F ; Elbasan
206
+ 0x10530, # .. 0x1056F ; Caucasian Albanian
207
+ 0x10570, # .. 0x105BF ; Vithkuqi
208
+ 0x105C0, # .. 0x105FF ; Todhri
209
+ 0x10600, # .. 0x1077F ; Linear A
210
+ 0x10780, # .. 0x107BF ; Latin Extended-F
211
+ 0x107C0, # .. 0x107FF ; No_Block
212
+ 0x10800, # .. 0x1083F ; Cypriot Syllabary
213
+ 0x10840, # .. 0x1085F ; Imperial Aramaic
214
+ 0x10860, # .. 0x1087F ; Palmyrene
215
+ 0x10880, # .. 0x108AF ; Nabataean
216
+ 0x108B0, # .. 0x108DF ; No_Block
217
+ 0x108E0, # .. 0x108FF ; Hatran
218
+ 0x10900, # .. 0x1091F ; Phoenician
219
+ 0x10920, # .. 0x1093F ; Lydian
220
+ 0x10940, # .. 0x1095F ; Sidetic
221
+ 0x10960, # .. 0x1097F ; No_Block
222
+ 0x10980, # .. 0x1099F ; Meroitic Hieroglyphs
223
+ 0x109A0, # .. 0x109FF ; Meroitic Cursive
224
+ 0x10A00, # .. 0x10A5F ; Kharoshthi
225
+ 0x10A60, # .. 0x10A7F ; Old South Arabian
226
+ 0x10A80, # .. 0x10A9F ; Old North Arabian
227
+ 0x10AA0, # .. 0x10ABF ; No_Block
228
+ 0x10AC0, # .. 0x10AFF ; Manichaean
229
+ 0x10B00, # .. 0x10B3F ; Avestan
230
+ 0x10B40, # .. 0x10B5F ; Inscriptional Parthian
231
+ 0x10B60, # .. 0x10B7F ; Inscriptional Pahlavi
232
+ 0x10B80, # .. 0x10BAF ; Psalter Pahlavi
233
+ 0x10BB0, # .. 0x10BFF ; No_Block
234
+ 0x10C00, # .. 0x10C4F ; Old Turkic
235
+ 0x10C50, # .. 0x10C7F ; No_Block
236
+ 0x10C80, # .. 0x10CFF ; Old Hungarian
237
+ 0x10D00, # .. 0x10D3F ; Hanifi Rohingya
238
+ 0x10D40, # .. 0x10D8F ; Garay
239
+ 0x10D90, # .. 0x10E5F ; No_Block
240
+ 0x10E60, # .. 0x10E7F ; Rumi Numeral Symbols
241
+ 0x10E80, # .. 0x10EBF ; Yezidi
242
+ 0x10EC0, # .. 0x10EFF ; Arabic Extended-C
243
+ 0x10F00, # .. 0x10F2F ; Old Sogdian
244
+ 0x10F30, # .. 0x10F6F ; Sogdian
245
+ 0x10F70, # .. 0x10FAF ; Old Uyghur
246
+ 0x10FB0, # .. 0x10FDF ; Chorasmian
247
+ 0x10FE0, # .. 0x10FFF ; Elymaic
248
+ 0x11000, # .. 0x1107F ; Brahmi
249
+ 0x11080, # .. 0x110CF ; Kaithi
250
+ 0x110D0, # .. 0x110FF ; Sora Sompeng
251
+ 0x11100, # .. 0x1114F ; Chakma
252
+ 0x11150, # .. 0x1117F ; Mahajani
253
+ 0x11180, # .. 0x111DF ; Sharada
254
+ 0x111E0, # .. 0x111FF ; Sinhala Archaic Numbers
255
+ 0x11200, # .. 0x1124F ; Khojki
256
+ 0x11250, # .. 0x1127F ; No_Block
257
+ 0x11280, # .. 0x112AF ; Multani
258
+ 0x112B0, # .. 0x112FF ; Khudawadi
259
+ 0x11300, # .. 0x1137F ; Grantha
260
+ 0x11380, # .. 0x113FF ; Tulu-Tigalari
261
+ 0x11400, # .. 0x1147F ; Newa
262
+ 0x11480, # .. 0x114DF ; Tirhuta
263
+ 0x114E0, # .. 0x1157F ; No_Block
264
+ 0x11580, # .. 0x115FF ; Siddham
265
+ 0x11600, # .. 0x1165F ; Modi
266
+ 0x11660, # .. 0x1167F ; Mongolian Supplement
267
+ 0x11680, # .. 0x116CF ; Takri
268
+ 0x116D0, # .. 0x116FF ; Myanmar Extended-C
269
+ 0x11700, # .. 0x1174F ; Ahom
270
+ 0x11750, # .. 0x117FF ; No_Block
271
+ 0x11800, # .. 0x1184F ; Dogra
272
+ 0x11850, # .. 0x1189F ; No_Block
273
+ 0x118A0, # .. 0x118FF ; Warang Citi
274
+ 0x11900, # .. 0x1195F ; Dives Akuru
275
+ 0x11960, # .. 0x1199F ; No_Block
276
+ 0x119A0, # .. 0x119FF ; Nandinagari
277
+ 0x11A00, # .. 0x11A4F ; Zanabazar Square
278
+ 0x11A50, # .. 0x11AAF ; Soyombo
279
+ 0x11AB0, # .. 0x11ABF ; Unified Canadian Aboriginal Syllabics Extended-A
280
+ 0x11AC0, # .. 0x11AFF ; Pau Cin Hau
281
+ 0x11B00, # .. 0x11B5F ; Devanagari Extended-A
282
+ 0x11B60, # .. 0x11B7F ; Sharada Supplement
283
+ 0x11B80, # .. 0x11BBF ; No_Block
284
+ 0x11BC0, # .. 0x11BFF ; Sunuwar
285
+ 0x11C00, # .. 0x11C6F ; Bhaiksuki
286
+ 0x11C70, # .. 0x11CBF ; Marchen
287
+ 0x11CC0, # .. 0x11CFF ; No_Block
288
+ 0x11D00, # .. 0x11D5F ; Masaram Gondi
289
+ 0x11D60, # .. 0x11DAF ; Gunjala Gondi
290
+ 0x11DB0, # .. 0x11DEF ; Tolong Siki
291
+ 0x11DF0, # .. 0x11EDF ; No_Block
292
+ 0x11EE0, # .. 0x11EFF ; Makasar
293
+ 0x11F00, # .. 0x11F5F ; Kawi
294
+ 0x11F60, # .. 0x11FAF ; No_Block
295
+ 0x11FB0, # .. 0x11FBF ; Lisu Supplement
296
+ 0x11FC0, # .. 0x11FFF ; Tamil Supplement
297
+ 0x12000, # .. 0x123FF ; Cuneiform
298
+ 0x12400, # .. 0x1247F ; Cuneiform Numbers and Punctuation
299
+ 0x12480, # .. 0x1254F ; Early Dynastic Cuneiform
300
+ 0x12550, # .. 0x12F8F ; No_Block
301
+ 0x12F90, # .. 0x12FFF ; Cypro-Minoan
302
+ 0x13000, # .. 0x1342F ; Egyptian Hieroglyphs
303
+ 0x13430, # .. 0x1345F ; Egyptian Hieroglyph Format Controls
304
+ 0x13460, # .. 0x143FF ; Egyptian Hieroglyphs Extended-A
305
+ 0x14400, # .. 0x1467F ; Anatolian Hieroglyphs
306
+ 0x14680, # .. 0x160FF ; No_Block
307
+ 0x16100, # .. 0x1613F ; Gurung Khema
308
+ 0x16140, # .. 0x167FF ; No_Block
309
+ 0x16800, # .. 0x16A3F ; Bamum Supplement
310
+ 0x16A40, # .. 0x16A6F ; Mro
311
+ 0x16A70, # .. 0x16ACF ; Tangsa
312
+ 0x16AD0, # .. 0x16AFF ; Bassa Vah
313
+ 0x16B00, # .. 0x16B8F ; Pahawh Hmong
314
+ 0x16B90, # .. 0x16D3F ; No_Block
315
+ 0x16D40, # .. 0x16D7F ; Kirat Rai
316
+ 0x16D80, # .. 0x16E3F ; No_Block
317
+ 0x16E40, # .. 0x16E9F ; Medefaidrin
318
+ 0x16EA0, # .. 0x16EDF ; Beria Erfe
319
+ 0x16EE0, # .. 0x16EFF ; No_Block
320
+ 0x16F00, # .. 0x16F9F ; Miao
321
+ 0x16FA0, # .. 0x16FDF ; No_Block
322
+ 0x16FE0, # .. 0x16FFF ; Ideographic Symbols and Punctuation
323
+ 0x17000, # .. 0x187FF ; Tangut
324
+ 0x18800, # .. 0x18AFF ; Tangut Components
325
+ 0x18B00, # .. 0x18CFF ; Khitan Small Script
326
+ 0x18D00, # .. 0x18D7F ; Tangut Supplement
327
+ 0x18D80, # .. 0x18DFF ; Tangut Components Supplement
328
+ 0x18E00, # .. 0x1AFEF ; No_Block
329
+ 0x1AFF0, # .. 0x1AFFF ; Kana Extended-B
330
+ 0x1B000, # .. 0x1B0FF ; Kana Supplement
331
+ 0x1B100, # .. 0x1B12F ; Kana Extended-A
332
+ 0x1B130, # .. 0x1B16F ; Small Kana Extension
333
+ 0x1B170, # .. 0x1B2FF ; Nushu
334
+ 0x1B300, # .. 0x1BBFF ; No_Block
335
+ 0x1BC00, # .. 0x1BC9F ; Duployan
336
+ 0x1BCA0, # .. 0x1BCAF ; Shorthand Format Controls
337
+ 0x1BCB0, # .. 0x1CBFF ; No_Block
338
+ 0x1CC00, # .. 0x1CEBF ; Symbols for Legacy Computing Supplement
339
+ 0x1CEC0, # .. 0x1CEFF ; Miscellaneous Symbols Supplement
340
+ 0x1CF00, # .. 0x1CFCF ; Znamenny Musical Notation
341
+ 0x1CFD0, # .. 0x1CFFF ; No_Block
342
+ 0x1D000, # .. 0x1D0FF ; Byzantine Musical Symbols
343
+ 0x1D100, # .. 0x1D1FF ; Musical Symbols
344
+ 0x1D200, # .. 0x1D24F ; Ancient Greek Musical Notation
345
+ 0x1D250, # .. 0x1D2BF ; No_Block
346
+ 0x1D2C0, # .. 0x1D2DF ; Kaktovik Numerals
347
+ 0x1D2E0, # .. 0x1D2FF ; Mayan Numerals
348
+ 0x1D300, # .. 0x1D35F ; Tai Xuan Jing Symbols
349
+ 0x1D360, # .. 0x1D37F ; Counting Rod Numerals
350
+ 0x1D380, # .. 0x1D3FF ; No_Block
351
+ 0x1D400, # .. 0x1D7FF ; Mathematical Alphanumeric Symbols
352
+ 0x1D800, # .. 0x1DAAF ; Sutton SignWriting
353
+ 0x1DAB0, # .. 0x1DEFF ; No_Block
354
+ 0x1DF00, # .. 0x1DFFF ; Latin Extended-G
355
+ 0x1E000, # .. 0x1E02F ; Glagolitic Supplement
356
+ 0x1E030, # .. 0x1E08F ; Cyrillic Extended-D
357
+ 0x1E090, # .. 0x1E0FF ; No_Block
358
+ 0x1E100, # .. 0x1E14F ; Nyiakeng Puachue Hmong
359
+ 0x1E150, # .. 0x1E28F ; No_Block
360
+ 0x1E290, # .. 0x1E2BF ; Toto
361
+ 0x1E2C0, # .. 0x1E2FF ; Wancho
362
+ 0x1E300, # .. 0x1E4CF ; No_Block
363
+ 0x1E4D0, # .. 0x1E4FF ; Nag Mundari
364
+ 0x1E500, # .. 0x1E5CF ; No_Block
365
+ 0x1E5D0, # .. 0x1E5FF ; Ol Onal
366
+ 0x1E600, # .. 0x1E6BF ; No_Block
367
+ 0x1E6C0, # .. 0x1E6FF ; Tai Yo
368
+ 0x1E700, # .. 0x1E7DF ; No_Block
369
+ 0x1E7E0, # .. 0x1E7FF ; Ethiopic Extended-B
370
+ 0x1E800, # .. 0x1E8DF ; Mende Kikakui
371
+ 0x1E8E0, # .. 0x1E8FF ; No_Block
372
+ 0x1E900, # .. 0x1E95F ; Adlam
373
+ 0x1E960, # .. 0x1EC6F ; No_Block
374
+ 0x1EC70, # .. 0x1ECBF ; Indic Siyaq Numbers
375
+ 0x1ECC0, # .. 0x1ECFF ; No_Block
376
+ 0x1ED00, # .. 0x1ED4F ; Ottoman Siyaq Numbers
377
+ 0x1ED50, # .. 0x1EDFF ; No_Block
378
+ 0x1EE00, # .. 0x1EEFF ; Arabic Mathematical Alphabetic Symbols
379
+ 0x1EF00, # .. 0x1EFFF ; No_Block
380
+ 0x1F000, # .. 0x1F02F ; Mahjong Tiles
381
+ 0x1F030, # .. 0x1F09F ; Domino Tiles
382
+ 0x1F0A0, # .. 0x1F0FF ; Playing Cards
383
+ 0x1F100, # .. 0x1F1FF ; Enclosed Alphanumeric Supplement
384
+ 0x1F200, # .. 0x1F2FF ; Enclosed Ideographic Supplement
385
+ 0x1F300, # .. 0x1F5FF ; Miscellaneous Symbols and Pictographs
386
+ 0x1F600, # .. 0x1F64F ; Emoticons
387
+ 0x1F650, # .. 0x1F67F ; Ornamental Dingbats
388
+ 0x1F680, # .. 0x1F6FF ; Transport and Map Symbols
389
+ 0x1F700, # .. 0x1F77F ; Alchemical Symbols
390
+ 0x1F780, # .. 0x1F7FF ; Geometric Shapes Extended
391
+ 0x1F800, # .. 0x1F8FF ; Supplemental Arrows-C
392
+ 0x1F900, # .. 0x1F9FF ; Supplemental Symbols and Pictographs
393
+ 0x1FA00, # .. 0x1FA6F ; Chess Symbols
394
+ 0x1FA70, # .. 0x1FAFF ; Symbols and Pictographs Extended-A
395
+ 0x1FB00, # .. 0x1FBFF ; Symbols for Legacy Computing
396
+ 0x1FC00, # .. 0x1FFFF ; No_Block
397
+ 0x20000, # .. 0x2A6DF ; CJK Unified Ideographs Extension B
398
+ 0x2A6E0, # .. 0x2A6FF ; No_Block
399
+ 0x2A700, # .. 0x2B73F ; CJK Unified Ideographs Extension C
400
+ 0x2B740, # .. 0x2B81F ; CJK Unified Ideographs Extension D
401
+ 0x2B820, # .. 0x2CEAF ; CJK Unified Ideographs Extension E
402
+ 0x2CEB0, # .. 0x2EBEF ; CJK Unified Ideographs Extension F
403
+ 0x2EBF0, # .. 0x2EE5F ; CJK Unified Ideographs Extension I
404
+ 0x2EE60, # .. 0x2F7FF ; No_Block
405
+ 0x2F800, # .. 0x2FA1F ; CJK Compatibility Ideographs Supplement
406
+ 0x2FA20, # .. 0x2FFFF ; No_Block
407
+ 0x30000, # .. 0x3134F ; CJK Unified Ideographs Extension G
408
+ 0x31350, # .. 0x323AF ; CJK Unified Ideographs Extension H
409
+ 0x323B0, # .. 0x3347F ; CJK Unified Ideographs Extension J
410
+ 0x33480, # .. 0xDFFFF ; No_Block
411
+ 0xE0000, # .. 0xE007F ; Tags
412
+ 0xE0080, # .. 0xE00FF ; No_Block
413
+ 0xE0100, # .. 0xE01EF ; Variation Selectors Supplement
414
+ 0xE01F0, # .. 0xEFFFF ; No_Block
415
+ 0xF0000, # .. 0xFFFFF ; Supplementary Private Use Area-A
416
+ 0x100000, # .. 0x10FFFF ; Supplementary Private Use Area-B
417
+ ]
418
+
419
+ VALUES = [
420
+ "Basic Latin", # 0000..007F
421
+ "Latin-1 Supplement", # 0080..00FF
422
+ "Latin Extended-A", # 0100..017F
423
+ "Latin Extended-B", # 0180..024F
424
+ "IPA Extensions", # 0250..02AF
425
+ "Spacing Modifier Letters", # 02B0..02FF
426
+ "Combining Diacritical Marks", # 0300..036F
427
+ "Greek and Coptic", # 0370..03FF
428
+ "Cyrillic", # 0400..04FF
429
+ "Cyrillic Supplement", # 0500..052F
430
+ "Armenian", # 0530..058F
431
+ "Hebrew", # 0590..05FF
432
+ "Arabic", # 0600..06FF
433
+ "Syriac", # 0700..074F
434
+ "Arabic Supplement", # 0750..077F
435
+ "Thaana", # 0780..07BF
436
+ "NKo", # 07C0..07FF
437
+ "Samaritan", # 0800..083F
438
+ "Mandaic", # 0840..085F
439
+ "Syriac Supplement", # 0860..086F
440
+ "Arabic Extended-B", # 0870..089F
441
+ "Arabic Extended-A", # 08A0..08FF
442
+ "Devanagari", # 0900..097F
443
+ "Bengali", # 0980..09FF
444
+ "Gurmukhi", # 0A00..0A7F
445
+ "Gujarati", # 0A80..0AFF
446
+ "Oriya", # 0B00..0B7F
447
+ "Tamil", # 0B80..0BFF
448
+ "Telugu", # 0C00..0C7F
449
+ "Kannada", # 0C80..0CFF
450
+ "Malayalam", # 0D00..0D7F
451
+ "Sinhala", # 0D80..0DFF
452
+ "Thai", # 0E00..0E7F
453
+ "Lao", # 0E80..0EFF
454
+ "Tibetan", # 0F00..0FFF
455
+ "Myanmar", # 1000..109F
456
+ "Georgian", # 10A0..10FF
457
+ "Hangul Jamo", # 1100..11FF
458
+ "Ethiopic", # 1200..137F
459
+ "Ethiopic Supplement", # 1380..139F
460
+ "Cherokee", # 13A0..13FF
461
+ "Unified Canadian Aboriginal Syllabics", # 1400..167F
462
+ "Ogham", # 1680..169F
463
+ "Runic", # 16A0..16FF
464
+ "Tagalog", # 1700..171F
465
+ "Hanunoo", # 1720..173F
466
+ "Buhid", # 1740..175F
467
+ "Tagbanwa", # 1760..177F
468
+ "Khmer", # 1780..17FF
469
+ "Mongolian", # 1800..18AF
470
+ "Unified Canadian Aboriginal Syllabics Extended", # 18B0..18FF
471
+ "Limbu", # 1900..194F
472
+ "Tai Le", # 1950..197F
473
+ "New Tai Lue", # 1980..19DF
474
+ "Khmer Symbols", # 19E0..19FF
475
+ "Buginese", # 1A00..1A1F
476
+ "Tai Tham", # 1A20..1AAF
477
+ "Combining Diacritical Marks Extended", # 1AB0..1AFF
478
+ "Balinese", # 1B00..1B7F
479
+ "Sundanese", # 1B80..1BBF
480
+ "Batak", # 1BC0..1BFF
481
+ "Lepcha", # 1C00..1C4F
482
+ "Ol Chiki", # 1C50..1C7F
483
+ "Cyrillic Extended-C", # 1C80..1C8F
484
+ "Georgian Extended", # 1C90..1CBF
485
+ "Sundanese Supplement", # 1CC0..1CCF
486
+ "Vedic Extensions", # 1CD0..1CFF
487
+ "Phonetic Extensions", # 1D00..1D7F
488
+ "Phonetic Extensions Supplement", # 1D80..1DBF
489
+ "Combining Diacritical Marks Supplement", # 1DC0..1DFF
490
+ "Latin Extended Additional", # 1E00..1EFF
491
+ "Greek Extended", # 1F00..1FFF
492
+ "General Punctuation", # 2000..206F
493
+ "Superscripts and Subscripts", # 2070..209F
494
+ "Currency Symbols", # 20A0..20CF
495
+ "Combining Diacritical Marks for Symbols", # 20D0..20FF
496
+ "Letterlike Symbols", # 2100..214F
497
+ "Number Forms", # 2150..218F
498
+ "Arrows", # 2190..21FF
499
+ "Mathematical Operators", # 2200..22FF
500
+ "Miscellaneous Technical", # 2300..23FF
501
+ "Control Pictures", # 2400..243F
502
+ "Optical Character Recognition", # 2440..245F
503
+ "Enclosed Alphanumerics", # 2460..24FF
504
+ "Box Drawing", # 2500..257F
505
+ "Block Elements", # 2580..259F
506
+ "Geometric Shapes", # 25A0..25FF
507
+ "Miscellaneous Symbols", # 2600..26FF
508
+ "Dingbats", # 2700..27BF
509
+ "Miscellaneous Mathematical Symbols-A", # 27C0..27EF
510
+ "Supplemental Arrows-A", # 27F0..27FF
511
+ "Braille Patterns", # 2800..28FF
512
+ "Supplemental Arrows-B", # 2900..297F
513
+ "Miscellaneous Mathematical Symbols-B", # 2980..29FF
514
+ "Supplemental Mathematical Operators", # 2A00..2AFF
515
+ "Miscellaneous Symbols and Arrows", # 2B00..2BFF
516
+ "Glagolitic", # 2C00..2C5F
517
+ "Latin Extended-C", # 2C60..2C7F
518
+ "Coptic", # 2C80..2CFF
519
+ "Georgian Supplement", # 2D00..2D2F
520
+ "Tifinagh", # 2D30..2D7F
521
+ "Ethiopic Extended", # 2D80..2DDF
522
+ "Cyrillic Extended-A", # 2DE0..2DFF
523
+ "Supplemental Punctuation", # 2E00..2E7F
524
+ "CJK Radicals Supplement", # 2E80..2EFF
525
+ "Kangxi Radicals", # 2F00..2FDF
526
+ "No_Block", # 2FE0..2FEF
527
+ "Ideographic Description Characters", # 2FF0..2FFF
528
+ "CJK Symbols and Punctuation", # 3000..303F
529
+ "Hiragana", # 3040..309F
530
+ "Katakana", # 30A0..30FF
531
+ "Bopomofo", # 3100..312F
532
+ "Hangul Compatibility Jamo", # 3130..318F
533
+ "Kanbun", # 3190..319F
534
+ "Bopomofo Extended", # 31A0..31BF
535
+ "CJK Strokes", # 31C0..31EF
536
+ "Katakana Phonetic Extensions", # 31F0..31FF
537
+ "Enclosed CJK Letters and Months", # 3200..32FF
538
+ "CJK Compatibility", # 3300..33FF
539
+ "CJK Unified Ideographs Extension A", # 3400..4DBF
540
+ "Yijing Hexagram Symbols", # 4DC0..4DFF
541
+ "CJK Unified Ideographs", # 4E00..9FFF
542
+ "Yi Syllables", # A000..A48F
543
+ "Yi Radicals", # A490..A4CF
544
+ "Lisu", # A4D0..A4FF
545
+ "Vai", # A500..A63F
546
+ "Cyrillic Extended-B", # A640..A69F
547
+ "Bamum", # A6A0..A6FF
548
+ "Modifier Tone Letters", # A700..A71F
549
+ "Latin Extended-D", # A720..A7FF
550
+ "Syloti Nagri", # A800..A82F
551
+ "Common Indic Number Forms", # A830..A83F
552
+ "Phags-pa", # A840..A87F
553
+ "Saurashtra", # A880..A8DF
554
+ "Devanagari Extended", # A8E0..A8FF
555
+ "Kayah Li", # A900..A92F
556
+ "Rejang", # A930..A95F
557
+ "Hangul Jamo Extended-A", # A960..A97F
558
+ "Javanese", # A980..A9DF
559
+ "Myanmar Extended-B", # A9E0..A9FF
560
+ "Cham", # AA00..AA5F
561
+ "Myanmar Extended-A", # AA60..AA7F
562
+ "Tai Viet", # AA80..AADF
563
+ "Meetei Mayek Extensions", # AAE0..AAFF
564
+ "Ethiopic Extended-A", # AB00..AB2F
565
+ "Latin Extended-E", # AB30..AB6F
566
+ "Cherokee Supplement", # AB70..ABBF
567
+ "Meetei Mayek", # ABC0..ABFF
568
+ "Hangul Syllables", # AC00..D7AF
569
+ "Hangul Jamo Extended-B", # D7B0..D7FF
570
+ "High Surrogates", # D800..DB7F
571
+ "High Private Use Surrogates", # DB80..DBFF
572
+ "Low Surrogates", # DC00..DFFF
573
+ "Private Use Area", # E000..F8FF
574
+ "CJK Compatibility Ideographs", # F900..FAFF
575
+ "Alphabetic Presentation Forms", # FB00..FB4F
576
+ "Arabic Presentation Forms-A", # FB50..FDFF
577
+ "Variation Selectors", # FE00..FE0F
578
+ "Vertical Forms", # FE10..FE1F
579
+ "Combining Half Marks", # FE20..FE2F
580
+ "CJK Compatibility Forms", # FE30..FE4F
581
+ "Small Form Variants", # FE50..FE6F
582
+ "Arabic Presentation Forms-B", # FE70..FEFF
583
+ "Halfwidth and Fullwidth Forms", # FF00..FFEF
584
+ "Specials", # FFF0..FFFF
585
+ "Linear B Syllabary", # 10000..1007F
586
+ "Linear B Ideograms", # 10080..100FF
587
+ "Aegean Numbers", # 10100..1013F
588
+ "Ancient Greek Numbers", # 10140..1018F
589
+ "Ancient Symbols", # 10190..101CF
590
+ "Phaistos Disc", # 101D0..101FF
591
+ "No_Block", # 10200..1027F
592
+ "Lycian", # 10280..1029F
593
+ "Carian", # 102A0..102DF
594
+ "Coptic Epact Numbers", # 102E0..102FF
595
+ "Old Italic", # 10300..1032F
596
+ "Gothic", # 10330..1034F
597
+ "Old Permic", # 10350..1037F
598
+ "Ugaritic", # 10380..1039F
599
+ "Old Persian", # 103A0..103DF
600
+ "No_Block", # 103E0..103FF
601
+ "Deseret", # 10400..1044F
602
+ "Shavian", # 10450..1047F
603
+ "Osmanya", # 10480..104AF
604
+ "Osage", # 104B0..104FF
605
+ "Elbasan", # 10500..1052F
606
+ "Caucasian Albanian", # 10530..1056F
607
+ "Vithkuqi", # 10570..105BF
608
+ "Todhri", # 105C0..105FF
609
+ "Linear A", # 10600..1077F
610
+ "Latin Extended-F", # 10780..107BF
611
+ "No_Block", # 107C0..107FF
612
+ "Cypriot Syllabary", # 10800..1083F
613
+ "Imperial Aramaic", # 10840..1085F
614
+ "Palmyrene", # 10860..1087F
615
+ "Nabataean", # 10880..108AF
616
+ "No_Block", # 108B0..108DF
617
+ "Hatran", # 108E0..108FF
618
+ "Phoenician", # 10900..1091F
619
+ "Lydian", # 10920..1093F
620
+ "Sidetic", # 10940..1095F
621
+ "No_Block", # 10960..1097F
622
+ "Meroitic Hieroglyphs", # 10980..1099F
623
+ "Meroitic Cursive", # 109A0..109FF
624
+ "Kharoshthi", # 10A00..10A5F
625
+ "Old South Arabian", # 10A60..10A7F
626
+ "Old North Arabian", # 10A80..10A9F
627
+ "No_Block", # 10AA0..10ABF
628
+ "Manichaean", # 10AC0..10AFF
629
+ "Avestan", # 10B00..10B3F
630
+ "Inscriptional Parthian", # 10B40..10B5F
631
+ "Inscriptional Pahlavi", # 10B60..10B7F
632
+ "Psalter Pahlavi", # 10B80..10BAF
633
+ "No_Block", # 10BB0..10BFF
634
+ "Old Turkic", # 10C00..10C4F
635
+ "No_Block", # 10C50..10C7F
636
+ "Old Hungarian", # 10C80..10CFF
637
+ "Hanifi Rohingya", # 10D00..10D3F
638
+ "Garay", # 10D40..10D8F
639
+ "No_Block", # 10D90..10E5F
640
+ "Rumi Numeral Symbols", # 10E60..10E7F
641
+ "Yezidi", # 10E80..10EBF
642
+ "Arabic Extended-C", # 10EC0..10EFF
643
+ "Old Sogdian", # 10F00..10F2F
644
+ "Sogdian", # 10F30..10F6F
645
+ "Old Uyghur", # 10F70..10FAF
646
+ "Chorasmian", # 10FB0..10FDF
647
+ "Elymaic", # 10FE0..10FFF
648
+ "Brahmi", # 11000..1107F
649
+ "Kaithi", # 11080..110CF
650
+ "Sora Sompeng", # 110D0..110FF
651
+ "Chakma", # 11100..1114F
652
+ "Mahajani", # 11150..1117F
653
+ "Sharada", # 11180..111DF
654
+ "Sinhala Archaic Numbers", # 111E0..111FF
655
+ "Khojki", # 11200..1124F
656
+ "No_Block", # 11250..1127F
657
+ "Multani", # 11280..112AF
658
+ "Khudawadi", # 112B0..112FF
659
+ "Grantha", # 11300..1137F
660
+ "Tulu-Tigalari", # 11380..113FF
661
+ "Newa", # 11400..1147F
662
+ "Tirhuta", # 11480..114DF
663
+ "No_Block", # 114E0..1157F
664
+ "Siddham", # 11580..115FF
665
+ "Modi", # 11600..1165F
666
+ "Mongolian Supplement", # 11660..1167F
667
+ "Takri", # 11680..116CF
668
+ "Myanmar Extended-C", # 116D0..116FF
669
+ "Ahom", # 11700..1174F
670
+ "No_Block", # 11750..117FF
671
+ "Dogra", # 11800..1184F
672
+ "No_Block", # 11850..1189F
673
+ "Warang Citi", # 118A0..118FF
674
+ "Dives Akuru", # 11900..1195F
675
+ "No_Block", # 11960..1199F
676
+ "Nandinagari", # 119A0..119FF
677
+ "Zanabazar Square", # 11A00..11A4F
678
+ "Soyombo", # 11A50..11AAF
679
+ "Unified Canadian Aboriginal Syllabics Extended-A", # 11AB0..11ABF
680
+ "Pau Cin Hau", # 11AC0..11AFF
681
+ "Devanagari Extended-A", # 11B00..11B5F
682
+ "Sharada Supplement", # 11B60..11B7F
683
+ "No_Block", # 11B80..11BBF
684
+ "Sunuwar", # 11BC0..11BFF
685
+ "Bhaiksuki", # 11C00..11C6F
686
+ "Marchen", # 11C70..11CBF
687
+ "No_Block", # 11CC0..11CFF
688
+ "Masaram Gondi", # 11D00..11D5F
689
+ "Gunjala Gondi", # 11D60..11DAF
690
+ "Tolong Siki", # 11DB0..11DEF
691
+ "No_Block", # 11DF0..11EDF
692
+ "Makasar", # 11EE0..11EFF
693
+ "Kawi", # 11F00..11F5F
694
+ "No_Block", # 11F60..11FAF
695
+ "Lisu Supplement", # 11FB0..11FBF
696
+ "Tamil Supplement", # 11FC0..11FFF
697
+ "Cuneiform", # 12000..123FF
698
+ "Cuneiform Numbers and Punctuation", # 12400..1247F
699
+ "Early Dynastic Cuneiform", # 12480..1254F
700
+ "No_Block", # 12550..12F8F
701
+ "Cypro-Minoan", # 12F90..12FFF
702
+ "Egyptian Hieroglyphs", # 13000..1342F
703
+ "Egyptian Hieroglyph Format Controls", # 13430..1345F
704
+ "Egyptian Hieroglyphs Extended-A", # 13460..143FF
705
+ "Anatolian Hieroglyphs", # 14400..1467F
706
+ "No_Block", # 14680..160FF
707
+ "Gurung Khema", # 16100..1613F
708
+ "No_Block", # 16140..167FF
709
+ "Bamum Supplement", # 16800..16A3F
710
+ "Mro", # 16A40..16A6F
711
+ "Tangsa", # 16A70..16ACF
712
+ "Bassa Vah", # 16AD0..16AFF
713
+ "Pahawh Hmong", # 16B00..16B8F
714
+ "No_Block", # 16B90..16D3F
715
+ "Kirat Rai", # 16D40..16D7F
716
+ "No_Block", # 16D80..16E3F
717
+ "Medefaidrin", # 16E40..16E9F
718
+ "Beria Erfe", # 16EA0..16EDF
719
+ "No_Block", # 16EE0..16EFF
720
+ "Miao", # 16F00..16F9F
721
+ "No_Block", # 16FA0..16FDF
722
+ "Ideographic Symbols and Punctuation", # 16FE0..16FFF
723
+ "Tangut", # 17000..187FF
724
+ "Tangut Components", # 18800..18AFF
725
+ "Khitan Small Script", # 18B00..18CFF
726
+ "Tangut Supplement", # 18D00..18D7F
727
+ "Tangut Components Supplement", # 18D80..18DFF
728
+ "No_Block", # 18E00..1AFEF
729
+ "Kana Extended-B", # 1AFF0..1AFFF
730
+ "Kana Supplement", # 1B000..1B0FF
731
+ "Kana Extended-A", # 1B100..1B12F
732
+ "Small Kana Extension", # 1B130..1B16F
733
+ "Nushu", # 1B170..1B2FF
734
+ "No_Block", # 1B300..1BBFF
735
+ "Duployan", # 1BC00..1BC9F
736
+ "Shorthand Format Controls", # 1BCA0..1BCAF
737
+ "No_Block", # 1BCB0..1CBFF
738
+ "Symbols for Legacy Computing Supplement", # 1CC00..1CEBF
739
+ "Miscellaneous Symbols Supplement", # 1CEC0..1CEFF
740
+ "Znamenny Musical Notation", # 1CF00..1CFCF
741
+ "No_Block", # 1CFD0..1CFFF
742
+ "Byzantine Musical Symbols", # 1D000..1D0FF
743
+ "Musical Symbols", # 1D100..1D1FF
744
+ "Ancient Greek Musical Notation", # 1D200..1D24F
745
+ "No_Block", # 1D250..1D2BF
746
+ "Kaktovik Numerals", # 1D2C0..1D2DF
747
+ "Mayan Numerals", # 1D2E0..1D2FF
748
+ "Tai Xuan Jing Symbols", # 1D300..1D35F
749
+ "Counting Rod Numerals", # 1D360..1D37F
750
+ "No_Block", # 1D380..1D3FF
751
+ "Mathematical Alphanumeric Symbols", # 1D400..1D7FF
752
+ "Sutton SignWriting", # 1D800..1DAAF
753
+ "No_Block", # 1DAB0..1DEFF
754
+ "Latin Extended-G", # 1DF00..1DFFF
755
+ "Glagolitic Supplement", # 1E000..1E02F
756
+ "Cyrillic Extended-D", # 1E030..1E08F
757
+ "No_Block", # 1E090..1E0FF
758
+ "Nyiakeng Puachue Hmong", # 1E100..1E14F
759
+ "No_Block", # 1E150..1E28F
760
+ "Toto", # 1E290..1E2BF
761
+ "Wancho", # 1E2C0..1E2FF
762
+ "No_Block", # 1E300..1E4CF
763
+ "Nag Mundari", # 1E4D0..1E4FF
764
+ "No_Block", # 1E500..1E5CF
765
+ "Ol Onal", # 1E5D0..1E5FF
766
+ "No_Block", # 1E600..1E6BF
767
+ "Tai Yo", # 1E6C0..1E6FF
768
+ "No_Block", # 1E700..1E7DF
769
+ "Ethiopic Extended-B", # 1E7E0..1E7FF
770
+ "Mende Kikakui", # 1E800..1E8DF
771
+ "No_Block", # 1E8E0..1E8FF
772
+ "Adlam", # 1E900..1E95F
773
+ "No_Block", # 1E960..1EC6F
774
+ "Indic Siyaq Numbers", # 1EC70..1ECBF
775
+ "No_Block", # 1ECC0..1ECFF
776
+ "Ottoman Siyaq Numbers", # 1ED00..1ED4F
777
+ "No_Block", # 1ED50..1EDFF
778
+ "Arabic Mathematical Alphabetic Symbols", # 1EE00..1EEFF
779
+ "No_Block", # 1EF00..1EFFF
780
+ "Mahjong Tiles", # 1F000..1F02F
781
+ "Domino Tiles", # 1F030..1F09F
782
+ "Playing Cards", # 1F0A0..1F0FF
783
+ "Enclosed Alphanumeric Supplement", # 1F100..1F1FF
784
+ "Enclosed Ideographic Supplement", # 1F200..1F2FF
785
+ "Miscellaneous Symbols and Pictographs", # 1F300..1F5FF
786
+ "Emoticons", # 1F600..1F64F
787
+ "Ornamental Dingbats", # 1F650..1F67F
788
+ "Transport and Map Symbols", # 1F680..1F6FF
789
+ "Alchemical Symbols", # 1F700..1F77F
790
+ "Geometric Shapes Extended", # 1F780..1F7FF
791
+ "Supplemental Arrows-C", # 1F800..1F8FF
792
+ "Supplemental Symbols and Pictographs", # 1F900..1F9FF
793
+ "Chess Symbols", # 1FA00..1FA6F
794
+ "Symbols and Pictographs Extended-A", # 1FA70..1FAFF
795
+ "Symbols for Legacy Computing", # 1FB00..1FBFF
796
+ "No_Block", # 1FC00..1FFFF
797
+ "CJK Unified Ideographs Extension B", # 20000..2A6DF
798
+ "No_Block", # 2A6E0..2A6FF
799
+ "CJK Unified Ideographs Extension C", # 2A700..2B73F
800
+ "CJK Unified Ideographs Extension D", # 2B740..2B81F
801
+ "CJK Unified Ideographs Extension E", # 2B820..2CEAF
802
+ "CJK Unified Ideographs Extension F", # 2CEB0..2EBEF
803
+ "CJK Unified Ideographs Extension I", # 2EBF0..2EE5F
804
+ "No_Block", # 2EE60..2F7FF
805
+ "CJK Compatibility Ideographs Supplement", # 2F800..2FA1F
806
+ "No_Block", # 2FA20..2FFFF
807
+ "CJK Unified Ideographs Extension G", # 30000..3134F
808
+ "CJK Unified Ideographs Extension H", # 31350..323AF
809
+ "CJK Unified Ideographs Extension J", # 323B0..3347F
810
+ "No_Block", # 33480..DFFFF
811
+ "Tags", # E0000..E007F
812
+ "No_Block", # E0080..E00FF
813
+ "Variation Selectors Supplement", # E0100..E01EF
814
+ "No_Block", # E01F0..EFFFF
815
+ "Supplementary Private Use Area-A", # F0000..FFFFF
816
+ "Supplementary Private Use Area-B", # 100000..10FFFF
817
+ ]