mirror of
https://github.com/kgabis/parson.git
synced 2024-11-24 06:05:29 +00:00
102a4467e1
* 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>
16 lines
409 B
Plaintext
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"
|
|
} |