fonttools 4.59.1__cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.

Potentially problematic release.


This version of fonttools might be problematic. Click here for more details.

Files changed (346) 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/cffLib/CFF2ToCFF.py +233 -0
  6. fontTools/cffLib/CFFToCFF2.py +305 -0
  7. fontTools/cffLib/__init__.py +3694 -0
  8. fontTools/cffLib/specializer.py +927 -0
  9. fontTools/cffLib/transforms.py +495 -0
  10. fontTools/cffLib/width.py +210 -0
  11. fontTools/colorLib/__init__.py +0 -0
  12. fontTools/colorLib/builder.py +664 -0
  13. fontTools/colorLib/errors.py +2 -0
  14. fontTools/colorLib/geometry.py +143 -0
  15. fontTools/colorLib/table_builder.py +223 -0
  16. fontTools/colorLib/unbuilder.py +81 -0
  17. fontTools/config/__init__.py +90 -0
  18. fontTools/cu2qu/__init__.py +15 -0
  19. fontTools/cu2qu/__main__.py +6 -0
  20. fontTools/cu2qu/benchmark.py +54 -0
  21. fontTools/cu2qu/cli.py +198 -0
  22. fontTools/cu2qu/cu2qu.c +15560 -0
  23. fontTools/cu2qu/cu2qu.cpython-314t-aarch64-linux-gnu.so +0 -0
  24. fontTools/cu2qu/cu2qu.py +531 -0
  25. fontTools/cu2qu/errors.py +77 -0
  26. fontTools/cu2qu/ufo.py +349 -0
  27. fontTools/designspaceLib/__init__.py +3338 -0
  28. fontTools/designspaceLib/__main__.py +6 -0
  29. fontTools/designspaceLib/split.py +475 -0
  30. fontTools/designspaceLib/statNames.py +260 -0
  31. fontTools/designspaceLib/types.py +147 -0
  32. fontTools/encodings/MacRoman.py +258 -0
  33. fontTools/encodings/StandardEncoding.py +258 -0
  34. fontTools/encodings/__init__.py +1 -0
  35. fontTools/encodings/codecs.py +135 -0
  36. fontTools/feaLib/__init__.py +4 -0
  37. fontTools/feaLib/__main__.py +78 -0
  38. fontTools/feaLib/ast.py +2143 -0
  39. fontTools/feaLib/builder.py +1802 -0
  40. fontTools/feaLib/error.py +22 -0
  41. fontTools/feaLib/lexer.c +17351 -0
  42. fontTools/feaLib/lexer.cpython-314t-aarch64-linux-gnu.so +0 -0
  43. fontTools/feaLib/lexer.py +287 -0
  44. fontTools/feaLib/location.py +12 -0
  45. fontTools/feaLib/lookupDebugInfo.py +12 -0
  46. fontTools/feaLib/parser.py +2379 -0
  47. fontTools/feaLib/variableScalar.py +113 -0
  48. fontTools/fontBuilder.py +1014 -0
  49. fontTools/help.py +36 -0
  50. fontTools/merge/__init__.py +248 -0
  51. fontTools/merge/__main__.py +6 -0
  52. fontTools/merge/base.py +81 -0
  53. fontTools/merge/cmap.py +173 -0
  54. fontTools/merge/layout.py +526 -0
  55. fontTools/merge/options.py +85 -0
  56. fontTools/merge/tables.py +352 -0
  57. fontTools/merge/unicode.py +78 -0
  58. fontTools/merge/util.py +143 -0
  59. fontTools/misc/__init__.py +1 -0
  60. fontTools/misc/arrayTools.py +424 -0
  61. fontTools/misc/bezierTools.c +40151 -0
  62. fontTools/misc/bezierTools.cpython-314t-aarch64-linux-gnu.so +0 -0
  63. fontTools/misc/bezierTools.py +1497 -0
  64. fontTools/misc/classifyTools.py +170 -0
  65. fontTools/misc/cliTools.py +53 -0
  66. fontTools/misc/configTools.py +349 -0
  67. fontTools/misc/cython.py +27 -0
  68. fontTools/misc/dictTools.py +83 -0
  69. fontTools/misc/eexec.py +119 -0
  70. fontTools/misc/encodingTools.py +72 -0
  71. fontTools/misc/etree.py +456 -0
  72. fontTools/misc/filenames.py +245 -0
  73. fontTools/misc/filesystem/__init__.py +68 -0
  74. fontTools/misc/filesystem/_base.py +134 -0
  75. fontTools/misc/filesystem/_copy.py +45 -0
  76. fontTools/misc/filesystem/_errors.py +54 -0
  77. fontTools/misc/filesystem/_info.py +75 -0
  78. fontTools/misc/filesystem/_osfs.py +164 -0
  79. fontTools/misc/filesystem/_path.py +67 -0
  80. fontTools/misc/filesystem/_subfs.py +92 -0
  81. fontTools/misc/filesystem/_tempfs.py +34 -0
  82. fontTools/misc/filesystem/_tools.py +34 -0
  83. fontTools/misc/filesystem/_walk.py +55 -0
  84. fontTools/misc/filesystem/_zipfs.py +204 -0
  85. fontTools/misc/fixedTools.py +253 -0
  86. fontTools/misc/intTools.py +25 -0
  87. fontTools/misc/iterTools.py +12 -0
  88. fontTools/misc/lazyTools.py +42 -0
  89. fontTools/misc/loggingTools.py +543 -0
  90. fontTools/misc/macCreatorType.py +56 -0
  91. fontTools/misc/macRes.py +261 -0
  92. fontTools/misc/plistlib/__init__.py +681 -0
  93. fontTools/misc/plistlib/py.typed +0 -0
  94. fontTools/misc/psCharStrings.py +1511 -0
  95. fontTools/misc/psLib.py +398 -0
  96. fontTools/misc/psOperators.py +572 -0
  97. fontTools/misc/py23.py +96 -0
  98. fontTools/misc/roundTools.py +110 -0
  99. fontTools/misc/sstruct.py +227 -0
  100. fontTools/misc/symfont.py +242 -0
  101. fontTools/misc/testTools.py +233 -0
  102. fontTools/misc/textTools.py +154 -0
  103. fontTools/misc/timeTools.py +88 -0
  104. fontTools/misc/transform.py +516 -0
  105. fontTools/misc/treeTools.py +45 -0
  106. fontTools/misc/vector.py +147 -0
  107. fontTools/misc/visitor.py +150 -0
  108. fontTools/misc/xmlReader.py +188 -0
  109. fontTools/misc/xmlWriter.py +231 -0
  110. fontTools/mtiLib/__init__.py +1400 -0
  111. fontTools/mtiLib/__main__.py +5 -0
  112. fontTools/otlLib/__init__.py +1 -0
  113. fontTools/otlLib/builder.py +3465 -0
  114. fontTools/otlLib/error.py +11 -0
  115. fontTools/otlLib/maxContextCalc.py +96 -0
  116. fontTools/otlLib/optimize/__init__.py +53 -0
  117. fontTools/otlLib/optimize/__main__.py +6 -0
  118. fontTools/otlLib/optimize/gpos.py +439 -0
  119. fontTools/pens/__init__.py +1 -0
  120. fontTools/pens/areaPen.py +52 -0
  121. fontTools/pens/basePen.py +475 -0
  122. fontTools/pens/boundsPen.py +98 -0
  123. fontTools/pens/cairoPen.py +26 -0
  124. fontTools/pens/cocoaPen.py +26 -0
  125. fontTools/pens/cu2quPen.py +325 -0
  126. fontTools/pens/explicitClosingLinePen.py +101 -0
  127. fontTools/pens/filterPen.py +241 -0
  128. fontTools/pens/freetypePen.py +462 -0
  129. fontTools/pens/hashPointPen.py +89 -0
  130. fontTools/pens/momentsPen.c +13466 -0
  131. fontTools/pens/momentsPen.cpython-314t-aarch64-linux-gnu.so +0 -0
  132. fontTools/pens/momentsPen.py +879 -0
  133. fontTools/pens/perimeterPen.py +69 -0
  134. fontTools/pens/pointInsidePen.py +192 -0
  135. fontTools/pens/pointPen.py +609 -0
  136. fontTools/pens/qtPen.py +29 -0
  137. fontTools/pens/qu2cuPen.py +105 -0
  138. fontTools/pens/quartzPen.py +43 -0
  139. fontTools/pens/recordingPen.py +335 -0
  140. fontTools/pens/reportLabPen.py +79 -0
  141. fontTools/pens/reverseContourPen.py +96 -0
  142. fontTools/pens/roundingPen.py +130 -0
  143. fontTools/pens/statisticsPen.py +312 -0
  144. fontTools/pens/svgPathPen.py +310 -0
  145. fontTools/pens/t2CharStringPen.py +88 -0
  146. fontTools/pens/teePen.py +55 -0
  147. fontTools/pens/transformPen.py +115 -0
  148. fontTools/pens/ttGlyphPen.py +335 -0
  149. fontTools/pens/wxPen.py +29 -0
  150. fontTools/qu2cu/__init__.py +15 -0
  151. fontTools/qu2cu/__main__.py +7 -0
  152. fontTools/qu2cu/benchmark.py +56 -0
  153. fontTools/qu2cu/cli.py +125 -0
  154. fontTools/qu2cu/qu2cu.c +16753 -0
  155. fontTools/qu2cu/qu2cu.cpython-314t-aarch64-linux-gnu.so +0 -0
  156. fontTools/qu2cu/qu2cu.py +405 -0
  157. fontTools/subset/__init__.py +3929 -0
  158. fontTools/subset/__main__.py +6 -0
  159. fontTools/subset/cff.py +184 -0
  160. fontTools/subset/svg.py +253 -0
  161. fontTools/subset/util.py +25 -0
  162. fontTools/svgLib/__init__.py +3 -0
  163. fontTools/svgLib/path/__init__.py +65 -0
  164. fontTools/svgLib/path/arc.py +154 -0
  165. fontTools/svgLib/path/parser.py +322 -0
  166. fontTools/svgLib/path/shapes.py +183 -0
  167. fontTools/t1Lib/__init__.py +648 -0
  168. fontTools/tfmLib.py +460 -0
  169. fontTools/ttLib/__init__.py +30 -0
  170. fontTools/ttLib/__main__.py +148 -0
  171. fontTools/ttLib/macUtils.py +54 -0
  172. fontTools/ttLib/removeOverlaps.py +393 -0
  173. fontTools/ttLib/reorderGlyphs.py +285 -0
  174. fontTools/ttLib/scaleUpem.py +436 -0
  175. fontTools/ttLib/sfnt.py +661 -0
  176. fontTools/ttLib/standardGlyphOrder.py +271 -0
  177. fontTools/ttLib/tables/B_A_S_E_.py +14 -0
  178. fontTools/ttLib/tables/BitmapGlyphMetrics.py +64 -0
  179. fontTools/ttLib/tables/C_B_D_T_.py +113 -0
  180. fontTools/ttLib/tables/C_B_L_C_.py +19 -0
  181. fontTools/ttLib/tables/C_F_F_.py +61 -0
  182. fontTools/ttLib/tables/C_F_F__2.py +26 -0
  183. fontTools/ttLib/tables/C_O_L_R_.py +165 -0
  184. fontTools/ttLib/tables/C_P_A_L_.py +305 -0
  185. fontTools/ttLib/tables/D_S_I_G_.py +158 -0
  186. fontTools/ttLib/tables/D__e_b_g.py +35 -0
  187. fontTools/ttLib/tables/DefaultTable.py +49 -0
  188. fontTools/ttLib/tables/E_B_D_T_.py +835 -0
  189. fontTools/ttLib/tables/E_B_L_C_.py +718 -0
  190. fontTools/ttLib/tables/F_F_T_M_.py +52 -0
  191. fontTools/ttLib/tables/F__e_a_t.py +149 -0
  192. fontTools/ttLib/tables/G_D_E_F_.py +13 -0
  193. fontTools/ttLib/tables/G_M_A_P_.py +148 -0
  194. fontTools/ttLib/tables/G_P_K_G_.py +133 -0
  195. fontTools/ttLib/tables/G_P_O_S_.py +14 -0
  196. fontTools/ttLib/tables/G_S_U_B_.py +13 -0
  197. fontTools/ttLib/tables/G_V_A_R_.py +5 -0
  198. fontTools/ttLib/tables/G__l_a_t.py +235 -0
  199. fontTools/ttLib/tables/G__l_o_c.py +85 -0
  200. fontTools/ttLib/tables/H_V_A_R_.py +13 -0
  201. fontTools/ttLib/tables/J_S_T_F_.py +13 -0
  202. fontTools/ttLib/tables/L_T_S_H_.py +58 -0
  203. fontTools/ttLib/tables/M_A_T_H_.py +13 -0
  204. fontTools/ttLib/tables/M_E_T_A_.py +352 -0
  205. fontTools/ttLib/tables/M_V_A_R_.py +13 -0
  206. fontTools/ttLib/tables/O_S_2f_2.py +752 -0
  207. fontTools/ttLib/tables/S_I_N_G_.py +99 -0
  208. fontTools/ttLib/tables/S_T_A_T_.py +15 -0
  209. fontTools/ttLib/tables/S_V_G_.py +223 -0
  210. fontTools/ttLib/tables/S__i_l_f.py +1040 -0
  211. fontTools/ttLib/tables/S__i_l_l.py +92 -0
  212. fontTools/ttLib/tables/T_S_I_B_.py +13 -0
  213. fontTools/ttLib/tables/T_S_I_C_.py +14 -0
  214. fontTools/ttLib/tables/T_S_I_D_.py +13 -0
  215. fontTools/ttLib/tables/T_S_I_J_.py +13 -0
  216. fontTools/ttLib/tables/T_S_I_P_.py +13 -0
  217. fontTools/ttLib/tables/T_S_I_S_.py +13 -0
  218. fontTools/ttLib/tables/T_S_I_V_.py +26 -0
  219. fontTools/ttLib/tables/T_S_I__0.py +70 -0
  220. fontTools/ttLib/tables/T_S_I__1.py +163 -0
  221. fontTools/ttLib/tables/T_S_I__2.py +17 -0
  222. fontTools/ttLib/tables/T_S_I__3.py +22 -0
  223. fontTools/ttLib/tables/T_S_I__5.py +60 -0
  224. fontTools/ttLib/tables/T_T_F_A_.py +14 -0
  225. fontTools/ttLib/tables/TupleVariation.py +884 -0
  226. fontTools/ttLib/tables/V_A_R_C_.py +12 -0
  227. fontTools/ttLib/tables/V_D_M_X_.py +249 -0
  228. fontTools/ttLib/tables/V_O_R_G_.py +165 -0
  229. fontTools/ttLib/tables/V_V_A_R_.py +13 -0
  230. fontTools/ttLib/tables/__init__.py +98 -0
  231. fontTools/ttLib/tables/_a_n_k_r.py +15 -0
  232. fontTools/ttLib/tables/_a_v_a_r.py +191 -0
  233. fontTools/ttLib/tables/_b_s_l_n.py +15 -0
  234. fontTools/ttLib/tables/_c_i_d_g.py +24 -0
  235. fontTools/ttLib/tables/_c_m_a_p.py +1591 -0
  236. fontTools/ttLib/tables/_c_v_a_r.py +94 -0
  237. fontTools/ttLib/tables/_c_v_t.py +56 -0
  238. fontTools/ttLib/tables/_f_e_a_t.py +15 -0
  239. fontTools/ttLib/tables/_f_p_g_m.py +62 -0
  240. fontTools/ttLib/tables/_f_v_a_r.py +261 -0
  241. fontTools/ttLib/tables/_g_a_s_p.py +63 -0
  242. fontTools/ttLib/tables/_g_c_i_d.py +13 -0
  243. fontTools/ttLib/tables/_g_l_y_f.py +2311 -0
  244. fontTools/ttLib/tables/_g_v_a_r.py +340 -0
  245. fontTools/ttLib/tables/_h_d_m_x.py +127 -0
  246. fontTools/ttLib/tables/_h_e_a_d.py +130 -0
  247. fontTools/ttLib/tables/_h_h_e_a.py +147 -0
  248. fontTools/ttLib/tables/_h_m_t_x.py +164 -0
  249. fontTools/ttLib/tables/_k_e_r_n.py +289 -0
  250. fontTools/ttLib/tables/_l_c_a_r.py +13 -0
  251. fontTools/ttLib/tables/_l_o_c_a.py +70 -0
  252. fontTools/ttLib/tables/_l_t_a_g.py +72 -0
  253. fontTools/ttLib/tables/_m_a_x_p.py +147 -0
  254. fontTools/ttLib/tables/_m_e_t_a.py +112 -0
  255. fontTools/ttLib/tables/_m_o_r_t.py +14 -0
  256. fontTools/ttLib/tables/_m_o_r_x.py +15 -0
  257. fontTools/ttLib/tables/_n_a_m_e.py +1237 -0
  258. fontTools/ttLib/tables/_o_p_b_d.py +14 -0
  259. fontTools/ttLib/tables/_p_o_s_t.py +319 -0
  260. fontTools/ttLib/tables/_p_r_e_p.py +16 -0
  261. fontTools/ttLib/tables/_p_r_o_p.py +12 -0
  262. fontTools/ttLib/tables/_s_b_i_x.py +129 -0
  263. fontTools/ttLib/tables/_t_r_a_k.py +332 -0
  264. fontTools/ttLib/tables/_v_h_e_a.py +139 -0
  265. fontTools/ttLib/tables/_v_m_t_x.py +19 -0
  266. fontTools/ttLib/tables/asciiTable.py +20 -0
  267. fontTools/ttLib/tables/grUtils.py +92 -0
  268. fontTools/ttLib/tables/otBase.py +1464 -0
  269. fontTools/ttLib/tables/otConverters.py +2068 -0
  270. fontTools/ttLib/tables/otData.py +6400 -0
  271. fontTools/ttLib/tables/otTables.py +2703 -0
  272. fontTools/ttLib/tables/otTraverse.py +163 -0
  273. fontTools/ttLib/tables/sbixGlyph.py +149 -0
  274. fontTools/ttLib/tables/sbixStrike.py +177 -0
  275. fontTools/ttLib/tables/table_API_readme.txt +91 -0
  276. fontTools/ttLib/tables/ttProgram.py +594 -0
  277. fontTools/ttLib/ttCollection.py +125 -0
  278. fontTools/ttLib/ttFont.py +1148 -0
  279. fontTools/ttLib/ttGlyphSet.py +490 -0
  280. fontTools/ttLib/ttVisitor.py +32 -0
  281. fontTools/ttLib/woff2.py +1680 -0
  282. fontTools/ttx.py +479 -0
  283. fontTools/ufoLib/__init__.py +2472 -0
  284. fontTools/ufoLib/converters.py +398 -0
  285. fontTools/ufoLib/errors.py +30 -0
  286. fontTools/ufoLib/etree.py +6 -0
  287. fontTools/ufoLib/filenames.py +346 -0
  288. fontTools/ufoLib/glifLib.py +2024 -0
  289. fontTools/ufoLib/kerning.py +121 -0
  290. fontTools/ufoLib/plistlib.py +47 -0
  291. fontTools/ufoLib/pointPen.py +6 -0
  292. fontTools/ufoLib/utils.py +79 -0
  293. fontTools/ufoLib/validators.py +1184 -0
  294. fontTools/unicode.py +50 -0
  295. fontTools/unicodedata/Blocks.py +801 -0
  296. fontTools/unicodedata/Mirrored.py +446 -0
  297. fontTools/unicodedata/OTTags.py +50 -0
  298. fontTools/unicodedata/ScriptExtensions.py +826 -0
  299. fontTools/unicodedata/Scripts.py +3617 -0
  300. fontTools/unicodedata/__init__.py +304 -0
  301. fontTools/varLib/__init__.py +1517 -0
  302. fontTools/varLib/__main__.py +6 -0
  303. fontTools/varLib/avar.py +260 -0
  304. fontTools/varLib/avarPlanner.py +1004 -0
  305. fontTools/varLib/builder.py +215 -0
  306. fontTools/varLib/cff.py +631 -0
  307. fontTools/varLib/errors.py +219 -0
  308. fontTools/varLib/featureVars.py +703 -0
  309. fontTools/varLib/hvar.py +113 -0
  310. fontTools/varLib/instancer/__init__.py +2014 -0
  311. fontTools/varLib/instancer/__main__.py +5 -0
  312. fontTools/varLib/instancer/featureVars.py +190 -0
  313. fontTools/varLib/instancer/names.py +388 -0
  314. fontTools/varLib/instancer/solver.py +309 -0
  315. fontTools/varLib/interpolatable.py +1209 -0
  316. fontTools/varLib/interpolatableHelpers.py +396 -0
  317. fontTools/varLib/interpolatablePlot.py +1269 -0
  318. fontTools/varLib/interpolatableTestContourOrder.py +82 -0
  319. fontTools/varLib/interpolatableTestStartingPoint.py +107 -0
  320. fontTools/varLib/interpolate_layout.py +124 -0
  321. fontTools/varLib/iup.c +19845 -0
  322. fontTools/varLib/iup.cpython-314t-aarch64-linux-gnu.so +0 -0
  323. fontTools/varLib/iup.py +490 -0
  324. fontTools/varLib/merger.py +1717 -0
  325. fontTools/varLib/models.py +642 -0
  326. fontTools/varLib/multiVarStore.py +253 -0
  327. fontTools/varLib/mutator.py +529 -0
  328. fontTools/varLib/mvar.py +40 -0
  329. fontTools/varLib/plot.py +238 -0
  330. fontTools/varLib/stat.py +149 -0
  331. fontTools/varLib/varStore.py +739 -0
  332. fontTools/voltLib/__init__.py +5 -0
  333. fontTools/voltLib/__main__.py +206 -0
  334. fontTools/voltLib/ast.py +452 -0
  335. fontTools/voltLib/error.py +12 -0
  336. fontTools/voltLib/lexer.py +99 -0
  337. fontTools/voltLib/parser.py +664 -0
  338. fontTools/voltLib/voltToFea.py +911 -0
  339. fonttools-4.59.1.data/data/share/man/man1/ttx.1 +225 -0
  340. fonttools-4.59.1.dist-info/METADATA +2175 -0
  341. fonttools-4.59.1.dist-info/RECORD +346 -0
  342. fonttools-4.59.1.dist-info/WHEEL +7 -0
  343. fonttools-4.59.1.dist-info/entry_points.txt +5 -0
  344. fonttools-4.59.1.dist-info/licenses/LICENSE +21 -0
  345. fonttools-4.59.1.dist-info/licenses/LICENSE.external +388 -0
  346. fonttools-4.59.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,801 @@
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-16.0.0.txt
8
+ # Date: 2024-02-02
9
+ # © 2024 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, # .. 0x1097F ; No_Block
221
+ 0x10980, # .. 0x1099F ; Meroitic Hieroglyphs
222
+ 0x109A0, # .. 0x109FF ; Meroitic Cursive
223
+ 0x10A00, # .. 0x10A5F ; Kharoshthi
224
+ 0x10A60, # .. 0x10A7F ; Old South Arabian
225
+ 0x10A80, # .. 0x10A9F ; Old North Arabian
226
+ 0x10AA0, # .. 0x10ABF ; No_Block
227
+ 0x10AC0, # .. 0x10AFF ; Manichaean
228
+ 0x10B00, # .. 0x10B3F ; Avestan
229
+ 0x10B40, # .. 0x10B5F ; Inscriptional Parthian
230
+ 0x10B60, # .. 0x10B7F ; Inscriptional Pahlavi
231
+ 0x10B80, # .. 0x10BAF ; Psalter Pahlavi
232
+ 0x10BB0, # .. 0x10BFF ; No_Block
233
+ 0x10C00, # .. 0x10C4F ; Old Turkic
234
+ 0x10C50, # .. 0x10C7F ; No_Block
235
+ 0x10C80, # .. 0x10CFF ; Old Hungarian
236
+ 0x10D00, # .. 0x10D3F ; Hanifi Rohingya
237
+ 0x10D40, # .. 0x10D8F ; Garay
238
+ 0x10D90, # .. 0x10E5F ; No_Block
239
+ 0x10E60, # .. 0x10E7F ; Rumi Numeral Symbols
240
+ 0x10E80, # .. 0x10EBF ; Yezidi
241
+ 0x10EC0, # .. 0x10EFF ; Arabic Extended-C
242
+ 0x10F00, # .. 0x10F2F ; Old Sogdian
243
+ 0x10F30, # .. 0x10F6F ; Sogdian
244
+ 0x10F70, # .. 0x10FAF ; Old Uyghur
245
+ 0x10FB0, # .. 0x10FDF ; Chorasmian
246
+ 0x10FE0, # .. 0x10FFF ; Elymaic
247
+ 0x11000, # .. 0x1107F ; Brahmi
248
+ 0x11080, # .. 0x110CF ; Kaithi
249
+ 0x110D0, # .. 0x110FF ; Sora Sompeng
250
+ 0x11100, # .. 0x1114F ; Chakma
251
+ 0x11150, # .. 0x1117F ; Mahajani
252
+ 0x11180, # .. 0x111DF ; Sharada
253
+ 0x111E0, # .. 0x111FF ; Sinhala Archaic Numbers
254
+ 0x11200, # .. 0x1124F ; Khojki
255
+ 0x11250, # .. 0x1127F ; No_Block
256
+ 0x11280, # .. 0x112AF ; Multani
257
+ 0x112B0, # .. 0x112FF ; Khudawadi
258
+ 0x11300, # .. 0x1137F ; Grantha
259
+ 0x11380, # .. 0x113FF ; Tulu-Tigalari
260
+ 0x11400, # .. 0x1147F ; Newa
261
+ 0x11480, # .. 0x114DF ; Tirhuta
262
+ 0x114E0, # .. 0x1157F ; No_Block
263
+ 0x11580, # .. 0x115FF ; Siddham
264
+ 0x11600, # .. 0x1165F ; Modi
265
+ 0x11660, # .. 0x1167F ; Mongolian Supplement
266
+ 0x11680, # .. 0x116CF ; Takri
267
+ 0x116D0, # .. 0x116FF ; Myanmar Extended-C
268
+ 0x11700, # .. 0x1174F ; Ahom
269
+ 0x11750, # .. 0x117FF ; No_Block
270
+ 0x11800, # .. 0x1184F ; Dogra
271
+ 0x11850, # .. 0x1189F ; No_Block
272
+ 0x118A0, # .. 0x118FF ; Warang Citi
273
+ 0x11900, # .. 0x1195F ; Dives Akuru
274
+ 0x11960, # .. 0x1199F ; No_Block
275
+ 0x119A0, # .. 0x119FF ; Nandinagari
276
+ 0x11A00, # .. 0x11A4F ; Zanabazar Square
277
+ 0x11A50, # .. 0x11AAF ; Soyombo
278
+ 0x11AB0, # .. 0x11ABF ; Unified Canadian Aboriginal Syllabics Extended-A
279
+ 0x11AC0, # .. 0x11AFF ; Pau Cin Hau
280
+ 0x11B00, # .. 0x11B5F ; Devanagari Extended-A
281
+ 0x11B60, # .. 0x11BBF ; No_Block
282
+ 0x11BC0, # .. 0x11BFF ; Sunuwar
283
+ 0x11C00, # .. 0x11C6F ; Bhaiksuki
284
+ 0x11C70, # .. 0x11CBF ; Marchen
285
+ 0x11CC0, # .. 0x11CFF ; No_Block
286
+ 0x11D00, # .. 0x11D5F ; Masaram Gondi
287
+ 0x11D60, # .. 0x11DAF ; Gunjala Gondi
288
+ 0x11DB0, # .. 0x11EDF ; No_Block
289
+ 0x11EE0, # .. 0x11EFF ; Makasar
290
+ 0x11F00, # .. 0x11F5F ; Kawi
291
+ 0x11F60, # .. 0x11FAF ; No_Block
292
+ 0x11FB0, # .. 0x11FBF ; Lisu Supplement
293
+ 0x11FC0, # .. 0x11FFF ; Tamil Supplement
294
+ 0x12000, # .. 0x123FF ; Cuneiform
295
+ 0x12400, # .. 0x1247F ; Cuneiform Numbers and Punctuation
296
+ 0x12480, # .. 0x1254F ; Early Dynastic Cuneiform
297
+ 0x12550, # .. 0x12F8F ; No_Block
298
+ 0x12F90, # .. 0x12FFF ; Cypro-Minoan
299
+ 0x13000, # .. 0x1342F ; Egyptian Hieroglyphs
300
+ 0x13430, # .. 0x1345F ; Egyptian Hieroglyph Format Controls
301
+ 0x13460, # .. 0x143FF ; Egyptian Hieroglyphs Extended-A
302
+ 0x14400, # .. 0x1467F ; Anatolian Hieroglyphs
303
+ 0x14680, # .. 0x160FF ; No_Block
304
+ 0x16100, # .. 0x1613F ; Gurung Khema
305
+ 0x16140, # .. 0x167FF ; No_Block
306
+ 0x16800, # .. 0x16A3F ; Bamum Supplement
307
+ 0x16A40, # .. 0x16A6F ; Mro
308
+ 0x16A70, # .. 0x16ACF ; Tangsa
309
+ 0x16AD0, # .. 0x16AFF ; Bassa Vah
310
+ 0x16B00, # .. 0x16B8F ; Pahawh Hmong
311
+ 0x16B90, # .. 0x16D3F ; No_Block
312
+ 0x16D40, # .. 0x16D7F ; Kirat Rai
313
+ 0x16D80, # .. 0x16E3F ; No_Block
314
+ 0x16E40, # .. 0x16E9F ; Medefaidrin
315
+ 0x16EA0, # .. 0x16EFF ; No_Block
316
+ 0x16F00, # .. 0x16F9F ; Miao
317
+ 0x16FA0, # .. 0x16FDF ; No_Block
318
+ 0x16FE0, # .. 0x16FFF ; Ideographic Symbols and Punctuation
319
+ 0x17000, # .. 0x187FF ; Tangut
320
+ 0x18800, # .. 0x18AFF ; Tangut Components
321
+ 0x18B00, # .. 0x18CFF ; Khitan Small Script
322
+ 0x18D00, # .. 0x18D7F ; Tangut Supplement
323
+ 0x18D80, # .. 0x1AFEF ; No_Block
324
+ 0x1AFF0, # .. 0x1AFFF ; Kana Extended-B
325
+ 0x1B000, # .. 0x1B0FF ; Kana Supplement
326
+ 0x1B100, # .. 0x1B12F ; Kana Extended-A
327
+ 0x1B130, # .. 0x1B16F ; Small Kana Extension
328
+ 0x1B170, # .. 0x1B2FF ; Nushu
329
+ 0x1B300, # .. 0x1BBFF ; No_Block
330
+ 0x1BC00, # .. 0x1BC9F ; Duployan
331
+ 0x1BCA0, # .. 0x1BCAF ; Shorthand Format Controls
332
+ 0x1BCB0, # .. 0x1CBFF ; No_Block
333
+ 0x1CC00, # .. 0x1CEBF ; Symbols for Legacy Computing Supplement
334
+ 0x1CEC0, # .. 0x1CEFF ; No_Block
335
+ 0x1CF00, # .. 0x1CFCF ; Znamenny Musical Notation
336
+ 0x1CFD0, # .. 0x1CFFF ; No_Block
337
+ 0x1D000, # .. 0x1D0FF ; Byzantine Musical Symbols
338
+ 0x1D100, # .. 0x1D1FF ; Musical Symbols
339
+ 0x1D200, # .. 0x1D24F ; Ancient Greek Musical Notation
340
+ 0x1D250, # .. 0x1D2BF ; No_Block
341
+ 0x1D2C0, # .. 0x1D2DF ; Kaktovik Numerals
342
+ 0x1D2E0, # .. 0x1D2FF ; Mayan Numerals
343
+ 0x1D300, # .. 0x1D35F ; Tai Xuan Jing Symbols
344
+ 0x1D360, # .. 0x1D37F ; Counting Rod Numerals
345
+ 0x1D380, # .. 0x1D3FF ; No_Block
346
+ 0x1D400, # .. 0x1D7FF ; Mathematical Alphanumeric Symbols
347
+ 0x1D800, # .. 0x1DAAF ; Sutton SignWriting
348
+ 0x1DAB0, # .. 0x1DEFF ; No_Block
349
+ 0x1DF00, # .. 0x1DFFF ; Latin Extended-G
350
+ 0x1E000, # .. 0x1E02F ; Glagolitic Supplement
351
+ 0x1E030, # .. 0x1E08F ; Cyrillic Extended-D
352
+ 0x1E090, # .. 0x1E0FF ; No_Block
353
+ 0x1E100, # .. 0x1E14F ; Nyiakeng Puachue Hmong
354
+ 0x1E150, # .. 0x1E28F ; No_Block
355
+ 0x1E290, # .. 0x1E2BF ; Toto
356
+ 0x1E2C0, # .. 0x1E2FF ; Wancho
357
+ 0x1E300, # .. 0x1E4CF ; No_Block
358
+ 0x1E4D0, # .. 0x1E4FF ; Nag Mundari
359
+ 0x1E500, # .. 0x1E5CF ; No_Block
360
+ 0x1E5D0, # .. 0x1E5FF ; Ol Onal
361
+ 0x1E600, # .. 0x1E7DF ; No_Block
362
+ 0x1E7E0, # .. 0x1E7FF ; Ethiopic Extended-B
363
+ 0x1E800, # .. 0x1E8DF ; Mende Kikakui
364
+ 0x1E8E0, # .. 0x1E8FF ; No_Block
365
+ 0x1E900, # .. 0x1E95F ; Adlam
366
+ 0x1E960, # .. 0x1EC6F ; No_Block
367
+ 0x1EC70, # .. 0x1ECBF ; Indic Siyaq Numbers
368
+ 0x1ECC0, # .. 0x1ECFF ; No_Block
369
+ 0x1ED00, # .. 0x1ED4F ; Ottoman Siyaq Numbers
370
+ 0x1ED50, # .. 0x1EDFF ; No_Block
371
+ 0x1EE00, # .. 0x1EEFF ; Arabic Mathematical Alphabetic Symbols
372
+ 0x1EF00, # .. 0x1EFFF ; No_Block
373
+ 0x1F000, # .. 0x1F02F ; Mahjong Tiles
374
+ 0x1F030, # .. 0x1F09F ; Domino Tiles
375
+ 0x1F0A0, # .. 0x1F0FF ; Playing Cards
376
+ 0x1F100, # .. 0x1F1FF ; Enclosed Alphanumeric Supplement
377
+ 0x1F200, # .. 0x1F2FF ; Enclosed Ideographic Supplement
378
+ 0x1F300, # .. 0x1F5FF ; Miscellaneous Symbols and Pictographs
379
+ 0x1F600, # .. 0x1F64F ; Emoticons
380
+ 0x1F650, # .. 0x1F67F ; Ornamental Dingbats
381
+ 0x1F680, # .. 0x1F6FF ; Transport and Map Symbols
382
+ 0x1F700, # .. 0x1F77F ; Alchemical Symbols
383
+ 0x1F780, # .. 0x1F7FF ; Geometric Shapes Extended
384
+ 0x1F800, # .. 0x1F8FF ; Supplemental Arrows-C
385
+ 0x1F900, # .. 0x1F9FF ; Supplemental Symbols and Pictographs
386
+ 0x1FA00, # .. 0x1FA6F ; Chess Symbols
387
+ 0x1FA70, # .. 0x1FAFF ; Symbols and Pictographs Extended-A
388
+ 0x1FB00, # .. 0x1FBFF ; Symbols for Legacy Computing
389
+ 0x1FC00, # .. 0x1FFFF ; No_Block
390
+ 0x20000, # .. 0x2A6DF ; CJK Unified Ideographs Extension B
391
+ 0x2A6E0, # .. 0x2A6FF ; No_Block
392
+ 0x2A700, # .. 0x2B73F ; CJK Unified Ideographs Extension C
393
+ 0x2B740, # .. 0x2B81F ; CJK Unified Ideographs Extension D
394
+ 0x2B820, # .. 0x2CEAF ; CJK Unified Ideographs Extension E
395
+ 0x2CEB0, # .. 0x2EBEF ; CJK Unified Ideographs Extension F
396
+ 0x2EBF0, # .. 0x2EE5F ; CJK Unified Ideographs Extension I
397
+ 0x2EE60, # .. 0x2F7FF ; No_Block
398
+ 0x2F800, # .. 0x2FA1F ; CJK Compatibility Ideographs Supplement
399
+ 0x2FA20, # .. 0x2FFFF ; No_Block
400
+ 0x30000, # .. 0x3134F ; CJK Unified Ideographs Extension G
401
+ 0x31350, # .. 0x323AF ; CJK Unified Ideographs Extension H
402
+ 0x323B0, # .. 0xDFFFF ; No_Block
403
+ 0xE0000, # .. 0xE007F ; Tags
404
+ 0xE0080, # .. 0xE00FF ; No_Block
405
+ 0xE0100, # .. 0xE01EF ; Variation Selectors Supplement
406
+ 0xE01F0, # .. 0xEFFFF ; No_Block
407
+ 0xF0000, # .. 0xFFFFF ; Supplementary Private Use Area-A
408
+ 0x100000, # .. 0x10FFFF ; Supplementary Private Use Area-B
409
+ ]
410
+
411
+ VALUES = [
412
+ "Basic Latin", # 0000..007F
413
+ "Latin-1 Supplement", # 0080..00FF
414
+ "Latin Extended-A", # 0100..017F
415
+ "Latin Extended-B", # 0180..024F
416
+ "IPA Extensions", # 0250..02AF
417
+ "Spacing Modifier Letters", # 02B0..02FF
418
+ "Combining Diacritical Marks", # 0300..036F
419
+ "Greek and Coptic", # 0370..03FF
420
+ "Cyrillic", # 0400..04FF
421
+ "Cyrillic Supplement", # 0500..052F
422
+ "Armenian", # 0530..058F
423
+ "Hebrew", # 0590..05FF
424
+ "Arabic", # 0600..06FF
425
+ "Syriac", # 0700..074F
426
+ "Arabic Supplement", # 0750..077F
427
+ "Thaana", # 0780..07BF
428
+ "NKo", # 07C0..07FF
429
+ "Samaritan", # 0800..083F
430
+ "Mandaic", # 0840..085F
431
+ "Syriac Supplement", # 0860..086F
432
+ "Arabic Extended-B", # 0870..089F
433
+ "Arabic Extended-A", # 08A0..08FF
434
+ "Devanagari", # 0900..097F
435
+ "Bengali", # 0980..09FF
436
+ "Gurmukhi", # 0A00..0A7F
437
+ "Gujarati", # 0A80..0AFF
438
+ "Oriya", # 0B00..0B7F
439
+ "Tamil", # 0B80..0BFF
440
+ "Telugu", # 0C00..0C7F
441
+ "Kannada", # 0C80..0CFF
442
+ "Malayalam", # 0D00..0D7F
443
+ "Sinhala", # 0D80..0DFF
444
+ "Thai", # 0E00..0E7F
445
+ "Lao", # 0E80..0EFF
446
+ "Tibetan", # 0F00..0FFF
447
+ "Myanmar", # 1000..109F
448
+ "Georgian", # 10A0..10FF
449
+ "Hangul Jamo", # 1100..11FF
450
+ "Ethiopic", # 1200..137F
451
+ "Ethiopic Supplement", # 1380..139F
452
+ "Cherokee", # 13A0..13FF
453
+ "Unified Canadian Aboriginal Syllabics", # 1400..167F
454
+ "Ogham", # 1680..169F
455
+ "Runic", # 16A0..16FF
456
+ "Tagalog", # 1700..171F
457
+ "Hanunoo", # 1720..173F
458
+ "Buhid", # 1740..175F
459
+ "Tagbanwa", # 1760..177F
460
+ "Khmer", # 1780..17FF
461
+ "Mongolian", # 1800..18AF
462
+ "Unified Canadian Aboriginal Syllabics Extended", # 18B0..18FF
463
+ "Limbu", # 1900..194F
464
+ "Tai Le", # 1950..197F
465
+ "New Tai Lue", # 1980..19DF
466
+ "Khmer Symbols", # 19E0..19FF
467
+ "Buginese", # 1A00..1A1F
468
+ "Tai Tham", # 1A20..1AAF
469
+ "Combining Diacritical Marks Extended", # 1AB0..1AFF
470
+ "Balinese", # 1B00..1B7F
471
+ "Sundanese", # 1B80..1BBF
472
+ "Batak", # 1BC0..1BFF
473
+ "Lepcha", # 1C00..1C4F
474
+ "Ol Chiki", # 1C50..1C7F
475
+ "Cyrillic Extended-C", # 1C80..1C8F
476
+ "Georgian Extended", # 1C90..1CBF
477
+ "Sundanese Supplement", # 1CC0..1CCF
478
+ "Vedic Extensions", # 1CD0..1CFF
479
+ "Phonetic Extensions", # 1D00..1D7F
480
+ "Phonetic Extensions Supplement", # 1D80..1DBF
481
+ "Combining Diacritical Marks Supplement", # 1DC0..1DFF
482
+ "Latin Extended Additional", # 1E00..1EFF
483
+ "Greek Extended", # 1F00..1FFF
484
+ "General Punctuation", # 2000..206F
485
+ "Superscripts and Subscripts", # 2070..209F
486
+ "Currency Symbols", # 20A0..20CF
487
+ "Combining Diacritical Marks for Symbols", # 20D0..20FF
488
+ "Letterlike Symbols", # 2100..214F
489
+ "Number Forms", # 2150..218F
490
+ "Arrows", # 2190..21FF
491
+ "Mathematical Operators", # 2200..22FF
492
+ "Miscellaneous Technical", # 2300..23FF
493
+ "Control Pictures", # 2400..243F
494
+ "Optical Character Recognition", # 2440..245F
495
+ "Enclosed Alphanumerics", # 2460..24FF
496
+ "Box Drawing", # 2500..257F
497
+ "Block Elements", # 2580..259F
498
+ "Geometric Shapes", # 25A0..25FF
499
+ "Miscellaneous Symbols", # 2600..26FF
500
+ "Dingbats", # 2700..27BF
501
+ "Miscellaneous Mathematical Symbols-A", # 27C0..27EF
502
+ "Supplemental Arrows-A", # 27F0..27FF
503
+ "Braille Patterns", # 2800..28FF
504
+ "Supplemental Arrows-B", # 2900..297F
505
+ "Miscellaneous Mathematical Symbols-B", # 2980..29FF
506
+ "Supplemental Mathematical Operators", # 2A00..2AFF
507
+ "Miscellaneous Symbols and Arrows", # 2B00..2BFF
508
+ "Glagolitic", # 2C00..2C5F
509
+ "Latin Extended-C", # 2C60..2C7F
510
+ "Coptic", # 2C80..2CFF
511
+ "Georgian Supplement", # 2D00..2D2F
512
+ "Tifinagh", # 2D30..2D7F
513
+ "Ethiopic Extended", # 2D80..2DDF
514
+ "Cyrillic Extended-A", # 2DE0..2DFF
515
+ "Supplemental Punctuation", # 2E00..2E7F
516
+ "CJK Radicals Supplement", # 2E80..2EFF
517
+ "Kangxi Radicals", # 2F00..2FDF
518
+ "No_Block", # 2FE0..2FEF
519
+ "Ideographic Description Characters", # 2FF0..2FFF
520
+ "CJK Symbols and Punctuation", # 3000..303F
521
+ "Hiragana", # 3040..309F
522
+ "Katakana", # 30A0..30FF
523
+ "Bopomofo", # 3100..312F
524
+ "Hangul Compatibility Jamo", # 3130..318F
525
+ "Kanbun", # 3190..319F
526
+ "Bopomofo Extended", # 31A0..31BF
527
+ "CJK Strokes", # 31C0..31EF
528
+ "Katakana Phonetic Extensions", # 31F0..31FF
529
+ "Enclosed CJK Letters and Months", # 3200..32FF
530
+ "CJK Compatibility", # 3300..33FF
531
+ "CJK Unified Ideographs Extension A", # 3400..4DBF
532
+ "Yijing Hexagram Symbols", # 4DC0..4DFF
533
+ "CJK Unified Ideographs", # 4E00..9FFF
534
+ "Yi Syllables", # A000..A48F
535
+ "Yi Radicals", # A490..A4CF
536
+ "Lisu", # A4D0..A4FF
537
+ "Vai", # A500..A63F
538
+ "Cyrillic Extended-B", # A640..A69F
539
+ "Bamum", # A6A0..A6FF
540
+ "Modifier Tone Letters", # A700..A71F
541
+ "Latin Extended-D", # A720..A7FF
542
+ "Syloti Nagri", # A800..A82F
543
+ "Common Indic Number Forms", # A830..A83F
544
+ "Phags-pa", # A840..A87F
545
+ "Saurashtra", # A880..A8DF
546
+ "Devanagari Extended", # A8E0..A8FF
547
+ "Kayah Li", # A900..A92F
548
+ "Rejang", # A930..A95F
549
+ "Hangul Jamo Extended-A", # A960..A97F
550
+ "Javanese", # A980..A9DF
551
+ "Myanmar Extended-B", # A9E0..A9FF
552
+ "Cham", # AA00..AA5F
553
+ "Myanmar Extended-A", # AA60..AA7F
554
+ "Tai Viet", # AA80..AADF
555
+ "Meetei Mayek Extensions", # AAE0..AAFF
556
+ "Ethiopic Extended-A", # AB00..AB2F
557
+ "Latin Extended-E", # AB30..AB6F
558
+ "Cherokee Supplement", # AB70..ABBF
559
+ "Meetei Mayek", # ABC0..ABFF
560
+ "Hangul Syllables", # AC00..D7AF
561
+ "Hangul Jamo Extended-B", # D7B0..D7FF
562
+ "High Surrogates", # D800..DB7F
563
+ "High Private Use Surrogates", # DB80..DBFF
564
+ "Low Surrogates", # DC00..DFFF
565
+ "Private Use Area", # E000..F8FF
566
+ "CJK Compatibility Ideographs", # F900..FAFF
567
+ "Alphabetic Presentation Forms", # FB00..FB4F
568
+ "Arabic Presentation Forms-A", # FB50..FDFF
569
+ "Variation Selectors", # FE00..FE0F
570
+ "Vertical Forms", # FE10..FE1F
571
+ "Combining Half Marks", # FE20..FE2F
572
+ "CJK Compatibility Forms", # FE30..FE4F
573
+ "Small Form Variants", # FE50..FE6F
574
+ "Arabic Presentation Forms-B", # FE70..FEFF
575
+ "Halfwidth and Fullwidth Forms", # FF00..FFEF
576
+ "Specials", # FFF0..FFFF
577
+ "Linear B Syllabary", # 10000..1007F
578
+ "Linear B Ideograms", # 10080..100FF
579
+ "Aegean Numbers", # 10100..1013F
580
+ "Ancient Greek Numbers", # 10140..1018F
581
+ "Ancient Symbols", # 10190..101CF
582
+ "Phaistos Disc", # 101D0..101FF
583
+ "No_Block", # 10200..1027F
584
+ "Lycian", # 10280..1029F
585
+ "Carian", # 102A0..102DF
586
+ "Coptic Epact Numbers", # 102E0..102FF
587
+ "Old Italic", # 10300..1032F
588
+ "Gothic", # 10330..1034F
589
+ "Old Permic", # 10350..1037F
590
+ "Ugaritic", # 10380..1039F
591
+ "Old Persian", # 103A0..103DF
592
+ "No_Block", # 103E0..103FF
593
+ "Deseret", # 10400..1044F
594
+ "Shavian", # 10450..1047F
595
+ "Osmanya", # 10480..104AF
596
+ "Osage", # 104B0..104FF
597
+ "Elbasan", # 10500..1052F
598
+ "Caucasian Albanian", # 10530..1056F
599
+ "Vithkuqi", # 10570..105BF
600
+ "Todhri", # 105C0..105FF
601
+ "Linear A", # 10600..1077F
602
+ "Latin Extended-F", # 10780..107BF
603
+ "No_Block", # 107C0..107FF
604
+ "Cypriot Syllabary", # 10800..1083F
605
+ "Imperial Aramaic", # 10840..1085F
606
+ "Palmyrene", # 10860..1087F
607
+ "Nabataean", # 10880..108AF
608
+ "No_Block", # 108B0..108DF
609
+ "Hatran", # 108E0..108FF
610
+ "Phoenician", # 10900..1091F
611
+ "Lydian", # 10920..1093F
612
+ "No_Block", # 10940..1097F
613
+ "Meroitic Hieroglyphs", # 10980..1099F
614
+ "Meroitic Cursive", # 109A0..109FF
615
+ "Kharoshthi", # 10A00..10A5F
616
+ "Old South Arabian", # 10A60..10A7F
617
+ "Old North Arabian", # 10A80..10A9F
618
+ "No_Block", # 10AA0..10ABF
619
+ "Manichaean", # 10AC0..10AFF
620
+ "Avestan", # 10B00..10B3F
621
+ "Inscriptional Parthian", # 10B40..10B5F
622
+ "Inscriptional Pahlavi", # 10B60..10B7F
623
+ "Psalter Pahlavi", # 10B80..10BAF
624
+ "No_Block", # 10BB0..10BFF
625
+ "Old Turkic", # 10C00..10C4F
626
+ "No_Block", # 10C50..10C7F
627
+ "Old Hungarian", # 10C80..10CFF
628
+ "Hanifi Rohingya", # 10D00..10D3F
629
+ "Garay", # 10D40..10D8F
630
+ "No_Block", # 10D90..10E5F
631
+ "Rumi Numeral Symbols", # 10E60..10E7F
632
+ "Yezidi", # 10E80..10EBF
633
+ "Arabic Extended-C", # 10EC0..10EFF
634
+ "Old Sogdian", # 10F00..10F2F
635
+ "Sogdian", # 10F30..10F6F
636
+ "Old Uyghur", # 10F70..10FAF
637
+ "Chorasmian", # 10FB0..10FDF
638
+ "Elymaic", # 10FE0..10FFF
639
+ "Brahmi", # 11000..1107F
640
+ "Kaithi", # 11080..110CF
641
+ "Sora Sompeng", # 110D0..110FF
642
+ "Chakma", # 11100..1114F
643
+ "Mahajani", # 11150..1117F
644
+ "Sharada", # 11180..111DF
645
+ "Sinhala Archaic Numbers", # 111E0..111FF
646
+ "Khojki", # 11200..1124F
647
+ "No_Block", # 11250..1127F
648
+ "Multani", # 11280..112AF
649
+ "Khudawadi", # 112B0..112FF
650
+ "Grantha", # 11300..1137F
651
+ "Tulu-Tigalari", # 11380..113FF
652
+ "Newa", # 11400..1147F
653
+ "Tirhuta", # 11480..114DF
654
+ "No_Block", # 114E0..1157F
655
+ "Siddham", # 11580..115FF
656
+ "Modi", # 11600..1165F
657
+ "Mongolian Supplement", # 11660..1167F
658
+ "Takri", # 11680..116CF
659
+ "Myanmar Extended-C", # 116D0..116FF
660
+ "Ahom", # 11700..1174F
661
+ "No_Block", # 11750..117FF
662
+ "Dogra", # 11800..1184F
663
+ "No_Block", # 11850..1189F
664
+ "Warang Citi", # 118A0..118FF
665
+ "Dives Akuru", # 11900..1195F
666
+ "No_Block", # 11960..1199F
667
+ "Nandinagari", # 119A0..119FF
668
+ "Zanabazar Square", # 11A00..11A4F
669
+ "Soyombo", # 11A50..11AAF
670
+ "Unified Canadian Aboriginal Syllabics Extended-A", # 11AB0..11ABF
671
+ "Pau Cin Hau", # 11AC0..11AFF
672
+ "Devanagari Extended-A", # 11B00..11B5F
673
+ "No_Block", # 11B60..11BBF
674
+ "Sunuwar", # 11BC0..11BFF
675
+ "Bhaiksuki", # 11C00..11C6F
676
+ "Marchen", # 11C70..11CBF
677
+ "No_Block", # 11CC0..11CFF
678
+ "Masaram Gondi", # 11D00..11D5F
679
+ "Gunjala Gondi", # 11D60..11DAF
680
+ "No_Block", # 11DB0..11EDF
681
+ "Makasar", # 11EE0..11EFF
682
+ "Kawi", # 11F00..11F5F
683
+ "No_Block", # 11F60..11FAF
684
+ "Lisu Supplement", # 11FB0..11FBF
685
+ "Tamil Supplement", # 11FC0..11FFF
686
+ "Cuneiform", # 12000..123FF
687
+ "Cuneiform Numbers and Punctuation", # 12400..1247F
688
+ "Early Dynastic Cuneiform", # 12480..1254F
689
+ "No_Block", # 12550..12F8F
690
+ "Cypro-Minoan", # 12F90..12FFF
691
+ "Egyptian Hieroglyphs", # 13000..1342F
692
+ "Egyptian Hieroglyph Format Controls", # 13430..1345F
693
+ "Egyptian Hieroglyphs Extended-A", # 13460..143FF
694
+ "Anatolian Hieroglyphs", # 14400..1467F
695
+ "No_Block", # 14680..160FF
696
+ "Gurung Khema", # 16100..1613F
697
+ "No_Block", # 16140..167FF
698
+ "Bamum Supplement", # 16800..16A3F
699
+ "Mro", # 16A40..16A6F
700
+ "Tangsa", # 16A70..16ACF
701
+ "Bassa Vah", # 16AD0..16AFF
702
+ "Pahawh Hmong", # 16B00..16B8F
703
+ "No_Block", # 16B90..16D3F
704
+ "Kirat Rai", # 16D40..16D7F
705
+ "No_Block", # 16D80..16E3F
706
+ "Medefaidrin", # 16E40..16E9F
707
+ "No_Block", # 16EA0..16EFF
708
+ "Miao", # 16F00..16F9F
709
+ "No_Block", # 16FA0..16FDF
710
+ "Ideographic Symbols and Punctuation", # 16FE0..16FFF
711
+ "Tangut", # 17000..187FF
712
+ "Tangut Components", # 18800..18AFF
713
+ "Khitan Small Script", # 18B00..18CFF
714
+ "Tangut Supplement", # 18D00..18D7F
715
+ "No_Block", # 18D80..1AFEF
716
+ "Kana Extended-B", # 1AFF0..1AFFF
717
+ "Kana Supplement", # 1B000..1B0FF
718
+ "Kana Extended-A", # 1B100..1B12F
719
+ "Small Kana Extension", # 1B130..1B16F
720
+ "Nushu", # 1B170..1B2FF
721
+ "No_Block", # 1B300..1BBFF
722
+ "Duployan", # 1BC00..1BC9F
723
+ "Shorthand Format Controls", # 1BCA0..1BCAF
724
+ "No_Block", # 1BCB0..1CBFF
725
+ "Symbols for Legacy Computing Supplement", # 1CC00..1CEBF
726
+ "No_Block", # 1CEC0..1CEFF
727
+ "Znamenny Musical Notation", # 1CF00..1CFCF
728
+ "No_Block", # 1CFD0..1CFFF
729
+ "Byzantine Musical Symbols", # 1D000..1D0FF
730
+ "Musical Symbols", # 1D100..1D1FF
731
+ "Ancient Greek Musical Notation", # 1D200..1D24F
732
+ "No_Block", # 1D250..1D2BF
733
+ "Kaktovik Numerals", # 1D2C0..1D2DF
734
+ "Mayan Numerals", # 1D2E0..1D2FF
735
+ "Tai Xuan Jing Symbols", # 1D300..1D35F
736
+ "Counting Rod Numerals", # 1D360..1D37F
737
+ "No_Block", # 1D380..1D3FF
738
+ "Mathematical Alphanumeric Symbols", # 1D400..1D7FF
739
+ "Sutton SignWriting", # 1D800..1DAAF
740
+ "No_Block", # 1DAB0..1DEFF
741
+ "Latin Extended-G", # 1DF00..1DFFF
742
+ "Glagolitic Supplement", # 1E000..1E02F
743
+ "Cyrillic Extended-D", # 1E030..1E08F
744
+ "No_Block", # 1E090..1E0FF
745
+ "Nyiakeng Puachue Hmong", # 1E100..1E14F
746
+ "No_Block", # 1E150..1E28F
747
+ "Toto", # 1E290..1E2BF
748
+ "Wancho", # 1E2C0..1E2FF
749
+ "No_Block", # 1E300..1E4CF
750
+ "Nag Mundari", # 1E4D0..1E4FF
751
+ "No_Block", # 1E500..1E5CF
752
+ "Ol Onal", # 1E5D0..1E5FF
753
+ "No_Block", # 1E600..1E7DF
754
+ "Ethiopic Extended-B", # 1E7E0..1E7FF
755
+ "Mende Kikakui", # 1E800..1E8DF
756
+ "No_Block", # 1E8E0..1E8FF
757
+ "Adlam", # 1E900..1E95F
758
+ "No_Block", # 1E960..1EC6F
759
+ "Indic Siyaq Numbers", # 1EC70..1ECBF
760
+ "No_Block", # 1ECC0..1ECFF
761
+ "Ottoman Siyaq Numbers", # 1ED00..1ED4F
762
+ "No_Block", # 1ED50..1EDFF
763
+ "Arabic Mathematical Alphabetic Symbols", # 1EE00..1EEFF
764
+ "No_Block", # 1EF00..1EFFF
765
+ "Mahjong Tiles", # 1F000..1F02F
766
+ "Domino Tiles", # 1F030..1F09F
767
+ "Playing Cards", # 1F0A0..1F0FF
768
+ "Enclosed Alphanumeric Supplement", # 1F100..1F1FF
769
+ "Enclosed Ideographic Supplement", # 1F200..1F2FF
770
+ "Miscellaneous Symbols and Pictographs", # 1F300..1F5FF
771
+ "Emoticons", # 1F600..1F64F
772
+ "Ornamental Dingbats", # 1F650..1F67F
773
+ "Transport and Map Symbols", # 1F680..1F6FF
774
+ "Alchemical Symbols", # 1F700..1F77F
775
+ "Geometric Shapes Extended", # 1F780..1F7FF
776
+ "Supplemental Arrows-C", # 1F800..1F8FF
777
+ "Supplemental Symbols and Pictographs", # 1F900..1F9FF
778
+ "Chess Symbols", # 1FA00..1FA6F
779
+ "Symbols and Pictographs Extended-A", # 1FA70..1FAFF
780
+ "Symbols for Legacy Computing", # 1FB00..1FBFF
781
+ "No_Block", # 1FC00..1FFFF
782
+ "CJK Unified Ideographs Extension B", # 20000..2A6DF
783
+ "No_Block", # 2A6E0..2A6FF
784
+ "CJK Unified Ideographs Extension C", # 2A700..2B73F
785
+ "CJK Unified Ideographs Extension D", # 2B740..2B81F
786
+ "CJK Unified Ideographs Extension E", # 2B820..2CEAF
787
+ "CJK Unified Ideographs Extension F", # 2CEB0..2EBEF
788
+ "CJK Unified Ideographs Extension I", # 2EBF0..2EE5F
789
+ "No_Block", # 2EE60..2F7FF
790
+ "CJK Compatibility Ideographs Supplement", # 2F800..2FA1F
791
+ "No_Block", # 2FA20..2FFFF
792
+ "CJK Unified Ideographs Extension G", # 30000..3134F
793
+ "CJK Unified Ideographs Extension H", # 31350..323AF
794
+ "No_Block", # 323B0..DFFFF
795
+ "Tags", # E0000..E007F
796
+ "No_Block", # E0080..E00FF
797
+ "Variation Selectors Supplement", # E0100..E01EF
798
+ "No_Block", # E01F0..EFFFF
799
+ "Supplementary Private Use Area-A", # F0000..FFFFF
800
+ "Supplementary Private Use Area-B", # 100000..10FFFF
801
+ ]