@port-labs/jq-node-bindings 0.0.4 → 0.0.5
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.
- package/binding.gyp +3 -3
- package/configure +8 -6
- package/deps/jq/.travis.yml +184 -35
- package/deps/jq/AUTHORS +31 -30
- package/deps/jq/COPYING +2 -2
- package/deps/jq/KEYS +8 -0
- package/deps/jq/Makefile.am +85 -70
- package/deps/jq/NEWS +5 -4
- package/deps/jq/README.md +18 -9
- package/deps/jq/appveyor.yml +53 -0
- package/deps/jq/compile-ios.sh +5 -5
- package/deps/jq/config/m4/check-math-func.m4 +7 -2
- package/deps/jq/configure.ac +130 -68
- package/deps/jq/docs/Rakefile +14 -135
- package/deps/jq/docs/Rakefile.manual +49 -0
- package/deps/jq/docs/Rakefile.website +76 -0
- package/deps/jq/docs/content/2.download/default.yml +115 -39
- package/deps/jq/docs/content/3.manual/manual.yml +641 -231
- package/deps/jq/docs/content/3.manual/v1.3/manual.yml +130 -130
- package/deps/jq/docs/content/3.manual/v1.4/manual.yml +160 -160
- package/deps/jq/docs/content/3.manual/v1.5/manual.yml +2878 -0
- package/deps/jq/docs/content/3.manual/v1.6/manual.yml +3287 -0
- package/deps/jq/docs/content/index/index.yml +28 -6
- package/deps/jq/docs/public/.htaccess +2 -2
- package/deps/jq/docs/public/css/base.scss +141 -59
- package/deps/jq/docs/public/js/manual-search.js +52 -0
- package/deps/jq/docs/site.yml +1 -10
- package/deps/jq/docs/templates/default.liquid +10 -10
- package/deps/jq/docs/templates/index.liquid +45 -32
- package/deps/jq/docs/templates/manual.liquid +67 -90
- package/deps/jq/docs/templates/shared/_footer.liquid +10 -5
- package/deps/jq/docs/templates/shared/_head.liquid +17 -12
- package/deps/jq/docs/templates/shared/_navbar.liquid +27 -0
- package/deps/jq/jq.1.prebuilt +523 -139
- package/deps/jq/modules/oniguruma/AUTHORS +1 -0
- package/deps/jq/modules/oniguruma/CMakeLists.txt +86 -0
- package/deps/jq/modules/oniguruma/COPYING +28 -0
- package/deps/jq/modules/oniguruma/ChangeLog +0 -0
- package/deps/jq/modules/oniguruma/HISTORY +2138 -0
- package/deps/jq/modules/oniguruma/Makefile.am +33 -0
- package/deps/jq/modules/oniguruma/NEWS +0 -0
- package/deps/jq/modules/oniguruma/README +189 -0
- package/deps/jq/modules/oniguruma/README.ja +195 -0
- package/deps/jq/modules/oniguruma/README.md +203 -0
- package/deps/jq/modules/oniguruma/cmake/dist.cmake +321 -0
- package/deps/jq/modules/oniguruma/compile +348 -0
- package/deps/jq/modules/oniguruma/config.guess +1754 -0
- package/deps/jq/modules/oniguruma/config.sub +1890 -0
- package/deps/jq/modules/oniguruma/configure.ac +87 -0
- package/deps/jq/modules/oniguruma/contributed/libfuzzer-onig.cpp +31 -0
- package/deps/jq/modules/oniguruma/depcomp +791 -0
- package/deps/jq/modules/oniguruma/dist.info +10 -0
- package/deps/jq/modules/oniguruma/doc/API +660 -0
- package/deps/jq/modules/oniguruma/doc/API.ja +667 -0
- package/deps/jq/modules/oniguruma/doc/FAQ +12 -0
- package/deps/jq/modules/oniguruma/doc/FAQ.ja +22 -0
- package/deps/jq/modules/oniguruma/doc/RE +436 -0
- package/deps/jq/modules/oniguruma/doc/RE.ja +448 -0
- package/deps/jq/modules/oniguruma/doc/UNICODE_PROPERTIES +698 -0
- package/deps/jq/modules/oniguruma/index.html +181 -0
- package/deps/jq/modules/oniguruma/index_ja.html +184 -0
- package/deps/jq/modules/oniguruma/install-sh +541 -0
- package/deps/jq/modules/oniguruma/m4/.whatever +0 -0
- package/deps/jq/modules/oniguruma/make_win32.bat +3 -0
- package/deps/jq/modules/oniguruma/make_win64.bat +3 -0
- package/deps/jq/modules/oniguruma/missing +215 -0
- package/deps/jq/modules/oniguruma/onig-config.in +78 -0
- package/deps/jq/modules/oniguruma/oniguruma.pc.cmake.in +13 -0
- package/deps/jq/modules/oniguruma/oniguruma.pc.in +14 -0
- package/deps/jq/modules/oniguruma/sample/CMakeLists.txt +28 -0
- package/deps/jq/modules/oniguruma/sample/Makefile.am +34 -0
- package/deps/jq/modules/oniguruma/sample/bug_fix.c +131 -0
- package/deps/jq/modules/oniguruma/sample/crnl.c +127 -0
- package/deps/jq/modules/oniguruma/sample/encode.c +308 -0
- package/deps/jq/modules/oniguruma/sample/listcap.c +110 -0
- package/deps/jq/modules/oniguruma/sample/names.c +75 -0
- package/deps/jq/modules/oniguruma/sample/posix.c +96 -0
- package/deps/jq/modules/oniguruma/sample/scan.c +88 -0
- package/deps/jq/modules/oniguruma/sample/simple.c +59 -0
- package/deps/jq/modules/oniguruma/sample/sql.c +76 -0
- package/deps/jq/modules/oniguruma/sample/syntax.c +76 -0
- package/deps/jq/modules/oniguruma/sample/user_property.c +87 -0
- package/deps/jq/modules/oniguruma/src/Makefile.am +58 -0
- package/deps/jq/modules/oniguruma/src/Makefile.windows +183 -0
- package/deps/jq/modules/oniguruma/src/ascii.c +61 -0
- package/deps/jq/modules/oniguruma/src/big5.c +190 -0
- package/deps/jq/modules/oniguruma/src/config.h.cmake.in +71 -0
- package/deps/jq/modules/oniguruma/src/config.h.win32 +84 -0
- package/deps/jq/modules/oniguruma/src/config.h.win64 +84 -0
- package/deps/jq/modules/oniguruma/src/cp1251.c +203 -0
- package/deps/jq/modules/oniguruma/src/euc_jp.c +310 -0
- package/deps/jq/modules/oniguruma/src/euc_jp_prop.c +158 -0
- package/deps/jq/modules/oniguruma/src/euc_jp_prop.gperf +27 -0
- package/deps/jq/modules/oniguruma/src/euc_kr.c +188 -0
- package/deps/jq/modules/oniguruma/src/euc_tw.c +171 -0
- package/deps/jq/modules/oniguruma/src/gb18030.c +538 -0
- package/deps/jq/modules/oniguruma/src/gperf_fold_key_conv.py +67 -0
- package/deps/jq/modules/oniguruma/src/gperf_unfold_key_conv.py +55 -0
- package/deps/jq/modules/oniguruma/src/iso8859_1.c +275 -0
- package/deps/jq/modules/oniguruma/src/iso8859_10.c +242 -0
- package/deps/jq/modules/oniguruma/src/iso8859_11.c +99 -0
- package/deps/jq/modules/oniguruma/src/iso8859_13.c +231 -0
- package/deps/jq/modules/oniguruma/src/iso8859_14.c +244 -0
- package/deps/jq/modules/oniguruma/src/iso8859_15.c +238 -0
- package/deps/jq/modules/oniguruma/src/iso8859_16.c +240 -0
- package/deps/jq/modules/oniguruma/src/iso8859_2.c +238 -0
- package/deps/jq/modules/oniguruma/src/iso8859_3.c +238 -0
- package/deps/jq/modules/oniguruma/src/iso8859_4.c +240 -0
- package/deps/jq/modules/oniguruma/src/iso8859_5.c +229 -0
- package/deps/jq/modules/oniguruma/src/iso8859_6.c +99 -0
- package/deps/jq/modules/oniguruma/src/iso8859_7.c +225 -0
- package/deps/jq/modules/oniguruma/src/iso8859_8.c +99 -0
- package/deps/jq/modules/oniguruma/src/iso8859_9.c +231 -0
- package/deps/jq/modules/oniguruma/src/koi8.c +253 -0
- package/deps/jq/modules/oniguruma/src/koi8_r.c +215 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_fold.sh +22 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_fold_data.py +306 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_property.sh +18 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_property_data.py +545 -0
- package/deps/jq/modules/oniguruma/src/mktable.c +1184 -0
- package/deps/jq/modules/oniguruma/src/onig_init.c +45 -0
- package/deps/jq/modules/oniguruma/src/oniggnu.h +85 -0
- package/deps/jq/modules/oniguruma/src/onigposix.h +169 -0
- package/deps/jq/modules/oniguruma/src/oniguruma.h +841 -0
- package/deps/jq/modules/oniguruma/src/regcomp.c +6300 -0
- package/deps/jq/modules/oniguruma/src/regenc.c +917 -0
- package/deps/jq/modules/oniguruma/src/regenc.h +243 -0
- package/deps/jq/modules/oniguruma/src/regerror.c +393 -0
- package/deps/jq/modules/oniguruma/src/regexec.c +3856 -0
- package/deps/jq/modules/oniguruma/src/regext.c +202 -0
- package/deps/jq/modules/oniguruma/src/reggnu.c +147 -0
- package/deps/jq/modules/oniguruma/src/regint.h +779 -0
- package/deps/jq/modules/oniguruma/src/regparse.c +5403 -0
- package/deps/jq/modules/oniguruma/src/regparse.h +351 -0
- package/deps/jq/modules/oniguruma/src/regposerr.c +105 -0
- package/deps/jq/modules/oniguruma/src/regposix.c +306 -0
- package/deps/jq/modules/oniguruma/src/regsyntax.c +315 -0
- package/deps/jq/modules/oniguruma/src/regtrav.c +76 -0
- package/deps/jq/modules/oniguruma/src/regversion.c +57 -0
- package/deps/jq/modules/oniguruma/src/sjis.c +341 -0
- package/deps/jq/modules/oniguruma/src/sjis_prop.c +158 -0
- package/deps/jq/modules/oniguruma/src/sjis_prop.gperf +27 -0
- package/deps/jq/modules/oniguruma/src/st.c +589 -0
- package/deps/jq/modules/oniguruma/src/st.h +68 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold1_key.c +2250 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold2_key.c +203 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold3_key.c +113 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold_data.c +1225 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data.c +24742 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data_posix.c +4846 -0
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_unfold_key.c +2571 -0
- package/deps/jq/modules/oniguruma/src/unicode.c +664 -0
- package/deps/jq/modules/oniguruma/src/unicode_fold1_key.c +2548 -0
- package/deps/jq/modules/oniguruma/src/unicode_fold2_key.c +203 -0
- package/deps/jq/modules/oniguruma/src/unicode_fold3_key.c +113 -0
- package/deps/jq/modules/oniguruma/src/unicode_fold_data.c +1366 -0
- package/deps/jq/modules/oniguruma/src/unicode_property_data.c +25306 -0
- package/deps/jq/modules/oniguruma/src/unicode_property_data_posix.c +4940 -0
- package/deps/jq/modules/oniguruma/src/unicode_unfold_key.c +2854 -0
- package/deps/jq/modules/oniguruma/src/utf16_be.c +235 -0
- package/deps/jq/modules/oniguruma/src/utf16_le.c +245 -0
- package/deps/jq/modules/oniguruma/src/utf32_be.c +194 -0
- package/deps/jq/modules/oniguruma/src/utf32_le.c +194 -0
- package/deps/jq/modules/oniguruma/src/utf8.c +335 -0
- package/deps/jq/modules/oniguruma/test/Makefile.am +28 -0
- package/deps/jq/modules/oniguruma/test/testc.c +874 -0
- package/deps/jq/modules/oniguruma/test/testu.c +916 -0
- package/deps/jq/modules/oniguruma/test-driver +153 -0
- package/deps/jq/modules/oniguruma/windows/testc.c +869 -0
- package/deps/jq/scripts/crosscompile +2 -1
- package/deps/jq/scripts/gen_utf8_tables.py +2 -3
- package/deps/jq/scripts/update-website +29 -0
- package/deps/jq/scripts/version +7 -2
- package/deps/jq/sig/jq-release.key +41 -0
- package/deps/jq/sig/v1.3/jq-linux-x86.asc +17 -0
- package/deps/jq/sig/v1.3/jq-linux-x86_64.asc +17 -0
- package/deps/jq/sig/v1.3/jq-osx-x86.asc +17 -0
- package/deps/jq/sig/v1.3/jq-osx-x86_64.asc +17 -0
- package/deps/jq/sig/v1.3/jq-win32.exe.asc +17 -0
- package/deps/jq/sig/v1.3/jq-win64.exe.asc +17 -0
- package/deps/jq/sig/v1.3/sha256sum.txt +6 -0
- package/deps/jq/sig/v1.4/jq-linux-x86.asc +17 -0
- package/deps/jq/sig/v1.4/jq-linux-x86_64.asc +17 -0
- package/deps/jq/sig/v1.4/jq-osx-x86.asc +17 -0
- package/deps/jq/sig/v1.4/jq-osx-x86_64.asc +17 -0
- package/deps/jq/sig/v1.4/jq-solaris11-32.asc +17 -0
- package/deps/jq/sig/v1.4/jq-solaris11-64.asc +17 -0
- package/deps/jq/sig/v1.4/jq-win32.exe.asc +17 -0
- package/deps/jq/sig/v1.4/jq-win64.exe.asc +17 -0
- package/deps/jq/sig/v1.4/sha256sum.txt +8 -0
- package/deps/jq/sig/v1.5/jq-linux32-no-oniguruma.asc +17 -0
- package/deps/jq/sig/v1.5/jq-linux32.asc +17 -0
- package/deps/jq/sig/v1.5/jq-linux64.asc +17 -0
- package/deps/jq/sig/v1.5/jq-osx-amd64.asc +17 -0
- package/deps/jq/sig/v1.5/jq-win32.exe.asc +17 -0
- package/deps/jq/sig/v1.5/jq-win64.exe.asc +17 -0
- package/deps/jq/sig/v1.5/sha256sum.txt +5 -0
- package/deps/jq/sig/v1.5rc1/jq-linux-x86_64-static.asc +17 -0
- package/deps/jq/sig/v1.5rc1/jq-win32.exe.asc +17 -0
- package/deps/jq/sig/v1.5rc1/jq-win64.exe.asc +17 -0
- package/deps/jq/sig/v1.5rc1/sha256sum.txt +3 -0
- package/deps/jq/sig/v1.5rc2/jq-linux-x86.asc +17 -0
- package/deps/jq/sig/v1.5rc2/jq-linux-x86_64.asc +17 -0
- package/deps/jq/sig/v1.5rc2/jq-osx-x86_64.asc +17 -0
- package/deps/jq/sig/v1.5rc2/jq-win32.exe.asc +17 -0
- package/deps/jq/sig/v1.5rc2/jq-win64.exe.asc +17 -0
- package/deps/jq/sig/v1.5rc2/sha256sum.txt +5 -0
- package/deps/jq/sig/v1.6/jq-linux32.asc +16 -0
- package/deps/jq/sig/v1.6/jq-linux64.asc +16 -0
- package/deps/jq/sig/v1.6/jq-osx-amd64.asc +16 -0
- package/deps/jq/sig/v1.6/jq-win32.exe.asc +16 -0
- package/deps/jq/sig/v1.6/jq-win64.exe.asc +16 -0
- package/deps/jq/sig/v1.6/sha256sum.txt +5 -0
- package/deps/jq/{builtin.c → src/builtin.c} +449 -344
- package/deps/jq/{builtin.h → src/builtin.h} +0 -0
- package/deps/jq/src/builtin.jq +311 -0
- package/deps/jq/{bytecode.c → src/bytecode.c} +0 -0
- package/deps/jq/{bytecode.h → src/bytecode.h} +0 -0
- package/deps/jq/{compile.c → src/compile.c} +213 -37
- package/deps/jq/{compile.h → src/compile.h} +7 -2
- package/deps/jq/{exec_stack.h → src/exec_stack.h} +0 -0
- package/deps/jq/{execute.c → src/execute.c} +127 -24
- package/deps/jq/{inject_errors.c → src/inject_errors.c} +0 -0
- package/deps/jq/{jq.h → src/jq.h} +13 -2
- package/deps/jq/{jq_parser.h → src/jq_parser.h} +0 -0
- package/deps/jq/{jq_test.c → src/jq_test.c} +1 -1
- package/deps/jq/{jv.c → src/jv.c} +24 -5
- package/deps/jq/{jv.h → src/jv.h} +46 -11
- package/deps/jq/{jv_alloc.c → src/jv_alloc.c} +0 -0
- package/deps/jq/{jv_alloc.h → src/jv_alloc.h} +0 -0
- package/deps/jq/{jv_aux.c → src/jv_aux.c} +38 -14
- package/deps/jq/{jv_dtoa.c → src/jv_dtoa.c} +4 -5
- package/deps/jq/{jv_dtoa.h → src/jv_dtoa.h} +0 -0
- package/deps/jq/src/jv_file.c +81 -0
- package/deps/jq/{jv_parse.c → src/jv_parse.c} +8 -2
- package/deps/jq/{jv_print.c → src/jv_print.c} +80 -27
- package/deps/jq/{jv_unicode.c → src/jv_unicode.c} +28 -4
- package/deps/jq/{jv_unicode.h → src/jv_unicode.h} +1 -0
- package/deps/jq/{jv_utf8_tables.h → src/jv_utf8_tables.h} +0 -0
- package/deps/jq/{lexer.c → src/lexer.c} +317 -292
- package/deps/jq/{lexer.h → src/lexer.h} +16 -12
- package/deps/jq/{lexer.l → src/lexer.l} +5 -4
- package/deps/jq/src/libm.h +291 -0
- package/deps/jq/{linker.c → src/linker.c} +5 -3
- package/deps/jq/{linker.h → src/linker.h} +0 -0
- package/deps/jq/{locfile.c → src/locfile.c} +1 -1
- package/deps/jq/{locfile.h → src/locfile.h} +0 -0
- package/deps/jq/{main.c → src/main.c} +202 -100
- package/deps/jq/{opcode_list.h → src/opcode_list.h} +4 -0
- package/deps/jq/{parser.c → src/parser.c} +1149 -1069
- package/deps/jq/{parser.h → src/parser.h} +28 -24
- package/deps/jq/{parser.y → src/parser.y} +108 -52
- package/deps/jq/{util.c → src/util.c} +12 -9
- package/deps/jq/{util.h → src/util.h} +0 -0
- package/deps/jq/tests/base64.test +35 -0
- package/deps/jq/tests/base64test +5 -0
- package/deps/jq/tests/jq-f-test.sh +4 -0
- package/deps/jq/tests/jq.test +305 -21
- package/deps/jq/tests/jqtest +1 -1
- package/deps/jq/tests/mantest +1 -1
- package/deps/jq/tests/onig.test +13 -0
- package/deps/jq/tests/onigtest +1 -1
- package/deps/jq/tests/optional.test +20 -0
- package/deps/jq/tests/optionaltest +5 -0
- package/deps/jq/tests/setup +7 -1
- package/deps/jq/tests/shtest +133 -29
- package/deps/jq/tests/utf8-truncate.jq +3 -0
- package/deps/jq/tests/utf8test +10 -0
- package/lib/index.js +7 -1
- package/package.json +3 -3
- package/test/santiy.test.js +24 -0
- package/deps/jq/docs/default_manpage.md +0 -22
- package/deps/jq/docs/public/bootstrap/css/bootstrap-responsive.css +0 -1058
- package/deps/jq/docs/public/bootstrap/css/bootstrap-responsive.min.css +0 -9
- package/deps/jq/docs/public/bootstrap/css/bootstrap.css +0 -5224
- package/deps/jq/docs/public/bootstrap/css/bootstrap.min.css +0 -9
- package/deps/jq/docs/public/bootstrap/img/glyphicons-halflings-white.png +0 -0
- package/deps/jq/docs/public/bootstrap/img/glyphicons-halflings.png +0 -0
- package/deps/jq/docs/public/bootstrap/js/bootstrap.js +0 -2027
- package/deps/jq/docs/public/bootstrap/js/bootstrap.min.js +0 -6
- package/deps/jq/docs/templates/shared/_header.liquid +0 -26
- package/deps/jq/jq.1.default +0 -39
- package/deps/jq/jv_file.c +0 -49
- package/deps/jq/libm.h +0 -160
- package/deps/jq/setup.sh +0 -33
- package/reports/jest-port-api.xml +0 -35
|
@@ -0,0 +1,698 @@
|
|
|
1
|
+
Unicode Properties (from Unicode Version: 8.0.0)
|
|
2
|
+
|
|
3
|
+
1: Any
|
|
4
|
+
2: Assigned
|
|
5
|
+
3: C
|
|
6
|
+
4: Cc
|
|
7
|
+
5: Cf
|
|
8
|
+
6: Cn
|
|
9
|
+
7: Co
|
|
10
|
+
8: Cs
|
|
11
|
+
9: L
|
|
12
|
+
10: LC
|
|
13
|
+
11: Ll
|
|
14
|
+
12: Lm
|
|
15
|
+
13: Lo
|
|
16
|
+
14: Lt
|
|
17
|
+
15: Lu
|
|
18
|
+
16: M
|
|
19
|
+
17: Mc
|
|
20
|
+
18: Me
|
|
21
|
+
19: Mn
|
|
22
|
+
20: N
|
|
23
|
+
21: Nd
|
|
24
|
+
22: Nl
|
|
25
|
+
23: No
|
|
26
|
+
24: P
|
|
27
|
+
25: Pc
|
|
28
|
+
26: Pd
|
|
29
|
+
27: Pe
|
|
30
|
+
28: Pf
|
|
31
|
+
29: Pi
|
|
32
|
+
30: Po
|
|
33
|
+
31: Ps
|
|
34
|
+
32: S
|
|
35
|
+
33: Sc
|
|
36
|
+
34: Sk
|
|
37
|
+
35: Sm
|
|
38
|
+
36: So
|
|
39
|
+
37: Z
|
|
40
|
+
38: Zl
|
|
41
|
+
39: Zp
|
|
42
|
+
40: Zs
|
|
43
|
+
41: Math
|
|
44
|
+
42: Alphabetic
|
|
45
|
+
43: Lowercase
|
|
46
|
+
44: Uppercase
|
|
47
|
+
45: Cased
|
|
48
|
+
46: Case_Ignorable
|
|
49
|
+
47: Changes_When_Lowercased
|
|
50
|
+
48: Changes_When_Uppercased
|
|
51
|
+
49: Changes_When_Titlecased
|
|
52
|
+
50: Changes_When_Casefolded
|
|
53
|
+
51: Changes_When_Casemapped
|
|
54
|
+
52: ID_Start
|
|
55
|
+
53: ID_Continue
|
|
56
|
+
54: XID_Start
|
|
57
|
+
55: XID_Continue
|
|
58
|
+
56: Default_Ignorable_Code_Point
|
|
59
|
+
57: Grapheme_Extend
|
|
60
|
+
58: Grapheme_Base
|
|
61
|
+
59: Grapheme_Link
|
|
62
|
+
60: Common
|
|
63
|
+
61: Latin
|
|
64
|
+
62: Greek
|
|
65
|
+
63: Cyrillic
|
|
66
|
+
64: Armenian
|
|
67
|
+
65: Hebrew
|
|
68
|
+
66: Arabic
|
|
69
|
+
67: Syriac
|
|
70
|
+
68: Thaana
|
|
71
|
+
69: Devanagari
|
|
72
|
+
70: Bengali
|
|
73
|
+
71: Gurmukhi
|
|
74
|
+
72: Gujarati
|
|
75
|
+
73: Oriya
|
|
76
|
+
74: Tamil
|
|
77
|
+
75: Telugu
|
|
78
|
+
76: Kannada
|
|
79
|
+
77: Malayalam
|
|
80
|
+
78: Sinhala
|
|
81
|
+
79: Thai
|
|
82
|
+
80: Lao
|
|
83
|
+
81: Tibetan
|
|
84
|
+
82: Myanmar
|
|
85
|
+
83: Georgian
|
|
86
|
+
84: Hangul
|
|
87
|
+
85: Ethiopic
|
|
88
|
+
86: Cherokee
|
|
89
|
+
87: Canadian_Aboriginal
|
|
90
|
+
88: Ogham
|
|
91
|
+
89: Runic
|
|
92
|
+
90: Khmer
|
|
93
|
+
91: Mongolian
|
|
94
|
+
92: Hiragana
|
|
95
|
+
93: Katakana
|
|
96
|
+
94: Bopomofo
|
|
97
|
+
95: Han
|
|
98
|
+
96: Yi
|
|
99
|
+
97: Old_Italic
|
|
100
|
+
98: Gothic
|
|
101
|
+
99: Deseret
|
|
102
|
+
100: Inherited
|
|
103
|
+
101: Tagalog
|
|
104
|
+
102: Hanunoo
|
|
105
|
+
103: Buhid
|
|
106
|
+
104: Tagbanwa
|
|
107
|
+
105: Limbu
|
|
108
|
+
106: Tai_Le
|
|
109
|
+
107: Linear_B
|
|
110
|
+
108: Ugaritic
|
|
111
|
+
109: Shavian
|
|
112
|
+
110: Osmanya
|
|
113
|
+
111: Cypriot
|
|
114
|
+
112: Braille
|
|
115
|
+
113: Buginese
|
|
116
|
+
114: Coptic
|
|
117
|
+
115: New_Tai_Lue
|
|
118
|
+
116: Glagolitic
|
|
119
|
+
117: Tifinagh
|
|
120
|
+
118: Syloti_Nagri
|
|
121
|
+
119: Old_Persian
|
|
122
|
+
120: Kharoshthi
|
|
123
|
+
121: Balinese
|
|
124
|
+
122: Cuneiform
|
|
125
|
+
123: Phoenician
|
|
126
|
+
124: Phags_Pa
|
|
127
|
+
125: Nko
|
|
128
|
+
126: Sundanese
|
|
129
|
+
127: Lepcha
|
|
130
|
+
128: Ol_Chiki
|
|
131
|
+
129: Vai
|
|
132
|
+
130: Saurashtra
|
|
133
|
+
131: Kayah_Li
|
|
134
|
+
132: Rejang
|
|
135
|
+
133: Lycian
|
|
136
|
+
134: Carian
|
|
137
|
+
135: Lydian
|
|
138
|
+
136: Cham
|
|
139
|
+
137: Tai_Tham
|
|
140
|
+
138: Tai_Viet
|
|
141
|
+
139: Avestan
|
|
142
|
+
140: Egyptian_Hieroglyphs
|
|
143
|
+
141: Samaritan
|
|
144
|
+
142: Lisu
|
|
145
|
+
143: Bamum
|
|
146
|
+
144: Javanese
|
|
147
|
+
145: Meetei_Mayek
|
|
148
|
+
146: Imperial_Aramaic
|
|
149
|
+
147: Old_South_Arabian
|
|
150
|
+
148: Inscriptional_Parthian
|
|
151
|
+
149: Inscriptional_Pahlavi
|
|
152
|
+
150: Old_Turkic
|
|
153
|
+
151: Kaithi
|
|
154
|
+
152: Batak
|
|
155
|
+
153: Brahmi
|
|
156
|
+
154: Mandaic
|
|
157
|
+
155: Chakma
|
|
158
|
+
156: Meroitic_Cursive
|
|
159
|
+
157: Meroitic_Hieroglyphs
|
|
160
|
+
158: Miao
|
|
161
|
+
159: Sharada
|
|
162
|
+
160: Sora_Sompeng
|
|
163
|
+
161: Takri
|
|
164
|
+
162: Caucasian_Albanian
|
|
165
|
+
163: Bassa_Vah
|
|
166
|
+
164: Duployan
|
|
167
|
+
165: Elbasan
|
|
168
|
+
166: Grantha
|
|
169
|
+
167: Pahawh_Hmong
|
|
170
|
+
168: Khojki
|
|
171
|
+
169: Linear_A
|
|
172
|
+
170: Mahajani
|
|
173
|
+
171: Manichaean
|
|
174
|
+
172: Mende_Kikakui
|
|
175
|
+
173: Modi
|
|
176
|
+
174: Mro
|
|
177
|
+
175: Old_North_Arabian
|
|
178
|
+
176: Nabataean
|
|
179
|
+
177: Palmyrene
|
|
180
|
+
178: Pau_Cin_Hau
|
|
181
|
+
179: Old_Permic
|
|
182
|
+
180: Psalter_Pahlavi
|
|
183
|
+
181: Siddham
|
|
184
|
+
182: Khudawadi
|
|
185
|
+
183: Tirhuta
|
|
186
|
+
184: Warang_Citi
|
|
187
|
+
185: Ahom
|
|
188
|
+
186: Anatolian_Hieroglyphs
|
|
189
|
+
187: Hatran
|
|
190
|
+
188: Multani
|
|
191
|
+
189: Old_Hungarian
|
|
192
|
+
190: SignWriting
|
|
193
|
+
191: White_Space
|
|
194
|
+
192: Bidi_Control
|
|
195
|
+
193: Join_Control
|
|
196
|
+
194: Dash
|
|
197
|
+
195: Hyphen
|
|
198
|
+
196: Quotation_Mark
|
|
199
|
+
197: Terminal_Punctuation
|
|
200
|
+
198: Other_Math
|
|
201
|
+
199: Hex_Digit
|
|
202
|
+
200: ASCII_Hex_Digit
|
|
203
|
+
201: Other_Alphabetic
|
|
204
|
+
202: Ideographic
|
|
205
|
+
203: Diacritic
|
|
206
|
+
204: Extender
|
|
207
|
+
205: Other_Lowercase
|
|
208
|
+
206: Other_Uppercase
|
|
209
|
+
207: Noncharacter_Code_Point
|
|
210
|
+
208: Other_Grapheme_Extend
|
|
211
|
+
209: IDS_Binary_Operator
|
|
212
|
+
210: IDS_Trinary_Operator
|
|
213
|
+
211: Radical
|
|
214
|
+
212: Unified_Ideograph
|
|
215
|
+
213: Other_Default_Ignorable_Code_Point
|
|
216
|
+
214: Deprecated
|
|
217
|
+
215: Soft_Dotted
|
|
218
|
+
216: Logical_Order_Exception
|
|
219
|
+
217: Other_ID_Start
|
|
220
|
+
218: Other_ID_Continue
|
|
221
|
+
219: STerm
|
|
222
|
+
220: Variation_Selector
|
|
223
|
+
221: Pattern_White_Space
|
|
224
|
+
222: Pattern_Syntax
|
|
225
|
+
223: Unknown
|
|
226
|
+
224: Aghb
|
|
227
|
+
225: AHex
|
|
228
|
+
226: Arab
|
|
229
|
+
227: Armi
|
|
230
|
+
228: Armn
|
|
231
|
+
229: Avst
|
|
232
|
+
230: Bali
|
|
233
|
+
231: Bamu
|
|
234
|
+
232: Bass
|
|
235
|
+
233: Batk
|
|
236
|
+
234: Beng
|
|
237
|
+
235: Bidi_C
|
|
238
|
+
236: Bopo
|
|
239
|
+
237: Brah
|
|
240
|
+
238: Brai
|
|
241
|
+
239: Bugi
|
|
242
|
+
240: Buhd
|
|
243
|
+
241: Cakm
|
|
244
|
+
242: Cans
|
|
245
|
+
243: Cari
|
|
246
|
+
244: Cased_Letter
|
|
247
|
+
245: Cher
|
|
248
|
+
246: CI
|
|
249
|
+
247: Close_Punctuation
|
|
250
|
+
248: Combining_Mark
|
|
251
|
+
249: Connector_Punctuation
|
|
252
|
+
250: Control
|
|
253
|
+
251: Copt
|
|
254
|
+
252: Cprt
|
|
255
|
+
253: Currency_Symbol
|
|
256
|
+
254: CWCF
|
|
257
|
+
255: CWCM
|
|
258
|
+
256: CWL
|
|
259
|
+
257: CWT
|
|
260
|
+
258: CWU
|
|
261
|
+
259: Cyrl
|
|
262
|
+
260: Dash_Punctuation
|
|
263
|
+
261: Decimal_Number
|
|
264
|
+
262: Dep
|
|
265
|
+
263: Deva
|
|
266
|
+
264: DI
|
|
267
|
+
265: Dia
|
|
268
|
+
266: Dsrt
|
|
269
|
+
267: Dupl
|
|
270
|
+
268: Egyp
|
|
271
|
+
269: Elba
|
|
272
|
+
270: Enclosing_Mark
|
|
273
|
+
271: Ethi
|
|
274
|
+
272: Ext
|
|
275
|
+
273: Final_Punctuation
|
|
276
|
+
274: Format
|
|
277
|
+
275: Geor
|
|
278
|
+
276: Glag
|
|
279
|
+
277: Goth
|
|
280
|
+
278: Gran
|
|
281
|
+
279: Gr_Base
|
|
282
|
+
280: Grek
|
|
283
|
+
281: Gr_Ext
|
|
284
|
+
282: Gr_Link
|
|
285
|
+
283: Gujr
|
|
286
|
+
284: Guru
|
|
287
|
+
285: Hang
|
|
288
|
+
286: Hani
|
|
289
|
+
287: Hano
|
|
290
|
+
288: Hatr
|
|
291
|
+
289: Hebr
|
|
292
|
+
290: Hex
|
|
293
|
+
291: Hira
|
|
294
|
+
292: Hluw
|
|
295
|
+
293: Hmng
|
|
296
|
+
294: Hung
|
|
297
|
+
295: IDC
|
|
298
|
+
296: Ideo
|
|
299
|
+
297: IDS
|
|
300
|
+
298: IDSB
|
|
301
|
+
299: IDST
|
|
302
|
+
300: Initial_Punctuation
|
|
303
|
+
301: Ital
|
|
304
|
+
302: Java
|
|
305
|
+
303: Join_C
|
|
306
|
+
304: Kali
|
|
307
|
+
305: Kana
|
|
308
|
+
306: Khar
|
|
309
|
+
307: Khmr
|
|
310
|
+
308: Khoj
|
|
311
|
+
309: Knda
|
|
312
|
+
310: Kthi
|
|
313
|
+
311: Lana
|
|
314
|
+
312: Laoo
|
|
315
|
+
313: Latn
|
|
316
|
+
314: Lepc
|
|
317
|
+
315: Letter
|
|
318
|
+
316: Letter_Number
|
|
319
|
+
317: Limb
|
|
320
|
+
318: Lina
|
|
321
|
+
319: Linb
|
|
322
|
+
320: Line_Separator
|
|
323
|
+
321: LOE
|
|
324
|
+
322: Lowercase_Letter
|
|
325
|
+
323: Lyci
|
|
326
|
+
324: Lydi
|
|
327
|
+
325: Mahj
|
|
328
|
+
326: Mand
|
|
329
|
+
327: Mani
|
|
330
|
+
328: Mark
|
|
331
|
+
329: Math_Symbol
|
|
332
|
+
330: Mend
|
|
333
|
+
331: Merc
|
|
334
|
+
332: Mero
|
|
335
|
+
333: Mlym
|
|
336
|
+
334: Modifier_Letter
|
|
337
|
+
335: Modifier_Symbol
|
|
338
|
+
336: Mong
|
|
339
|
+
337: Mroo
|
|
340
|
+
338: Mtei
|
|
341
|
+
339: Mult
|
|
342
|
+
340: Mymr
|
|
343
|
+
341: Narb
|
|
344
|
+
342: Nbat
|
|
345
|
+
343: NChar
|
|
346
|
+
344: Nkoo
|
|
347
|
+
345: Nonspacing_Mark
|
|
348
|
+
346: Number
|
|
349
|
+
347: OAlpha
|
|
350
|
+
348: ODI
|
|
351
|
+
349: Ogam
|
|
352
|
+
350: OGr_Ext
|
|
353
|
+
351: OIDC
|
|
354
|
+
352: OIDS
|
|
355
|
+
353: Olck
|
|
356
|
+
354: OLower
|
|
357
|
+
355: OMath
|
|
358
|
+
356: Open_Punctuation
|
|
359
|
+
357: Orkh
|
|
360
|
+
358: Orya
|
|
361
|
+
359: Osma
|
|
362
|
+
360: Other
|
|
363
|
+
361: Other_Letter
|
|
364
|
+
362: Other_Number
|
|
365
|
+
363: Other_Punctuation
|
|
366
|
+
364: Other_Symbol
|
|
367
|
+
365: OUpper
|
|
368
|
+
366: Palm
|
|
369
|
+
367: Paragraph_Separator
|
|
370
|
+
368: Pat_Syn
|
|
371
|
+
369: Pat_WS
|
|
372
|
+
370: Pauc
|
|
373
|
+
371: Perm
|
|
374
|
+
372: Phag
|
|
375
|
+
373: Phli
|
|
376
|
+
374: Phlp
|
|
377
|
+
375: Phnx
|
|
378
|
+
376: Plrd
|
|
379
|
+
377: Private_Use
|
|
380
|
+
378: Prti
|
|
381
|
+
379: Punctuation
|
|
382
|
+
380: Qaac
|
|
383
|
+
381: Qaai
|
|
384
|
+
382: QMark
|
|
385
|
+
383: Rjng
|
|
386
|
+
384: Runr
|
|
387
|
+
385: Samr
|
|
388
|
+
386: Sarb
|
|
389
|
+
387: Saur
|
|
390
|
+
388: SD
|
|
391
|
+
389: Separator
|
|
392
|
+
390: Sgnw
|
|
393
|
+
391: Shaw
|
|
394
|
+
392: Shrd
|
|
395
|
+
393: Sidd
|
|
396
|
+
394: Sind
|
|
397
|
+
395: Sinh
|
|
398
|
+
396: Sora
|
|
399
|
+
397: Space_Separator
|
|
400
|
+
398: Spacing_Mark
|
|
401
|
+
399: Sund
|
|
402
|
+
400: Surrogate
|
|
403
|
+
401: Sylo
|
|
404
|
+
402: Symbol
|
|
405
|
+
403: Syrc
|
|
406
|
+
404: Tagb
|
|
407
|
+
405: Takr
|
|
408
|
+
406: Tale
|
|
409
|
+
407: Talu
|
|
410
|
+
408: Taml
|
|
411
|
+
409: Tavt
|
|
412
|
+
410: Telu
|
|
413
|
+
411: Term
|
|
414
|
+
412: Tfng
|
|
415
|
+
413: Tglg
|
|
416
|
+
414: Thaa
|
|
417
|
+
415: Tibt
|
|
418
|
+
416: Tirh
|
|
419
|
+
417: Titlecase_Letter
|
|
420
|
+
418: Ugar
|
|
421
|
+
419: UIdeo
|
|
422
|
+
420: Unassigned
|
|
423
|
+
421: Uppercase_Letter
|
|
424
|
+
422: Vaii
|
|
425
|
+
423: VS
|
|
426
|
+
424: Wara
|
|
427
|
+
425: WSpace
|
|
428
|
+
426: XIDC
|
|
429
|
+
427: XIDS
|
|
430
|
+
428: Xpeo
|
|
431
|
+
429: Xsux
|
|
432
|
+
430: Yiii
|
|
433
|
+
431: Zinh
|
|
434
|
+
432: Zyyy
|
|
435
|
+
433: Zzzz
|
|
436
|
+
434: In_Basic_Latin
|
|
437
|
+
435: In_Latin_1_Supplement
|
|
438
|
+
436: In_Latin_Extended_A
|
|
439
|
+
437: In_Latin_Extended_B
|
|
440
|
+
438: In_IPA_Extensions
|
|
441
|
+
439: In_Spacing_Modifier_Letters
|
|
442
|
+
440: In_Combining_Diacritical_Marks
|
|
443
|
+
441: In_Greek_and_Coptic
|
|
444
|
+
442: In_Cyrillic
|
|
445
|
+
443: In_Cyrillic_Supplement
|
|
446
|
+
444: In_Armenian
|
|
447
|
+
445: In_Hebrew
|
|
448
|
+
446: In_Arabic
|
|
449
|
+
447: In_Syriac
|
|
450
|
+
448: In_Arabic_Supplement
|
|
451
|
+
449: In_Thaana
|
|
452
|
+
450: In_NKo
|
|
453
|
+
451: In_Samaritan
|
|
454
|
+
452: In_Mandaic
|
|
455
|
+
453: In_Arabic_Extended_A
|
|
456
|
+
454: In_Devanagari
|
|
457
|
+
455: In_Bengali
|
|
458
|
+
456: In_Gurmukhi
|
|
459
|
+
457: In_Gujarati
|
|
460
|
+
458: In_Oriya
|
|
461
|
+
459: In_Tamil
|
|
462
|
+
460: In_Telugu
|
|
463
|
+
461: In_Kannada
|
|
464
|
+
462: In_Malayalam
|
|
465
|
+
463: In_Sinhala
|
|
466
|
+
464: In_Thai
|
|
467
|
+
465: In_Lao
|
|
468
|
+
466: In_Tibetan
|
|
469
|
+
467: In_Myanmar
|
|
470
|
+
468: In_Georgian
|
|
471
|
+
469: In_Hangul_Jamo
|
|
472
|
+
470: In_Ethiopic
|
|
473
|
+
471: In_Ethiopic_Supplement
|
|
474
|
+
472: In_Cherokee
|
|
475
|
+
473: In_Unified_Canadian_Aboriginal_Syllabics
|
|
476
|
+
474: In_Ogham
|
|
477
|
+
475: In_Runic
|
|
478
|
+
476: In_Tagalog
|
|
479
|
+
477: In_Hanunoo
|
|
480
|
+
478: In_Buhid
|
|
481
|
+
479: In_Tagbanwa
|
|
482
|
+
480: In_Khmer
|
|
483
|
+
481: In_Mongolian
|
|
484
|
+
482: In_Unified_Canadian_Aboriginal_Syllabics_Extended
|
|
485
|
+
483: In_Limbu
|
|
486
|
+
484: In_Tai_Le
|
|
487
|
+
485: In_New_Tai_Lue
|
|
488
|
+
486: In_Khmer_Symbols
|
|
489
|
+
487: In_Buginese
|
|
490
|
+
488: In_Tai_Tham
|
|
491
|
+
489: In_Combining_Diacritical_Marks_Extended
|
|
492
|
+
490: In_Balinese
|
|
493
|
+
491: In_Sundanese
|
|
494
|
+
492: In_Batak
|
|
495
|
+
493: In_Lepcha
|
|
496
|
+
494: In_Ol_Chiki
|
|
497
|
+
495: In_Sundanese_Supplement
|
|
498
|
+
496: In_Vedic_Extensions
|
|
499
|
+
497: In_Phonetic_Extensions
|
|
500
|
+
498: In_Phonetic_Extensions_Supplement
|
|
501
|
+
499: In_Combining_Diacritical_Marks_Supplement
|
|
502
|
+
500: In_Latin_Extended_Additional
|
|
503
|
+
501: In_Greek_Extended
|
|
504
|
+
502: In_General_Punctuation
|
|
505
|
+
503: In_Superscripts_and_Subscripts
|
|
506
|
+
504: In_Currency_Symbols
|
|
507
|
+
505: In_Combining_Diacritical_Marks_for_Symbols
|
|
508
|
+
506: In_Letterlike_Symbols
|
|
509
|
+
507: In_Number_Forms
|
|
510
|
+
508: In_Arrows
|
|
511
|
+
509: In_Mathematical_Operators
|
|
512
|
+
510: In_Miscellaneous_Technical
|
|
513
|
+
511: In_Control_Pictures
|
|
514
|
+
512: In_Optical_Character_Recognition
|
|
515
|
+
513: In_Enclosed_Alphanumerics
|
|
516
|
+
514: In_Box_Drawing
|
|
517
|
+
515: In_Block_Elements
|
|
518
|
+
516: In_Geometric_Shapes
|
|
519
|
+
517: In_Miscellaneous_Symbols
|
|
520
|
+
518: In_Dingbats
|
|
521
|
+
519: In_Miscellaneous_Mathematical_Symbols_A
|
|
522
|
+
520: In_Supplemental_Arrows_A
|
|
523
|
+
521: In_Braille_Patterns
|
|
524
|
+
522: In_Supplemental_Arrows_B
|
|
525
|
+
523: In_Miscellaneous_Mathematical_Symbols_B
|
|
526
|
+
524: In_Supplemental_Mathematical_Operators
|
|
527
|
+
525: In_Miscellaneous_Symbols_and_Arrows
|
|
528
|
+
526: In_Glagolitic
|
|
529
|
+
527: In_Latin_Extended_C
|
|
530
|
+
528: In_Coptic
|
|
531
|
+
529: In_Georgian_Supplement
|
|
532
|
+
530: In_Tifinagh
|
|
533
|
+
531: In_Ethiopic_Extended
|
|
534
|
+
532: In_Cyrillic_Extended_A
|
|
535
|
+
533: In_Supplemental_Punctuation
|
|
536
|
+
534: In_CJK_Radicals_Supplement
|
|
537
|
+
535: In_Kangxi_Radicals
|
|
538
|
+
536: In_Ideographic_Description_Characters
|
|
539
|
+
537: In_CJK_Symbols_and_Punctuation
|
|
540
|
+
538: In_Hiragana
|
|
541
|
+
539: In_Katakana
|
|
542
|
+
540: In_Bopomofo
|
|
543
|
+
541: In_Hangul_Compatibility_Jamo
|
|
544
|
+
542: In_Kanbun
|
|
545
|
+
543: In_Bopomofo_Extended
|
|
546
|
+
544: In_CJK_Strokes
|
|
547
|
+
545: In_Katakana_Phonetic_Extensions
|
|
548
|
+
546: In_Enclosed_CJK_Letters_and_Months
|
|
549
|
+
547: In_CJK_Compatibility
|
|
550
|
+
548: In_CJK_Unified_Ideographs_Extension_A
|
|
551
|
+
549: In_Yijing_Hexagram_Symbols
|
|
552
|
+
550: In_CJK_Unified_Ideographs
|
|
553
|
+
551: In_Yi_Syllables
|
|
554
|
+
552: In_Yi_Radicals
|
|
555
|
+
553: In_Lisu
|
|
556
|
+
554: In_Vai
|
|
557
|
+
555: In_Cyrillic_Extended_B
|
|
558
|
+
556: In_Bamum
|
|
559
|
+
557: In_Modifier_Tone_Letters
|
|
560
|
+
558: In_Latin_Extended_D
|
|
561
|
+
559: In_Syloti_Nagri
|
|
562
|
+
560: In_Common_Indic_Number_Forms
|
|
563
|
+
561: In_Phags_pa
|
|
564
|
+
562: In_Saurashtra
|
|
565
|
+
563: In_Devanagari_Extended
|
|
566
|
+
564: In_Kayah_Li
|
|
567
|
+
565: In_Rejang
|
|
568
|
+
566: In_Hangul_Jamo_Extended_A
|
|
569
|
+
567: In_Javanese
|
|
570
|
+
568: In_Myanmar_Extended_B
|
|
571
|
+
569: In_Cham
|
|
572
|
+
570: In_Myanmar_Extended_A
|
|
573
|
+
571: In_Tai_Viet
|
|
574
|
+
572: In_Meetei_Mayek_Extensions
|
|
575
|
+
573: In_Ethiopic_Extended_A
|
|
576
|
+
574: In_Latin_Extended_E
|
|
577
|
+
575: In_Cherokee_Supplement
|
|
578
|
+
576: In_Meetei_Mayek
|
|
579
|
+
577: In_Hangul_Syllables
|
|
580
|
+
578: In_Hangul_Jamo_Extended_B
|
|
581
|
+
579: In_High_Surrogates
|
|
582
|
+
580: In_High_Private_Use_Surrogates
|
|
583
|
+
581: In_Low_Surrogates
|
|
584
|
+
582: In_Private_Use_Area
|
|
585
|
+
583: In_CJK_Compatibility_Ideographs
|
|
586
|
+
584: In_Alphabetic_Presentation_Forms
|
|
587
|
+
585: In_Arabic_Presentation_Forms_A
|
|
588
|
+
586: In_Variation_Selectors
|
|
589
|
+
587: In_Vertical_Forms
|
|
590
|
+
588: In_Combining_Half_Marks
|
|
591
|
+
589: In_CJK_Compatibility_Forms
|
|
592
|
+
590: In_Small_Form_Variants
|
|
593
|
+
591: In_Arabic_Presentation_Forms_B
|
|
594
|
+
592: In_Halfwidth_and_Fullwidth_Forms
|
|
595
|
+
593: In_Specials
|
|
596
|
+
594: In_Linear_B_Syllabary
|
|
597
|
+
595: In_Linear_B_Ideograms
|
|
598
|
+
596: In_Aegean_Numbers
|
|
599
|
+
597: In_Ancient_Greek_Numbers
|
|
600
|
+
598: In_Ancient_Symbols
|
|
601
|
+
599: In_Phaistos_Disc
|
|
602
|
+
600: In_Lycian
|
|
603
|
+
601: In_Carian
|
|
604
|
+
602: In_Coptic_Epact_Numbers
|
|
605
|
+
603: In_Old_Italic
|
|
606
|
+
604: In_Gothic
|
|
607
|
+
605: In_Old_Permic
|
|
608
|
+
606: In_Ugaritic
|
|
609
|
+
607: In_Old_Persian
|
|
610
|
+
608: In_Deseret
|
|
611
|
+
609: In_Shavian
|
|
612
|
+
610: In_Osmanya
|
|
613
|
+
611: In_Elbasan
|
|
614
|
+
612: In_Caucasian_Albanian
|
|
615
|
+
613: In_Linear_A
|
|
616
|
+
614: In_Cypriot_Syllabary
|
|
617
|
+
615: In_Imperial_Aramaic
|
|
618
|
+
616: In_Palmyrene
|
|
619
|
+
617: In_Nabataean
|
|
620
|
+
618: In_Hatran
|
|
621
|
+
619: In_Phoenician
|
|
622
|
+
620: In_Lydian
|
|
623
|
+
621: In_Meroitic_Hieroglyphs
|
|
624
|
+
622: In_Meroitic_Cursive
|
|
625
|
+
623: In_Kharoshthi
|
|
626
|
+
624: In_Old_South_Arabian
|
|
627
|
+
625: In_Old_North_Arabian
|
|
628
|
+
626: In_Manichaean
|
|
629
|
+
627: In_Avestan
|
|
630
|
+
628: In_Inscriptional_Parthian
|
|
631
|
+
629: In_Inscriptional_Pahlavi
|
|
632
|
+
630: In_Psalter_Pahlavi
|
|
633
|
+
631: In_Old_Turkic
|
|
634
|
+
632: In_Old_Hungarian
|
|
635
|
+
633: In_Rumi_Numeral_Symbols
|
|
636
|
+
634: In_Brahmi
|
|
637
|
+
635: In_Kaithi
|
|
638
|
+
636: In_Sora_Sompeng
|
|
639
|
+
637: In_Chakma
|
|
640
|
+
638: In_Mahajani
|
|
641
|
+
639: In_Sharada
|
|
642
|
+
640: In_Sinhala_Archaic_Numbers
|
|
643
|
+
641: In_Khojki
|
|
644
|
+
642: In_Multani
|
|
645
|
+
643: In_Khudawadi
|
|
646
|
+
644: In_Grantha
|
|
647
|
+
645: In_Tirhuta
|
|
648
|
+
646: In_Siddham
|
|
649
|
+
647: In_Modi
|
|
650
|
+
648: In_Takri
|
|
651
|
+
649: In_Ahom
|
|
652
|
+
650: In_Warang_Citi
|
|
653
|
+
651: In_Pau_Cin_Hau
|
|
654
|
+
652: In_Cuneiform
|
|
655
|
+
653: In_Cuneiform_Numbers_and_Punctuation
|
|
656
|
+
654: In_Early_Dynastic_Cuneiform
|
|
657
|
+
655: In_Egyptian_Hieroglyphs
|
|
658
|
+
656: In_Anatolian_Hieroglyphs
|
|
659
|
+
657: In_Bamum_Supplement
|
|
660
|
+
658: In_Mro
|
|
661
|
+
659: In_Bassa_Vah
|
|
662
|
+
660: In_Pahawh_Hmong
|
|
663
|
+
661: In_Miao
|
|
664
|
+
662: In_Kana_Supplement
|
|
665
|
+
663: In_Duployan
|
|
666
|
+
664: In_Shorthand_Format_Controls
|
|
667
|
+
665: In_Byzantine_Musical_Symbols
|
|
668
|
+
666: In_Musical_Symbols
|
|
669
|
+
667: In_Ancient_Greek_Musical_Notation
|
|
670
|
+
668: In_Tai_Xuan_Jing_Symbols
|
|
671
|
+
669: In_Counting_Rod_Numerals
|
|
672
|
+
670: In_Mathematical_Alphanumeric_Symbols
|
|
673
|
+
671: In_Sutton_SignWriting
|
|
674
|
+
672: In_Mende_Kikakui
|
|
675
|
+
673: In_Arabic_Mathematical_Alphabetic_Symbols
|
|
676
|
+
674: In_Mahjong_Tiles
|
|
677
|
+
675: In_Domino_Tiles
|
|
678
|
+
676: In_Playing_Cards
|
|
679
|
+
677: In_Enclosed_Alphanumeric_Supplement
|
|
680
|
+
678: In_Enclosed_Ideographic_Supplement
|
|
681
|
+
679: In_Miscellaneous_Symbols_and_Pictographs
|
|
682
|
+
680: In_Emoticons
|
|
683
|
+
681: In_Ornamental_Dingbats
|
|
684
|
+
682: In_Transport_and_Map_Symbols
|
|
685
|
+
683: In_Alchemical_Symbols
|
|
686
|
+
684: In_Geometric_Shapes_Extended
|
|
687
|
+
685: In_Supplemental_Arrows_C
|
|
688
|
+
686: In_Supplemental_Symbols_and_Pictographs
|
|
689
|
+
687: In_CJK_Unified_Ideographs_Extension_B
|
|
690
|
+
688: In_CJK_Unified_Ideographs_Extension_C
|
|
691
|
+
689: In_CJK_Unified_Ideographs_Extension_D
|
|
692
|
+
690: In_CJK_Unified_Ideographs_Extension_E
|
|
693
|
+
691: In_CJK_Compatibility_Ideographs_Supplement
|
|
694
|
+
692: In_Tags
|
|
695
|
+
693: In_Variation_Selectors_Supplement
|
|
696
|
+
694: In_Supplementary_Private_Use_Area_A
|
|
697
|
+
695: In_Supplementary_Private_Use_Area_B
|
|
698
|
+
696: In_No_Block
|