...
1{
2 "backslash": {
3 "type": "string",
4 "value": "This string has a \\\\ backslash character."
5 },
6 "backspace": {
7 "type": "string",
8 "value": "This string has a \\b backspace character."
9 },
10 "carriage": {
11 "type": "string",
12 "value": "This string has a \\r carriage return character."
13 },
14 "formfeed": {
15 "type": "string",
16 "value": "This string has a \\f form feed character."
17 },
18 "newline": {
19 "type": "string",
20 "value": "This string has a \\n new line character."
21 },
22 "slash": {
23 "type": "string",
24 "value": "This string has a \\/ slash character."
25 },
26 "tab": {
27 "type": "string",
28 "value": "This string has a \\t tab character."
29 },
30 "unescaped_tab": {
31 "type": "string",
32 "value": "This string has an \t unescaped tab character."
33 }
34}
View as plain text