diff --git a/article/parsing_json.md b/article/parsing_json.md
index b3974ae..d7d569b 100644
--- a/article/parsing_json.md
+++ b/article/parsing_json.md
@@ -339,7 +339,7 @@ Tests with implementation defined will include a plain UTF-8 BOM with no other c
n_string_escape_x.json |
- ["x00"] |
+ ["\x00"] |
@@ -348,11 +348,11 @@ Tests with implementation defined will include a plain UTF-8 BOM with no other c
y_string_allowed_escapes.json |
- [""\/bfnrt"] |
+ ["\"\/\b\f\n\r\t"] |
n_structure_bad_escape.json |
- [" |
+ [\" |
@@ -365,11 +365,11 @@ The escape character can be used to represent codepoints in the Basic Multilingu
n_string_invalid_unicode_escape.json |
- ["uqqqq"] |
+ ["\uqqqq"] |
n_string_incomplete_escaped_character.json |
- ["u00A"] |
+ ["\u00A"] |
@@ -386,27 +386,27 @@ The editors considered that the grammar should not be restricted, and that warni
y_string_accepted_surrogate_pair.json |
- ["uD801udc37"] |
+ ["\uD801\udc37"] |
n_string_incomplete_escaped_character.json |
- ["u00A"] |
+ ["\u00A"] |
i_string_incomplete_surrogates_escape_valid.json |
- ["uD800uD800n"] |
+ ["\uD800\uD800n"] |
i_string_lone_second_surrogate.json |
- ["uDFAA"] |
+ ["\uDFAA"] |
i_string_1st_valid_surrogate_2nd_invalid.json |
- ["uD888u1234"] |
+ ["\uD888\u1234"] |
i_string_inverted_surrogates_U+1D11E.json |
- ["uDd1euD834"] |
+ ["\uDd1e\uD834"] |