html-to-markdown 2.24.6 → 2.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/ext/html-to-markdown-rb/native/Cargo.lock +3 -26
  4. data/ext/html-to-markdown-rb/native/Cargo.toml +1 -1
  5. data/lib/html_to_markdown/version.rb +1 -1
  6. data/rust-vendor/html-to-markdown-rs/Cargo.toml +0 -1
  7. data/rust-vendor/html-to-markdown-rs/src/converter/main_helpers.rs +1 -1
  8. data/rust-vendor/html-to-markdown-rs/src/lib.rs +1 -0
  9. data/rust-vendor/{markup5ever_rcdom/lib.rs → html-to-markdown-rs/src/rcdom.rs} +53 -91
  10. data/rust-vendor/png/.cargo-checksum.json +1 -1
  11. data/rust-vendor/png/.cargo_vcs_info.json +1 -1
  12. data/rust-vendor/png/CHANGES.md +44 -0
  13. data/rust-vendor/png/Cargo.lock +124 -171
  14. data/rust-vendor/png/Cargo.toml +1 -1
  15. data/rust-vendor/png/Cargo.toml.orig +1 -1
  16. data/rust-vendor/png/benches/expand_paletted.rs +5 -5
  17. data/rust-vendor/png/benches/unfilter.rs +3 -3
  18. data/rust-vendor/png/src/adam7.rs +17 -10
  19. data/rust-vendor/png/src/common.rs +8 -8
  20. data/rust-vendor/png/src/decoder/mod.rs +53 -20
  21. data/rust-vendor/png/src/decoder/stream.rs +263 -78
  22. data/rust-vendor/png/src/decoder/unfiltering_buffer.rs +210 -53
  23. data/rust-vendor/png/src/decoder/zlib.rs +130 -90
  24. data/rust-vendor/png/src/encoder.rs +4 -2
  25. data/rust-vendor/png/src/{filter.rs → filter/mod.rs} +100 -367
  26. data/rust-vendor/png/src/filter/optimization-notes.md +104 -0
  27. data/rust-vendor/png/src/filter/paeth.rs +398 -0
  28. data/rust-vendor/png/src/filter/simd.rs +308 -0
  29. data/rust-vendor/png/src/lib.rs +1 -0
  30. metadata +7 -177
  31. data/rust-vendor/markup5ever_rcdom/.cargo-checksum.json +0 -1
  32. data/rust-vendor/markup5ever_rcdom/.cargo_vcs_info.json +0 -7
  33. data/rust-vendor/markup5ever_rcdom/Cargo.lock +0 -658
  34. data/rust-vendor/markup5ever_rcdom/Cargo.toml +0 -109
  35. data/rust-vendor/markup5ever_rcdom/Cargo.toml.orig +0 -42
  36. data/rust-vendor/markup5ever_rcdom/LICENSE-APACHE +0 -201
  37. data/rust-vendor/markup5ever_rcdom/LICENSE-MIT +0 -25
  38. data/rust-vendor/markup5ever_rcdom/README.md +0 -7
  39. data/rust-vendor/markup5ever_rcdom/custom-html5lib-tokenizer-tests/regression.test +0 -69
  40. data/rust-vendor/markup5ever_rcdom/data/test/ignore +0 -1
  41. data/rust-vendor/markup5ever_rcdom/examples/hello_xml.rs +0 -39
  42. data/rust-vendor/markup5ever_rcdom/examples/html2html.rs +0 -51
  43. data/rust-vendor/markup5ever_rcdom/examples/print-rcdom.rs +0 -78
  44. data/rust-vendor/markup5ever_rcdom/examples/xml_tree_printer.rs +0 -67
  45. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.gitattributes +0 -2
  46. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.github/workflows/downstream.yml +0 -76
  47. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.github/workflows/lint.yml +0 -25
  48. data/rust-vendor/markup5ever_rcdom/html5lib-tests/.gitignore +0 -79
  49. data/rust-vendor/markup5ever_rcdom/html5lib-tests/AUTHORS.rst +0 -34
  50. data/rust-vendor/markup5ever_rcdom/html5lib-tests/LICENSE +0 -21
  51. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/chardet/test_big5.txt +0 -51
  52. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/scripted/tests1.dat +0 -5
  53. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/test-yahoo-jp.dat +0 -10
  54. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/tests1.dat +0 -388
  55. data/rust-vendor/markup5ever_rcdom/html5lib-tests/encoding/tests2.dat +0 -115
  56. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint +0 -6
  57. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/__init__.py +0 -0
  58. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/__init__.py +0 -0
  59. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/LICENSE +0 -18
  60. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/__init__.py +0 -0
  61. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/lexer.py +0 -211
  62. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/lexer.pyi +0 -34
  63. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/parser.py +0 -872
  64. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/parser.pyi +0 -83
  65. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/py.typed +0 -0
  66. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/util.py +0 -72
  67. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/funcparserlib/util.pyi +0 -7
  68. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor/vendor.txt +0 -1
  69. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/_vendor-patches/funcparserlib.patch +0 -24
  70. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/lint.py +0 -280
  71. data/rust-vendor/markup5ever_rcdom/html5lib-tests/lint_lib/parser.py +0 -177
  72. data/rust-vendor/markup5ever_rcdom/html5lib-tests/pyproject.toml +0 -7
  73. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/core.test +0 -125
  74. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/injectmeta.test +0 -66
  75. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/optionaltags.test +0 -965
  76. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/options.test +0 -60
  77. data/rust-vendor/markup5ever_rcdom/html5lib-tests/serializer/whitespace.test +0 -51
  78. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/README.md +0 -107
  79. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/contentModelFlags.test +0 -93
  80. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/domjs.test +0 -335
  81. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/entities.test +0 -542
  82. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/escapeFlag.test +0 -36
  83. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/namedEntities.test +0 -42422
  84. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/numericEntities.test +0 -1677
  85. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/pendingSpecChanges.test +0 -9
  86. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test1.test +0 -353
  87. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test2.test +0 -275
  88. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test3.test +0 -11233
  89. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/test4.test +0 -532
  90. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/unicodeChars.test +0 -1577
  91. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/unicodeCharsProblematic.test +0 -41
  92. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tokenizer/xmlViolation.test +0 -20
  93. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/README.md +0 -108
  94. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/adoption01.dat +0 -354
  95. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/adoption02.dat +0 -39
  96. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/blocks.dat +0 -695
  97. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/comments01.dat +0 -217
  98. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/doctype01.dat +0 -474
  99. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/domjs-unsafe.dat +0 -0
  100. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/entities01.dat +0 -943
  101. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/entities02.dat +0 -309
  102. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/foreign-fragment.dat +0 -645
  103. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/html5test-com.dat +0 -301
  104. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/inbody01.dat +0 -54
  105. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/isindex.dat +0 -49
  106. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/main-element.dat +0 -46
  107. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/math.dat +0 -104
  108. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/menuitem-element.dat +0 -240
  109. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/namespace-sensitivity.dat +0 -22
  110. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/noscript01.dat +0 -237
  111. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/pending-spec-changes-plain-text-unsafe.dat +0 -0
  112. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/pending-spec-changes.dat +0 -46
  113. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/plain-text-unsafe.dat +0 -0
  114. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/quirks01.dat +0 -53
  115. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/ruby.dat +0 -302
  116. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scriptdata01.dat +0 -372
  117. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scripted/adoption01.dat +0 -16
  118. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scripted/ark.dat +0 -27
  119. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/scripted/webkit01.dat +0 -30
  120. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/search-element.dat +0 -46
  121. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/svg.dat +0 -104
  122. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tables01.dat +0 -322
  123. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/template.dat +0 -1673
  124. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests1.dat +0 -1956
  125. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests10.dat +0 -849
  126. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests11.dat +0 -523
  127. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests12.dat +0 -62
  128. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests14.dat +0 -75
  129. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests15.dat +0 -216
  130. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests16.dat +0 -2602
  131. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests17.dat +0 -179
  132. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests18.dat +0 -558
  133. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests19.dat +0 -1398
  134. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests2.dat +0 -831
  135. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests20.dat +0 -842
  136. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests21.dat +0 -306
  137. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests22.dat +0 -190
  138. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests23.dat +0 -168
  139. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests24.dat +0 -79
  140. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests25.dat +0 -288
  141. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests26.dat +0 -453
  142. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests3.dat +0 -305
  143. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests4.dat +0 -74
  144. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests5.dat +0 -210
  145. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests6.dat +0 -663
  146. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests7.dat +0 -453
  147. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests8.dat +0 -165
  148. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests9.dat +0 -472
  149. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tests_innerHTML_1.dat +0 -843
  150. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/tricky01.dat +0 -336
  151. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/webkit01.dat +0 -785
  152. data/rust-vendor/markup5ever_rcdom/html5lib-tests/tree-construction/webkit02.dat +0 -554
  153. data/rust-vendor/markup5ever_rcdom/tests/foreach_html5lib_test/mod.rs +0 -41
  154. data/rust-vendor/markup5ever_rcdom/tests/html-driver.rs +0 -29
  155. data/rust-vendor/markup5ever_rcdom/tests/html-serializer.rs +0 -265
  156. data/rust-vendor/markup5ever_rcdom/tests/html-tokenizer.rs +0 -487
  157. data/rust-vendor/markup5ever_rcdom/tests/html-tree-builder.rs +0 -298
  158. data/rust-vendor/markup5ever_rcdom/tests/html-tree-sink.rs +0 -141
  159. data/rust-vendor/markup5ever_rcdom/tests/util/find_tests.rs +0 -34
  160. data/rust-vendor/markup5ever_rcdom/tests/util/runner.rs +0 -48
  161. data/rust-vendor/markup5ever_rcdom/tests/xml-driver.rs +0 -101
  162. data/rust-vendor/markup5ever_rcdom/tests/xml-tokenizer.rs +0 -374
  163. data/rust-vendor/markup5ever_rcdom/tests/xml-tree-builder.rs +0 -237
  164. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/AUTHORS.rst +0 -9
  165. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/LICENSE +0 -21
  166. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/README.md +0 -92
  167. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/comments.test +0 -274
  168. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/doctype.test +0 -3232
  169. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/entities.test +0 -283
  170. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/eof.test +0 -113
  171. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/namedEntities.test +0 -42210
  172. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/numericEntities.test +0 -1349
  173. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/test1.test +0 -162
  174. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/test2.test +0 -64
  175. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tokenizer/unicodeChars.test +0 -1295
  176. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tree-construction/README.md +0 -104
  177. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tree-construction/namespace.dat +0 -119
  178. data/rust-vendor/markup5ever_rcdom/xml5lib-tests/tree-construction/test1.dat +0 -124
  179. data/rust-vendor/xml5ever/.cargo-checksum.json +0 -1
  180. data/rust-vendor/xml5ever/.cargo_vcs_info.json +0 -6
  181. data/rust-vendor/xml5ever/Cargo.lock +0 -752
  182. data/rust-vendor/xml5ever/Cargo.toml +0 -69
  183. data/rust-vendor/xml5ever/Cargo.toml.orig +0 -29
  184. data/rust-vendor/xml5ever/LICENSE-APACHE +0 -201
  185. data/rust-vendor/xml5ever/LICENSE-MIT +0 -25
  186. data/rust-vendor/xml5ever/README.md +0 -72
  187. data/rust-vendor/xml5ever/benches/xml5ever.rs +0 -77
  188. data/rust-vendor/xml5ever/data/bench/strong.xml +0 -1
  189. data/rust-vendor/xml5ever/examples/README.md +0 -223
  190. data/rust-vendor/xml5ever/examples/example.xml +0 -3
  191. data/rust-vendor/xml5ever/examples/simple_xml_tokenizer.rs +0 -81
  192. data/rust-vendor/xml5ever/examples/xml_tokenizer.rs +0 -115
  193. data/rust-vendor/xml5ever/src/driver.rs +0 -90
  194. data/rust-vendor/xml5ever/src/lib.rs +0 -47
  195. data/rust-vendor/xml5ever/src/macros.rs +0 -18
  196. data/rust-vendor/xml5ever/src/serialize/mod.rs +0 -216
  197. data/rust-vendor/xml5ever/src/tokenizer/char_ref/mod.rs +0 -456
  198. data/rust-vendor/xml5ever/src/tokenizer/interface.rs +0 -116
  199. data/rust-vendor/xml5ever/src/tokenizer/mod.rs +0 -1344
  200. data/rust-vendor/xml5ever/src/tokenizer/qname.rs +0 -84
  201. data/rust-vendor/xml5ever/src/tokenizer/states.rs +0 -167
  202. data/rust-vendor/xml5ever/src/tree_builder/mod.rs +0 -774
  203. data/rust-vendor/xml5ever/src/tree_builder/types.rs +0 -37
