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