parson/tests/test_5.txt
reuben olinsky 102a4467e1
Add support for string values with embedded '\0' characters (#137)
* Add support for strings with \0 chars

* address feedback

* Increments minor version, adds comments, changes license year

Co-authored-by: Krzysztof Gabis <kgabis@gmail.com>
2020-04-16 21:55:56 +02:00

16 lines
409 B
Plaintext

{
"first": "John",
"last": "Doe",
"age": 25,
"registered": true,
"interests": [ "Reading", "Mountain Biking" ],
"favorites": {
"color": "blue",
"sport": "running"
},
"utf string" : "\u006corem\u0020ipsum",
"utf-8 string": "あいうえお",
"surrogate string": "lorem\uD834\uDD1Eipsum\uD834\uDF67lorem",
"string with null": "abc\u0000def",
"windows path": "C:\\Windows\\Path"
}