@@ -1,1349 +0,0 @@
1
- {"tests": [
2
-
3
- {"description": "Invalid unterminated numeric entity character overflow before EOF",
4
- "input": "&#11111111111",
5
- "output": ["ParseError", "ParseError", ["Character", "\uFFFD"]]},
6
-
7
- {"description": "Invalid unterminated numeric entity character overflow before EOF",
8
- "input": "&#1111111111",
9
- "output": ["ParseError", "ParseError", ["Character", "\uFFFD"]]},
10
-
11
- {"description": "Invalid unterminated numeric entity character overflow before EOF",
12
- "input": "&#111111111111",
13
- "output": ["ParseError", "ParseError", ["Character", "\uFFFD"]]},
14
-
15
- {"description": "Invalid unterminated numeric entity character overflow",
16
- "input": "&#11111111111x",
17
- "output": ["ParseError", "ParseError", ["Character", "\uFFFDx"]]},
18
-
19
- {"description": "Invalid unterminated numeric entity character overflow",
20
- "input": "&#1111111111x",
21
- "output": ["ParseError", "ParseError", ["Character", "\uFFFDx"]]},
22
-
23
- {"description": "Invalid unterminated numeric entity character overflow",
24
- "input": "&#111111111111x",
25
- "output": ["ParseError", "ParseError", ["Character", "\uFFFDx"]]},
26
-
27
- {"description": "Invalid numeric entity character overflow",
28
- "input": "�",
29
- "output": ["ParseError", ["Character", "\uFFFD"]]},
30
-
31
- {"description": "Invalid numeric entity character overflow",
32
- "input": "�",
33
- "output": ["ParseError", ["Character", "\uFFFD"]]},
34
-
35
- {"description": "Invalid numeric entity character overflow",
36
- "input": "�",
37
- "output": ["ParseError", ["Character", "\uFFFD"]]},
38
-
39
- {"description": "Invalid numeric entity character U+0000",
40
- "input": "�",
41
- "output": ["ParseError", ["Character", "\uFFFD"]]},
42
-
43
- {"description": "Invalid numeric entity character U+0001",
44
- "input": "",
45
- "output": ["ParseError", ["Character", "\u0001"]]},
46
-
47
- {"description": "Invalid numeric entity character U+0002",
48
- "input": "",
49
- "output": ["ParseError", ["Character", "\u0002"]]},
50
-
51
- {"description": "Invalid numeric entity character U+0003",
52
- "input": "",
53
- "output": ["ParseError", ["Character", "\u0003"]]},
54
-
55
- {"description": "Invalid numeric entity character U+0004",
56
- "input": "",
57
- "output": ["ParseError", ["Character", "\u0004"]]},
58
-
59
- {"description": "Invalid numeric entity character U+0005",
60
- "input": "",
61
- "output": ["ParseError", ["Character", "\u0005"]]},
62
-
63
- {"description": "Invalid numeric entity character U+0006",
64
- "input": "",
65
- "output": ["ParseError", ["Character", "\u0006"]]},
66
-
67
- {"description": "Invalid numeric entity character U+0007",
68
- "input": "",
69
- "output": ["ParseError", ["Character", "\u0007"]]},
70
-
71
- {"description": "Invalid numeric entity character U+0008",
72
- "input": "",
73
- "output": ["ParseError", ["Character", "\u0008"]]},
74
-
75
- {"description": "Invalid numeric entity character U+000B",
76
- "input": "",
77
- "output": ["ParseError", ["Character", "\u000b"]]},
78
-
79
- {"description": "Invalid numeric entity character U+000E",
80
- "input": "",
81
- "output": ["ParseError", ["Character", "\u000e"]]},
82
-
83
- {"description": "Invalid numeric entity character U+000F",
84
- "input": "",
85
- "output": ["ParseError", ["Character", "\u000f"]]},
86
-
87
- {"description": "Invalid numeric entity character U+0010",
88
- "input": "",
89
- "output": ["ParseError", ["Character", "\u0010"]]},
90
-
91
- {"description": "Invalid numeric entity character U+0011",
92
- "input": "",
93
- "output": ["ParseError", ["Character", "\u0011"]]},
94
-
95
- {"description": "Invalid numeric entity character U+0012",
96
- "input": "",
97
- "output": ["ParseError", ["Character", "\u0012"]]},
98
-
99
- {"description": "Invalid numeric entity character U+0013",
100
- "input": "",
101
- "output": ["ParseError", ["Character", "\u0013"]]},
102
-
103
- {"description": "Invalid numeric entity character U+0014",
104
- "input": "",
105
- "output": ["ParseError", ["Character", "\u0014"]]},
106
-
107
- {"description": "Invalid numeric entity character U+0015",
108
- "input": "",
109
- "output": ["ParseError", ["Character", "\u0015"]]},
110
-
111
- {"description": "Invalid numeric entity character U+0016",
112
- "input": "",
113
- "output": ["ParseError", ["Character", "\u0016"]]},
114
-
115
- {"description": "Invalid numeric entity character U+0017",
116
- "input": "",
117
- "output": ["ParseError", ["Character", "\u0017"]]},
118
-
119
- {"description": "Invalid numeric entity character U+0018",
120
- "input": "",
121
- "output": ["ParseError", ["Character", "\u0018"]]},
122
-
123
- {"description": "Invalid numeric entity character U+0019",
124
- "input": "",
125
- "output": ["ParseError", ["Character", "\u0019"]]},
126
-
127
- {"description": "Invalid numeric entity character U+001A",
128
- "input": "",
129
- "output": ["ParseError", ["Character", "\u001a"]]},
130
-
131
- {"description": "Invalid numeric entity character U+001B",
132
- "input": "",
133
- "output": ["ParseError", ["Character", "\u001b"]]},
134
-
135
- {"description": "Invalid numeric entity character U+001C",
136
- "input": "",
137
- "output": ["ParseError", ["Character", "\u001c"]]},
138
-
139
- {"description": "Invalid numeric entity character U+001D",
140
- "input": "",
141
- "output": ["ParseError", ["Character", "\u001d"]]},
142
-
143
- {"description": "Invalid numeric entity character U+001E",
144
- "input": "",
145
- "output": ["ParseError", ["Character", "\u001e"]]},
146
-
147
- {"description": "Invalid numeric entity character U+001F",
148
- "input": "",
149
- "output": ["ParseError", ["Character", "\u001f"]]},
150
-
151
- {"description": "Invalid numeric entity character U+007F",
152
- "input": "",
153
- "output": ["ParseError", ["Character", "\u007f"]]},
154
-
155
- {"description": "Invalid numeric entity character U+D800",
156
- "input": "�",
157
- "output": ["ParseError", ["Character", "\uFFFD"]]},
158
-
159
- {"description": "Invalid numeric entity character U+DFFF",
160
- "input": "�",
161
- "output": ["ParseError", ["Character", "\uFFFD"]]},
162
-
163
- {"description": "Invalid numeric entity character U+FDD0",
164
- "input": "",
165
- "output": ["ParseError", ["Character", "\ufdd0"]]},
166
-
167
- {"description": "Invalid numeric entity character U+FDD1",
168
- "input": "",
169
- "output": ["ParseError", ["Character", "\ufdd1"]]},
170
-
171
- {"description": "Invalid numeric entity character U+FDD2",
172
- "input": "",
173
- "output": ["ParseError", ["Character", "\ufdd2"]]},
174
-
175
- {"description": "Invalid numeric entity character U+FDD3",
176
- "input": "",
177
- "output": ["ParseError", ["Character", "\ufdd3"]]},
178
-
179
- {"description": "Invalid numeric entity character U+FDD4",
180
- "input": "",
181
- "output": ["ParseError", ["Character", "\ufdd4"]]},
182
-
183
- {"description": "Invalid numeric entity character U+FDD5",
184
- "input": "",
185
- "output": ["ParseError", ["Character", "\ufdd5"]]},
186
-
187
- {"description": "Invalid numeric entity character U+FDD6",
188
- "input": "",
189
- "output": ["ParseError", ["Character", "\ufdd6"]]},
190
-
191
- {"description": "Invalid numeric entity character U+FDD7",
192
- "input": "",
193
- "output": ["ParseError", ["Character", "\ufdd7"]]},
194
-
195
- {"description": "Invalid numeric entity character U+FDD8",
196
- "input": "",
197
- "output": ["ParseError", ["Character", "\ufdd8"]]},
198
-
199
- {"description": "Invalid numeric entity character U+FDD9",
200
- "input": "",
201
- "output": ["ParseError", ["Character", "\ufdd9"]]},
202
-
203
- {"description": "Invalid numeric entity character U+FDDA",
204
- "input": "",
205
- "output": ["ParseError", ["Character", "\ufdda"]]},
206
-
207
- {"description": "Invalid numeric entity character U+FDDB",
208
- "input": "",
209
- "output": ["ParseError", ["Character", "\ufddb"]]},
210
-
211
- {"description": "Invalid numeric entity character U+FDDC",
212
- "input": "",
213
- "output": ["ParseError", ["Character", "\ufddc"]]},
214
-
215
- {"description": "Invalid numeric entity character U+FDDD",
216
- "input": "",
217
- "output": ["ParseError", ["Character", "\ufddd"]]},
218
-
219
- {"description": "Invalid numeric entity character U+FDDE",
220
- "input": "",
221
- "output": ["ParseError", ["Character", "\ufdde"]]},
222
-
223
- {"description": "Invalid numeric entity character U+FDDF",
224
- "input": "",
225
- "output": ["ParseError", ["Character", "\ufddf"]]},
226
-
227
- {"description": "Invalid numeric entity character U+FDE0",
228
- "input": "",
229
- "output": ["ParseError", ["Character", "\ufde0"]]},
230
-
231
- {"description": "Invalid numeric entity character U+FDE1",
232
- "input": "",
233
- "output": ["ParseError", ["Character", "\ufde1"]]},
234
-
235
- {"description": "Invalid numeric entity character U+FDE2",
236
- "input": "",
237
- "output": ["ParseError", ["Character", "\ufde2"]]},
238
-
239
- {"description": "Invalid numeric entity character U+FDE3",
240
- "input": "",
241
- "output": ["ParseError", ["Character", "\ufde3"]]},
242
-
243
- {"description": "Invalid numeric entity character U+FDE4",
244
- "input": "",
245
- "output": ["ParseError", ["Character", "\ufde4"]]},
246
-
247
- {"description": "Invalid numeric entity character U+FDE5",
248
- "input": "",
249
- "output": ["ParseError", ["Character", "\ufde5"]]},
250
-
251
- {"description": "Invalid numeric entity character U+FDE6",
252
- "input": "",
253
- "output": ["ParseError", ["Character", "\ufde6"]]},
254
-
255
- {"description": "Invalid numeric entity character U+FDE7",
256
- "input": "",
257
- "output": ["ParseError", ["Character", "\ufde7"]]},
258
-
259
- {"description": "Invalid numeric entity character U+FDE8",
260
- "input": "",
261
- "output": ["ParseError", ["Character", "\ufde8"]]},
262
-
263
- {"description": "Invalid numeric entity character U+FDE9",
264
- "input": "",
265
- "output": ["ParseError", ["Character", "\ufde9"]]},
266
-
267
- {"description": "Invalid numeric entity character U+FDEA",
268
- "input": "",
269
- "output": ["ParseError", ["Character", "\ufdea"]]},
270
-
271
- {"description": "Invalid numeric entity character U+FDEB",
272
- "input": "",
273
- "output": ["ParseError", ["Character", "\ufdeb"]]},
274
-
275
- {"description": "Invalid numeric entity character U+FDEC",
276
- "input": "",
277
- "output": ["ParseError", ["Character", "\ufdec"]]},
278
-
279
- {"description": "Invalid numeric entity character U+FDED",
280
- "input": "",
281
- "output": ["ParseError", ["Character", "\ufded"]]},
282
-
283
- {"description": "Invalid numeric entity character U+FDEE",
284
- "input": "",
285
- "output": ["ParseError", ["Character", "\ufdee"]]},
286
-
287
- {"description": "Invalid numeric entity character U+FDEF",
288
- "input": "",
289
- "output": ["ParseError", ["Character", "\ufdef"]]},
290
-
291
- {"description": "Invalid numeric entity character U+FFFE",
292
- "input": "",
293
- "output": ["ParseError", ["Character", "\ufffe"]]},
294
-
295
- {"description": "Invalid numeric entity character U+FFFF",
296
- "input": "",
297
- "output": ["ParseError", ["Character", "\uffff"]]},
298
-
299
- {"description": "Invalid numeric entity character U+1FFFE",
300
- "input": "",
301
- "output": ["ParseError", ["Character", "\uD83F\uDFFE"]]},
302
-
303
- {"description": "Invalid numeric entity character U+1FFFF",
304
- "input": "",
305
- "output": ["ParseError", ["Character", "\uD83F\uDFFF"]]},
306
-
307
- {"description": "Invalid numeric entity character U+2FFFE",
308
- "input": "",
309
- "output": ["ParseError", ["Character", "\uD87F\uDFFE"]]},
310
-
311
- {"description": "Invalid numeric entity character U+2FFFF",
312
- "input": "",
313
- "output": ["ParseError", ["Character", "\uD87F\uDFFF"]]},
314
-
315
- {"description": "Invalid numeric entity character U+3FFFE",
316
- "input": "",
317
- "output": ["ParseError", ["Character", "\uD8BF\uDFFE"]]},
318
-
319
- {"description": "Invalid numeric entity character U+3FFFF",
320
- "input": "",
321
- "output": ["ParseError", ["Character", "\uD8BF\uDFFF"]]},
322
-
323
- {"description": "Invalid numeric entity character U+4FFFE",
324
- "input": "",
325
- "output": ["ParseError", ["Character", "\uD8FF\uDFFE"]]},
326
-
327
- {"description": "Invalid numeric entity character U+4FFFF",
328
- "input": "",
329
- "output": ["ParseError", ["Character", "\uD8FF\uDFFF"]]},
330
-
331
- {"description": "Invalid numeric entity character U+5FFFE",
332
- "input": "",
333
- "output": ["ParseError", ["Character", "\uD93F\uDFFE"]]},
334
-
335
- {"description": "Invalid numeric entity character U+5FFFF",
336
- "input": "",
337
- "output": ["ParseError", ["Character", "\uD93F\uDFFF"]]},
338
-
339
- {"description": "Invalid numeric entity character U+6FFFE",
340
- "input": "",
341
- "output": ["ParseError", ["Character", "\uD97F\uDFFE"]]},
342
-
343
- {"description": "Invalid numeric entity character U+6FFFF",
344
- "input": "",
345
- "output": ["ParseError", ["Character", "\uD97F\uDFFF"]]},
346
-
347
- {"description": "Invalid numeric entity character U+7FFFE",
348
- "input": "",
349
- "output": ["ParseError", ["Character", "\uD9BF\uDFFE"]]},
350
-
351
- {"description": "Invalid numeric entity character U+7FFFF",
352
- "input": "",
353
- "output": ["ParseError", ["Character", "\uD9BF\uDFFF"]]},
354
-
355
- {"description": "Invalid numeric entity character U+8FFFE",
356
- "input": "",
357
- "output": ["ParseError", ["Character", "\uD9FF\uDFFE"]]},
358
-
359
- {"description": "Invalid numeric entity character U+8FFFF",
360
- "input": "",
361
- "output": ["ParseError", ["Character", "\uD9FF\uDFFF"]]},
362
-
363
- {"description": "Invalid numeric entity character U+9FFFE",
364
- "input": "",
365
- "output": ["ParseError", ["Character", "\uDA3F\uDFFE"]]},
366
-
367
- {"description": "Invalid numeric entity character U+9FFFF",
368
- "input": "",
369
- "output": ["ParseError", ["Character", "\uDA3F\uDFFF"]]},
370
-
371
- {"description": "Invalid numeric entity character U+AFFFE",
372
- "input": "",
373
- "output": ["ParseError", ["Character", "\uDA7F\uDFFE"]]},
374
-
375
- {"description": "Invalid numeric entity character U+AFFFF",
376
- "input": "",
377
- "output": ["ParseError", ["Character", "\uDA7F\uDFFF"]]},
378
-
379
- {"description": "Invalid numeric entity character U+BFFFE",
380
- "input": "",
381
- "output": ["ParseError", ["Character", "\uDABF\uDFFE"]]},
382
-
383
- {"description": "Invalid numeric entity character U+BFFFF",
384
- "input": "",
385
- "output": ["ParseError", ["Character", "\uDABF\uDFFF"]]},
386
-
387
- {"description": "Invalid numeric entity character U+CFFFE",
388
- "input": "",
389
- "output": ["ParseError", ["Character", "\uDAFF\uDFFE"]]},
390
-
391
- {"description": "Invalid numeric entity character U+CFFFF",
392
- "input": "",
393
- "output": ["ParseError", ["Character", "\uDAFF\uDFFF"]]},
394
-
395
- {"description": "Invalid numeric entity character U+DFFFE",
396
- "input": "",
397
- "output": ["ParseError", ["Character", "\uDB3F\uDFFE"]]},
398
-
399
- {"description": "Invalid numeric entity character U+DFFFF",
400
- "input": "",
401
- "output": ["ParseError", ["Character", "\uDB3F\uDFFF"]]},
402
-
403
- {"description": "Invalid numeric entity character U+EFFFE",
404
- "input": "",
405
- "output": ["ParseError", ["Character", "\uDB7F\uDFFE"]]},
406
-
407
- {"description": "Invalid numeric entity character U+EFFFF",
408
- "input": "",
409
- "output": ["ParseError", ["Character", "\uDB7F\uDFFF"]]},
410
-
411
- {"description": "Invalid numeric entity character U+FFFFE",
412
- "input": "",
413
- "output": ["ParseError", ["Character", "\uDBBF\uDFFE"]]},
414
-
415
- {"description": "Invalid numeric entity character U+FFFFF",
416
- "input": "",
417
- "output": ["ParseError", ["Character", "\uDBBF\uDFFF"]]},
418
-
419
- {"description": "Invalid numeric entity character U+10FFFE",
420
- "input": "",
421
- "output": ["ParseError", ["Character", "\uDBFF\uDFFE"]]},
422
-
423
- {"description": "Invalid numeric entity character U+10FFFF",
424
- "input": "",
425
- "output": ["ParseError", ["Character", "\uDBFF\uDFFF"]]},
426
-
427
- {"description": "Valid numeric entity character U+0009",
428
- "input": "	",
429
- "output": [["Character", "\u0009"]]},
430
-
431
- {"description": "Valid numeric entity character U+000A",
432
- "input": "
",
433
- "output": [["Character", "\u000A"]]},
434
-
435
- {"description": "Valid numeric entity character U+0020",
436
- "input": " ",
437
- "output": [["Character", "\u0020"]]},
438
-
439
- {"description": "Valid numeric entity character U+0021",
440
- "input": "!",
441
- "output": [["Character", "\u0021"]]},
442
-
443
- {"description": "Valid numeric entity character U+0022",
444
- "input": """,
445
- "output": [["Character", "\u0022"]]},
446
-
447
- {"description": "Valid numeric entity character U+0023",
448
- "input": "#",
449
- "output": [["Character", "\u0023"]]},
450
-
451
- {"description": "Valid numeric entity character U+0024",
452
- "input": "$",
453
- "output": [["Character", "\u0024"]]},
454
-
455
- {"description": "Valid numeric entity character U+0025",
456
- "input": "%",
457
- "output": [["Character", "\u0025"]]},
458
-
459
- {"description": "Valid numeric entity character U+0026",
460
- "input": "&",
461
- "output": [["Character", "\u0026"]]},
462
-
463
- {"description": "Valid numeric entity character U+0027",
464
- "input": "'",
465
- "output": [["Character", "\u0027"]]},
466
-
467
- {"description": "Valid numeric entity character U+0028",
468
- "input": "(",
469
- "output": [["Character", "\u0028"]]},
470
-
471
- {"description": "Valid numeric entity character U+0029",
472
- "input": ")",
473
- "output": [["Character", "\u0029"]]},
474
-
475
- {"description": "Valid numeric entity character U+002A",
476
- "input": "*",
477
- "output": [["Character", "\u002A"]]},
478
-
479
- {"description": "Valid numeric entity character U+002B",
480
- "input": "+",
481
- "output": [["Character", "\u002B"]]},
482
-
483
- {"description": "Valid numeric entity character U+002C",
484
- "input": ",",
485
- "output": [["Character", "\u002C"]]},
486
-
487
- {"description": "Valid numeric entity character U+002D",
488
- "input": "-",
489
- "output": [["Character", "\u002D"]]},
490
-
491
- {"description": "Valid numeric entity character U+002E",
492
- "input": ".",
493
- "output": [["Character", "\u002E"]]},
494
-
495
- {"description": "Valid numeric entity character U+002F",
496
- "input": "/",
497
- "output": [["Character", "\u002F"]]},
498
-
499
- {"description": "Valid numeric entity character U+0030",
500
- "input": "0",
501
- "output": [["Character", "\u0030"]]},
502
-
503
- {"description": "Valid numeric entity character U+0031",
504
- "input": "1",
505
- "output": [["Character", "\u0031"]]},
506
-
507
- {"description": "Valid numeric entity character U+0032",
508
- "input": "2",
509
- "output": [["Character", "\u0032"]]},
510
-
511
- {"description": "Valid numeric entity character U+0033",
512
- "input": "3",
513
- "output": [["Character", "\u0033"]]},
514
-
515
- {"description": "Valid numeric entity character U+0034",
516
- "input": "4",
517
- "output": [["Character", "\u0034"]]},
518
-
519
- {"description": "Valid numeric entity character U+0035",
520
- "input": "5",
521
- "output": [["Character", "\u0035"]]},
522
-
523
- {"description": "Valid numeric entity character U+0036",
524
- "input": "6",
525
- "output": [["Character", "\u0036"]]},
526
-
527
- {"description": "Valid numeric entity character U+0037",
528
- "input": "7",
529
- "output": [["Character", "\u0037"]]},
530
-
531
- {"description": "Valid numeric entity character U+0038",
532
- "input": "8",
533
- "output": [["Character", "\u0038"]]},
534
-
535
- {"description": "Valid numeric entity character U+0039",
536
- "input": "9",
537
- "output": [["Character", "\u0039"]]},
538
-
539
- {"description": "Valid numeric entity character U+003A",
540
- "input": ":",
541
- "output": [["Character", "\u003A"]]},
542
-
543
- {"description": "Valid numeric entity character U+003B",
544
- "input": "&#x003b;",
545
- "output": [["Character", "\u003B"]]},
546
-
547
- {"description": "Valid numeric entity character U+003C",
548
- "input": "<",
549
- "output": [["Character", "\u003C"]]},
550
-
551
- {"description": "Valid numeric entity character U+003D",
552
- "input": "=",
553
- "output": [["Character", "\u003D"]]},
554
-
555
- {"description": "Valid numeric entity character U+003E",
556
- "input": ">",
557
- "output": [["Character", "\u003E"]]},
558
-
559
- {"description": "Valid numeric entity character U+003F",
560
- "input": "?",
561
- "output": [["Character", "\u003F"]]},
562
-
563
- {"description": "Valid numeric entity character U+0040",
564
- "input": "@",
565
- "output": [["Character", "\u0040"]]},
566
-
567
- {"description": "Valid numeric entity character U+0041",
568
- "input": "A",
569
- "output": [["Character", "\u0041"]]},
570
-
571
- {"description": "Valid numeric entity character U+0042",
572
- "input": "B",
573
- "output": [["Character", "\u0042"]]},
574
-
575
- {"description": "Valid numeric entity character U+0043",
576
- "input": "C",
577
- "output": [["Character", "\u0043"]]},
578
-
579
- {"description": "Valid numeric entity character U+0044",
580
- "input": "D",
581
- "output": [["Character", "\u0044"]]},
582
-
583
- {"description": "Valid numeric entity character U+0045",
584
- "input": "E",
585
- "output": [["Character", "\u0045"]]},
586
-
587
- {"description": "Valid numeric entity character U+0046",
588
- "input": "F",
589
- "output": [["Character", "\u0046"]]},
590
-
591
- {"description": "Valid numeric entity character U+0047",
592
- "input": "G",
593
- "output": [["Character", "\u0047"]]},
594
-
595
- {"description": "Valid numeric entity character U+0048",
596
- "input": "H",
597
- "output": [["Character", "\u0048"]]},
598
-
599
- {"description": "Valid numeric entity character U+0049",
600
- "input": "I",
601
- "output": [["Character", "\u0049"]]},
602
-
603
- {"description": "Valid numeric entity character U+004A",
604
- "input": "J",
605
- "output": [["Character", "\u004A"]]},
606
-
607
- {"description": "Valid numeric entity character U+004B",
608
- "input": "K",
609
- "output": [["Character", "\u004B"]]},
610
-
611
- {"description": "Valid numeric entity character U+004C",
612
- "input": "L",
613
- "output": [["Character", "\u004C"]]},
614
-
615
- {"description": "Valid numeric entity character U+004D",
616
- "input": "M",
617
- "output": [["Character", "\u004D"]]},
618
-
619
- {"description": "Valid numeric entity character U+004E",
620
- "input": "N",
621
- "output": [["Character", "\u004E"]]},
622
-
623
- {"description": "Valid numeric entity character U+004F",
624
- "input": "O",
625
- "output": [["Character", "\u004F"]]},
626
-
627
- {"description": "Valid numeric entity character U+0050",
628
- "input": "P",
629
- "output": [["Character", "\u0050"]]},
630
-
631
- {"description": "Valid numeric entity character U+0051",
632
- "input": "Q",
633
- "output": [["Character", "\u0051"]]},
634
-
635
- {"description": "Valid numeric entity character U+0052",
636
- "input": "R",
637
- "output": [["Character", "\u0052"]]},
638
-
639
- {"description": "Valid numeric entity character U+0053",
640
- "input": "S",
641
- "output": [["Character", "\u0053"]]},
642
-
643
- {"description": "Valid numeric entity character U+0054",
644
- "input": "T",
645
- "output": [["Character", "\u0054"]]},
646
-
647
- {"description": "Valid numeric entity character U+0055",
648
- "input": "U",
649
- "output": [["Character", "\u0055"]]},
650
-
651
- {"description": "Valid numeric entity character U+0056",
652
- "input": "V",
653
- "output": [["Character", "\u0056"]]},
654
-
655
- {"description": "Valid numeric entity character U+0057",
656
- "input": "W",
657
- "output": [["Character", "\u0057"]]},
658
-
659
- {"description": "Valid numeric entity character U+0058",
660
- "input": "X",
661
- "output": [["Character", "\u0058"]]},
662
-
663
- {"description": "Valid numeric entity character U+0059",
664
- "input": "Y",
665
- "output": [["Character", "\u0059"]]},
666
-
667
- {"description": "Valid numeric entity character U+005A",
668
- "input": "Z",
669
- "output": [["Character", "\u005A"]]},
670
-
671
- {"description": "Valid numeric entity character U+005B",
672
- "input": "[",
673
- "output": [["Character", "\u005B"]]},
674
-
675
- {"description": "Valid numeric entity character U+005C",
676
- "input": "\",
677
- "output": [["Character", "\u005C"]]},
678
-
679
- {"description": "Valid numeric entity character U+005D",
680
- "input": "]",
681
- "output": [["Character", "\u005D"]]},
682
-
683
- {"description": "Valid numeric entity character U+005E",
684
- "input": "^",
685
- "output": [["Character", "\u005E"]]},
686
-
687
- {"description": "Valid numeric entity character U+005F",
688
- "input": "_",
689
- "output": [["Character", "\u005F"]]},
690
-
691
- {"description": "Valid numeric entity character U+0060",
692
- "input": "`",
693
- "output": [["Character", "\u0060"]]},
694
-
695
- {"description": "Valid numeric entity character U+0061",
696
- "input": "a",
697
- "output": [["Character", "\u0061"]]},
698
-
699
- {"description": "Valid numeric entity character U+0062",
700
- "input": "b",
701
- "output": [["Character", "\u0062"]]},
702
-
703
- {"description": "Valid numeric entity character U+0063",
704
- "input": "c",
705
- "output": [["Character", "\u0063"]]},
706
-
707
- {"description": "Valid numeric entity character U+0064",
708
- "input": "d",
709
- "output": [["Character", "\u0064"]]},
710
-
711
- {"description": "Valid numeric entity character U+0065",
712
- "input": "e",
713
- "output": [["Character", "\u0065"]]},
714
-
715
- {"description": "Valid numeric entity character U+0066",
716
- "input": "f",
717
- "output": [["Character", "\u0066"]]},
718
-
719
- {"description": "Valid numeric entity character U+0067",
720
- "input": "g",
721
- "output": [["Character", "\u0067"]]},
722
-
723
- {"description": "Valid numeric entity character U+0068",
724
- "input": "h",
725
- "output": [["Character", "\u0068"]]},
726
-
727
- {"description": "Valid numeric entity character U+0069",
728
- "input": "i",
729
- "output": [["Character", "\u0069"]]},
730
-
731
- {"description": "Valid numeric entity character U+006A",
732
- "input": "j",
733
- "output": [["Character", "\u006A"]]},
734
-
735
- {"description": "Valid numeric entity character U+006B",
736
- "input": "k",
737
- "output": [["Character", "\u006B"]]},
738
-
739
- {"description": "Valid numeric entity character U+006C",
740
- "input": "l",
741
- "output": [["Character", "\u006C"]]},
742
-
743
- {"description": "Valid numeric entity character U+006D",
744
- "input": "m",
745
- "output": [["Character", "\u006D"]]},
746
-
747
- {"description": "Valid numeric entity character U+006E",
748
- "input": "n",
749
- "output": [["Character", "\u006E"]]},
750
-
751
- {"description": "Valid numeric entity character U+006F",
752
- "input": "o",
753
- "output": [["Character", "\u006F"]]},
754
-
755
- {"description": "Valid numeric entity character U+0070",
756
- "input": "p",
757
- "output": [["Character", "\u0070"]]},
758
-
759
- {"description": "Valid numeric entity character U+0071",
760
- "input": "q",
761
- "output": [["Character", "\u0071"]]},
762
-
763
- {"description": "Valid numeric entity character U+0072",
764
- "input": "r",
765
- "output": [["Character", "\u0072"]]},
766
-
767
- {"description": "Valid numeric entity character U+0073",
768
- "input": "s",
769
- "output": [["Character", "\u0073"]]},
770
-
771
- {"description": "Valid numeric entity character U+0074",
772
- "input": "t",
773
- "output": [["Character", "\u0074"]]},
774
-
775
- {"description": "Valid numeric entity character U+0075",
776
- "input": "u",
777
- "output": [["Character", "\u0075"]]},
778
-
779
- {"description": "Valid numeric entity character U+0076",
780
- "input": "v",
781
- "output": [["Character", "\u0076"]]},
782
-
783
- {"description": "Valid numeric entity character U+0077",
784
- "input": "w",
785
- "output": [["Character", "\u0077"]]},
786
-
787
- {"description": "Valid numeric entity character U+0078",
788
- "input": "x",
789
- "output": [["Character", "\u0078"]]},
790
-
791
- {"description": "Valid numeric entity character U+0079",
792
- "input": "y",
793
- "output": [["Character", "\u0079"]]},
794
-
795
- {"description": "Valid numeric entity character U+007A",
796
- "input": "z",
797
- "output": [["Character", "\u007A"]]},
798
-
799
- {"description": "Valid numeric entity character U+007B",
800
- "input": "{",
801
- "output": [["Character", "\u007B"]]},
802
-
803
- {"description": "Valid numeric entity character U+007C",
804
- "input": "|",
805
- "output": [["Character", "\u007C"]]},
806
-
807
- {"description": "Valid numeric entity character U+007D",
808
- "input": "}",
809
- "output": [["Character", "\u007D"]]},
810
-
811
- {"description": "Valid numeric entity character U+007E",
812
- "input": "~",
813
- "output": [["Character", "\u007E"]]},
814
-
815
- {"description": "Valid numeric entity character U+00A0",
816
- "input": " ",
817
- "output": [["Character", "\u00A0"]]},
818
-
819
- {"description": "Valid numeric entity character U+00A1",
820
- "input": "¡",
821
- "output": [["Character", "\u00A1"]]},
822
-
823
- {"description": "Valid numeric entity character U+00A2",
824
- "input": "¢",
825
- "output": [["Character", "\u00A2"]]},
826
-
827
- {"description": "Valid numeric entity character U+00A3",
828
- "input": "£",
829
- "output": [["Character", "\u00A3"]]},
830
-
831
- {"description": "Valid numeric entity character U+00A4",
832
- "input": "¤",
833
- "output": [["Character", "\u00A4"]]},
834
-
835
- {"description": "Valid numeric entity character U+00A5",
836
- "input": "¥",
837
- "output": [["Character", "\u00A5"]]},
838
-
839
- {"description": "Valid numeric entity character U+00A6",
840
- "input": "¦",
841
- "output": [["Character", "\u00A6"]]},
842
-
843
- {"description": "Valid numeric entity character U+00A7",
844
- "input": "§",
845
- "output": [["Character", "\u00A7"]]},
846
-
847
- {"description": "Valid numeric entity character U+00A8",
848
- "input": "¨",
849
- "output": [["Character", "\u00A8"]]},
850
-
851
- {"description": "Valid numeric entity character U+00A9",
852
- "input": "©",
853
- "output": [["Character", "\u00A9"]]},
854
-
855
- {"description": "Valid numeric entity character U+00AA",
856
- "input": "ª",
857
- "output": [["Character", "\u00AA"]]},
858
-
859
- {"description": "Valid numeric entity character U+00AB",
860
- "input": "«",
861
- "output": [["Character", "\u00AB"]]},
862
-
863
- {"description": "Valid numeric entity character U+00AC",
864
- "input": "¬",
865
- "output": [["Character", "\u00AC"]]},
866
-
867
- {"description": "Valid numeric entity character U+00AD",
868
- "input": "­",
869
- "output": [["Character", "\u00AD"]]},
870
-
871
- {"description": "Valid numeric entity character U+00AE",
872
- "input": "®",
873
- "output": [["Character", "\u00AE"]]},
874
-
875
- {"description": "Valid numeric entity character U+00AF",
876
- "input": "¯",
877
- "output": [["Character", "\u00AF"]]},
878
-
879
- {"description": "Valid numeric entity character U+00B0",
880
- "input": "°",
881
- "output": [["Character", "\u00B0"]]},
882
-
883
- {"description": "Valid numeric entity character U+00B1",
884
- "input": "±",
885
- "output": [["Character", "\u00B1"]]},
886
-
887
- {"description": "Valid numeric entity character U+00B2",
888
- "input": "²",
889
- "output": [["Character", "\u00B2"]]},
890
-
891
- {"description": "Valid numeric entity character U+00B3",
892
- "input": "³",
893
- "output": [["Character", "\u00B3"]]},
894
-
895
- {"description": "Valid numeric entity character U+00B4",
896
- "input": "´",
897
- "output": [["Character", "\u00B4"]]},
898
-
899
- {"description": "Valid numeric entity character U+00B5",
900
- "input": "µ",
901
- "output": [["Character", "\u00B5"]]},
902
-
903
- {"description": "Valid numeric entity character U+00B6",
904
- "input": "¶",
905
- "output": [["Character", "\u00B6"]]},
906
-
907
- {"description": "Valid numeric entity character U+00B7",
908
- "input": "·",
909
- "output": [["Character", "\u00B7"]]},
910
-
911
- {"description": "Valid numeric entity character U+00B8",
912
- "input": "¸",
913
- "output": [["Character", "\u00B8"]]},
914
-
915
- {"description": "Valid numeric entity character U+00B9",
916
- "input": "¹",
917
- "output": [["Character", "\u00B9"]]},
918
-
919
- {"description": "Valid numeric entity character U+00BA",
920
- "input": "º",
921
- "output": [["Character", "\u00BA"]]},
922
-
923
- {"description": "Valid numeric entity character U+00BB",
924
- "input": "»",
925
- "output": [["Character", "\u00BB"]]},
926
-
927
- {"description": "Valid numeric entity character U+00BC",
928
- "input": "¼",
929
- "output": [["Character", "\u00BC"]]},
930
-
931
- {"description": "Valid numeric entity character U+00BD",
932
- "input": "½",
933
- "output": [["Character", "\u00BD"]]},
934
-
935
- {"description": "Valid numeric entity character U+00BE",
936
- "input": "¾",
937
- "output": [["Character", "\u00BE"]]},
938
-
939
- {"description": "Valid numeric entity character U+00BF",
940
- "input": "¿",
941
- "output": [["Character", "\u00BF"]]},
942
-
943
- {"description": "Valid numeric entity character U+00C0",
944
- "input": "À",
945
- "output": [["Character", "\u00C0"]]},
946
-
947
- {"description": "Valid numeric entity character U+00C1",
948
- "input": "Á",
949
- "output": [["Character", "\u00C1"]]},
950
-
951
- {"description": "Valid numeric entity character U+00C2",
952
- "input": "Â",
953
- "output": [["Character", "\u00C2"]]},
954
-
955
- {"description": "Valid numeric entity character U+00C3",
956
- "input": "Ã",
957
- "output": [["Character", "\u00C3"]]},
958
-
959
- {"description": "Valid numeric entity character U+00C4",
960
- "input": "Ä",
961
- "output": [["Character", "\u00C4"]]},
962
-
963
- {"description": "Valid numeric entity character U+00C5",
964
- "input": "Å",
965
- "output": [["Character", "\u00C5"]]},
966
-
967
- {"description": "Valid numeric entity character U+00C6",
968
- "input": "Æ",
969
- "output": [["Character", "\u00C6"]]},
970
-
971
- {"description": "Valid numeric entity character U+00C7",
972
- "input": "Ç",
973
- "output": [["Character", "\u00C7"]]},
974
-
975
- {"description": "Valid numeric entity character U+00C8",
976
- "input": "È",
977
- "output": [["Character", "\u00C8"]]},
978
-
979
- {"description": "Valid numeric entity character U+00C9",
980
- "input": "É",
981
- "output": [["Character", "\u00C9"]]},
982
-
983
- {"description": "Valid numeric entity character U+00CA",
984
- "input": "Ê",
985
- "output": [["Character", "\u00CA"]]},
986
-
987
- {"description": "Valid numeric entity character U+00CB",
988
- "input": "Ë",
989
- "output": [["Character", "\u00CB"]]},
990
-
991
- {"description": "Valid numeric entity character U+00CC",
992
- "input": "Ì",
993
- "output": [["Character", "\u00CC"]]},
994
-
995
- {"description": "Valid numeric entity character U+00CD",
996
- "input": "Í",
997
- "output": [["Character", "\u00CD"]]},
998
-
999
- {"description": "Valid numeric entity character U+00CE",
1000
- "input": "Î",
1001
- "output": [["Character", "\u00CE"]]},
1002
-
1003
- {"description": "Valid numeric entity character U+00CF",
1004
- "input": "Ï",
1005
- "output": [["Character", "\u00CF"]]},
1006
-
1007
- {"description": "Valid numeric entity character U+00D0",
1008
- "input": "Ð",
1009
- "output": [["Character", "\u00D0"]]},
1010
-
1011
- {"description": "Valid numeric entity character U+00D1",
1012
- "input": "Ñ",
1013
- "output": [["Character", "\u00D1"]]},
1014
-
1015
- {"description": "Valid numeric entity character U+00D2",
1016
- "input": "Ò",
1017
- "output": [["Character", "\u00D2"]]},
1018
-
1019
- {"description": "Valid numeric entity character U+00D3",
1020
- "input": "Ó",
1021
- "output": [["Character", "\u00D3"]]},
1022
-
1023
- {"description": "Valid numeric entity character U+00D4",
1024
- "input": "Ô",
1025
- "output": [["Character", "\u00D4"]]},
1026
-
1027
- {"description": "Valid numeric entity character U+00D5",
1028
- "input": "Õ",
1029
- "output": [["Character", "\u00D5"]]},
1030
-
1031
- {"description": "Valid numeric entity character U+00D6",
1032
- "input": "Ö",
1033
- "output": [["Character", "\u00D6"]]},
1034
-
1035
- {"description": "Valid numeric entity character U+00D7",
1036
- "input": "×",
1037
- "output": [["Character", "\u00D7"]]},
1038
-
1039
- {"description": "Valid numeric entity character U+00D8",
1040
- "input": "Ø",
1041
- "output": [["Character", "\u00D8"]]},
1042
-
1043
- {"description": "Valid numeric entity character U+00D9",
1044
- "input": "Ù",
1045
- "output": [["Character", "\u00D9"]]},
1046
-
1047
- {"description": "Valid numeric entity character U+00DA",
1048
- "input": "Ú",
1049
- "output": [["Character", "\u00DA"]]},
1050
-
1051
- {"description": "Valid numeric entity character U+00DB",
1052
- "input": "Û",
1053
- "output": [["Character", "\u00DB"]]},
1054
-
1055
- {"description": "Valid numeric entity character U+00DC",
1056
- "input": "Ü",
1057
- "output": [["Character", "\u00DC"]]},
1058
-
1059
- {"description": "Valid numeric entity character U+00DD",
1060
- "input": "Ý",
1061
- "output": [["Character", "\u00DD"]]},
1062
-
1063
- {"description": "Valid numeric entity character U+00DE",
1064
- "input": "Þ",
1065
- "output": [["Character", "\u00DE"]]},
1066
-
1067
- {"description": "Valid numeric entity character U+00DF",
1068
- "input": "ß",
1069
- "output": [["Character", "\u00DF"]]},
1070
-
1071
- {"description": "Valid numeric entity character U+00E0",
1072
- "input": "à",
1073
- "output": [["Character", "\u00E0"]]},
1074
-
1075
- {"description": "Valid numeric entity character U+00E1",
1076
- "input": "á",
1077
- "output": [["Character", "\u00E1"]]},
1078
-
1079
- {"description": "Valid numeric entity character U+00E2",
1080
- "input": "â",
1081
- "output": [["Character", "\u00E2"]]},
1082
-
1083
- {"description": "Valid numeric entity character U+00E3",
1084
- "input": "ã",
1085
- "output": [["Character", "\u00E3"]]},
1086
-
1087
- {"description": "Valid numeric entity character U+00E4",
1088
- "input": "ä",
1089
- "output": [["Character", "\u00E4"]]},
1090
-
1091
- {"description": "Valid numeric entity character U+00E5",
1092
- "input": "å",
1093
- "output": [["Character", "\u00E5"]]},
1094
-
1095
- {"description": "Valid numeric entity character U+00E6",
1096
- "input": "æ",
1097
- "output": [["Character", "\u00E6"]]},
1098
-
1099
- {"description": "Valid numeric entity character U+00E7",
1100
- "input": "ç",
1101
- "output": [["Character", "\u00E7"]]},
1102
-
1103
- {"description": "Valid numeric entity character U+00E8",
1104
- "input": "è",
1105
- "output": [["Character", "\u00E8"]]},
1106
-
1107
- {"description": "Valid numeric entity character U+00E9",
1108
- "input": "é",
1109
- "output": [["Character", "\u00E9"]]},
1110
-
1111
- {"description": "Valid numeric entity character U+00EA",
1112
- "input": "ê",
1113
- "output": [["Character", "\u00EA"]]},
1114
-
1115
- {"description": "Valid numeric entity character U+00EB",
1116
- "input": "ë",
1117
- "output": [["Character", "\u00EB"]]},
1118
-
1119
- {"description": "Valid numeric entity character U+00EC",
1120
- "input": "ì",
1121
- "output": [["Character", "\u00EC"]]},
1122
-
1123
- {"description": "Valid numeric entity character U+00ED",
1124
- "input": "í",
1125
- "output": [["Character", "\u00ED"]]},
1126
-
1127
- {"description": "Valid numeric entity character U+00EE",
1128
- "input": "î",
1129
- "output": [["Character", "\u00EE"]]},
1130
-
1131
- {"description": "Valid numeric entity character U+00EF",
1132
- "input": "ï",
1133
- "output": [["Character", "\u00EF"]]},
1134
-
1135
- {"description": "Valid numeric entity character U+00F0",
1136
- "input": "ð",
1137
- "output": [["Character", "\u00F0"]]},
1138
-
1139
- {"description": "Valid numeric entity character U+00F1",
1140
- "input": "ñ",
1141
- "output": [["Character", "\u00F1"]]},
1142
-
1143
- {"description": "Valid numeric entity character U+00F2",
1144
- "input": "ò",
1145
- "output": [["Character", "\u00F2"]]},
1146
-
1147
- {"description": "Valid numeric entity character U+00F3",
1148
- "input": "ó",
1149
- "output": [["Character", "\u00F3"]]},
1150
-
1151
- {"description": "Valid numeric entity character U+00F4",
1152
- "input": "ô",
1153
- "output": [["Character", "\u00F4"]]},
1154
-
1155
- {"description": "Valid numeric entity character U+00F5",
1156
- "input": "õ",
1157
- "output": [["Character", "\u00F5"]]},
1158
-
1159
- {"description": "Valid numeric entity character U+00F6",
1160
- "input": "ö",
1161
- "output": [["Character", "\u00F6"]]},
1162
-
1163
- {"description": "Valid numeric entity character U+00F7",
1164
- "input": "÷",
1165
- "output": [["Character", "\u00F7"]]},
1166
-
1167
- {"description": "Valid numeric entity character U+00F8",
1168
- "input": "ø",
1169
- "output": [["Character", "\u00F8"]]},
1170
-
1171
- {"description": "Valid numeric entity character U+00F9",
1172
- "input": "ù",
1173
- "output": [["Character", "\u00F9"]]},
1174
-
1175
- {"description": "Valid numeric entity character U+00FA",
1176
- "input": "ú",
1177
- "output": [["Character", "\u00FA"]]},
1178
-
1179
- {"description": "Valid numeric entity character U+00FB",
1180
- "input": "û",
1181
- "output": [["Character", "\u00FB"]]},
1182
-
1183
- {"description": "Valid numeric entity character U+00FC",
1184
- "input": "ü",
1185
- "output": [["Character", "\u00FC"]]},
1186
-
1187
- {"description": "Valid numeric entity character U+00FD",
1188
- "input": "ý",
1189
- "output": [["Character", "\u00FD"]]},
1190
-
1191
- {"description": "Valid numeric entity character U+00FE",
1192
- "input": "þ",
1193
- "output": [["Character", "\u00FE"]]},
1194
-
1195
- {"description": "Valid numeric entity character U+00FF",
1196
- "input": "ÿ",
1197
- "output": [["Character", "\u00FF"]]},
1198
-
1199
- {"description": "Valid numeric entity character U+D7FF",
1200
- "input": "퟿",
1201
- "output": [["Character", "\uD7FF"]]},
1202
-
1203
- {"description": "Valid numeric entity character U+E000",
1204
- "input": "",
1205
- "output": [["Character", "\uE000"]]},
1206
-
1207
- {"description": "Valid numeric entity character U+FDCF",
1208
- "input": "﷏",
1209
- "output": [["Character", "\uFDCF"]]},
1210
-
1211
- {"description": "Valid numeric entity character U+FDF0",
1212
- "input": "ﷰ",
1213
- "output": [["Character", "\uFDF0"]]},
1214
-
1215
- {"description": "Valid numeric entity character U+FFFD",
1216
- "input": "�",
1217
- "output": [["Character", "\uFFFD"]]},
1218
-
1219
- {"description": "Valid numeric entity character U+10000",
1220
- "input": "𐀀",
1221
- "output": [["Character", "\uD800\uDC00"]]},
1222
-
1223
- {"description": "Valid numeric entity character U+1FFFD",
1224
- "input": "🿽",
1225
- "output": [["Character", "\uD83F\uDFFD"]]},
1226
-
1227
- {"description": "Valid numeric entity character U+20000",
1228
- "input": "𠀀",
1229
- "output": [["Character", "\uD840\uDC00"]]},
1230
-
1231
- {"description": "Valid numeric entity character U+2FFFD",
1232
- "input": "𯿽",
1233
- "output": [["Character", "\uD87F\uDFFD"]]},
1234
-
1235
- {"description": "Valid numeric entity character U+30000",
1236
- "input": "𰀀",
1237
- "output": [["Character", "\uD880\uDC00"]]},
1238
-
1239
- {"description": "Valid numeric entity character U+3FFFD",
1240
- "input": "𿿽",
1241
- "output": [["Character", "\uD8BF\uDFFD"]]},
1242
-
1243
- {"description": "Valid numeric entity character U+40000",
1244
- "input": "񀀀",
1245
- "output": [["Character", "\uD8C0\uDC00"]]},
1246
-
1247
- {"description": "Valid numeric entity character U+4FFFD",
1248
- "input": "񏿽",
1249
- "output": [["Character", "\uD8FF\uDFFD"]]},
1250
-
1251
- {"description": "Valid numeric entity character U+50000",
1252
- "input": "񐀀",
1253
- "output": [["Character", "\uD900\uDC00"]]},
1254
-
1255
- {"description": "Valid numeric entity character U+5FFFD",
1256
- "input": "񟿽",
1257
- "output": [["Character", "\uD93F\uDFFD"]]},
1258
-
1259
- {"description": "Valid numeric entity character U+60000",
1260
- "input": "񠀀",
1261
- "output": [["Character", "\uD940\uDC00"]]},
1262
-
1263
- {"description": "Valid numeric entity character U+6FFFD",
1264
- "input": "񯿽",
1265
- "output": [["Character", "\uD97F\uDFFD"]]},
1266
-
1267
- {"description": "Valid numeric entity character U+70000",
1268
- "input": "񰀀",
1269
- "output": [["Character", "\uD980\uDC00"]]},
1270
-
1271
- {"description": "Valid numeric entity character U+7FFFD",
1272
- "input": "񿿽",
1273
- "output": [["Character", "\uD9BF\uDFFD"]]},
1274
-
1275
- {"description": "Valid numeric entity character U+80000",
1276
- "input": "򀀀",
1277
- "output": [["Character", "\uD9C0\uDC00"]]},
1278
-
1279
- {"description": "Valid numeric entity character U+8FFFD",
1280
- "input": "򏿽",
1281
- "output": [["Character", "\uD9FF\uDFFD"]]},
1282
-
1283
- {"description": "Valid numeric entity character U+90000",
1284
- "input": "򐀀",
1285
- "output": [["Character", "\uDA00\uDC00"]]},
1286
-
1287
- {"description": "Valid numeric entity character U+9FFFD",
1288
- "input": "򟿽",
1289
- "output": [["Character", "\uDA3F\uDFFD"]]},
1290
-
1291
- {"description": "Valid numeric entity character U+A0000",
1292
- "input": "򠀀",
1293
- "output": [["Character", "\uDA40\uDC00"]]},
1294
-
1295
- {"description": "Valid numeric entity character U+AFFFD",
1296
- "input": "򯿽",
1297
- "output": [["Character", "\uDA7F\uDFFD"]]},
1298
-
1299
- {"description": "Valid numeric entity character U+B0000",
1300
- "input": "򰀀",
1301
- "output": [["Character", "\uDA80\uDC00"]]},
1302
-
1303
- {"description": "Valid numeric entity character U+BFFFD",
1304
- "input": "򿿽",
1305
- "output": [["Character", "\uDABF\uDFFD"]]},
1306
-
1307
- {"description": "Valid numeric entity character U+C0000",
1308
- "input": "󀀀",
1309
- "output": [["Character", "\uDAC0\uDC00"]]},
1310
-
1311
- {"description": "Valid numeric entity character U+CFFFD",
1312
- "input": "󏿽",
1313
- "output": [["Character", "\uDAFF\uDFFD"]]},
1314
-
1315
- {"description": "Valid numeric entity character U+D0000",
1316
- "input": "󐀀",
1317
- "output": [["Character", "\uDB00\uDC00"]]},
1318
-
1319
- {"description": "Valid numeric entity character U+DFFFD",
1320
- "input": "󟿽",
1321
- "output": [["Character", "\uDB3F\uDFFD"]]},
1322
-
1323
- {"description": "Valid numeric entity character U+E0000",
1324
- "input": "󠀀",
1325
- "output": [["Character", "\uDB40\uDC00"]]},
1326
-
1327
- {"description": "Valid numeric entity character U+EFFFD",
1328
- "input": "󯿽",
1329
- "output": [["Character", "\uDB7F\uDFFD"]]},
1330
-
1331
- {"description": "Valid numeric entity character U+F0000",
1332
- "input": "󰀀",
1333
- "output": [["Character", "\uDB80\uDC00"]]},
1334
-
1335
- {"description": "Valid numeric entity character U+FFFFD",
1336
- "input": "󿿽",
1337
- "output": [["Character", "\uDBBF\uDFFD"]]},
1338
-
1339
- {"description": "Valid numeric entity character U+100000",
1340
- "input": "􀀀",
1341
- "output": [["Character", "\uDBC0\uDC00"]]},
1342
-
1343
- {"description": "Valid numeric entity character U+10FFFD",
1344
- "input": "􏿽",
1345
- "output": [["Character", "\uDBFF\uDFFD"]]}
1346
-
1347
- ]}
1348
-
1349
-