...

Text file src/github.com/BurntSushi/toml/internal/toml-test/tests/valid/string/hex-escape.json

Documentation: github.com/BurntSushi/toml/internal/toml-test/tests/valid/string

     1{
     2  "bs": {
     3    "type": "string",
     4    "value": ""
     5  },
     6  "hello": {
     7    "type": "string",
     8    "value": "hello\n"
     9  },
    10  "higher-than-127": {
    11    "type": "string",
    12    "value": "Sørmirbæren"
    13  },
    14  "literal": {
    15    "type": "string",
    16    "value": "\\x20 \\x09 \\x0d\\x0a"
    17  },
    18  "multiline": {
    19    "type": "string",
    20    "value": "  \t \u001b \r\n\n\n\u0000\nhello\n\nSørmirbæren\n"
    21  },
    22  "multiline-literal": {
    23    "type": "string",
    24    "value": "\\x20 \\x09 \\x0d\\x0a\n"
    25  },
    26  "nul": {
    27    "type": "string",
    28    "value": "\u0000"
    29  },
    30  "whitespace": {
    31    "type": "string",
    32    "value": "  \t \u001b \r\n"
    33  }
    34}

View as plain text