MessagePack is an efficient binary serialization format which is similar to JSON but faster and smaller in size. It is just that it is not meant for the human eye.
JavaScript Object Notation (JSON), pronounced as Jason, is the most common data interchange format on the web. Douglas Crockford first released the JSON specification in the early 2000s. It is a simple format that is easier to comprehend than XML. It is also smaller in size because it does not have closing tags. A wide variety of programming languages can parse JSON files. They also support the serialization of data structures to JSON. You can copy JSON text to JavaScript and start using them without any modifications.
DD 00 00 00 01 DF 00 00 00 04 A4 6E 61 6D 65 AA 52 6F 62 69 6E 20 48 6F 6F 64 AA 64 65 70 61 72 74 6D 65 6E 74 A0 A7 6D 61 6E 61 67 65 72 A0 A6 73 61 6C 61 72 79 CC C8
3QAAAAHfAAAABKRuYW1lqlJvYmluIEhvb2SqZGVwYXJ0bWVudKCnbWFuYWdlcqCmc2FsYXJ5zMg=
[221, 0, 0, 0, 1, 223, 0, 0, 0, 4, 164, 110, 97, 109, 101, 170, 82, 111, 98, 105, 110, 32, 72, 111, 111, 100, 170, 100, 101, 112, 97, 114, 116, 109, 101, 110, 116, 160, 167, 109, 97, 110, 97, 103, 101, 114, 160, 166, 115, 97, 108, 97, 114, 121, 204, 200]
Ý[0x00][0x00][0x00][0x01]ß[0x00][0x00][0x00][0x04][0xA4]nameªRobin[0x20]Hoodªdepartment[0xA0] [0xA7]manager[0xA0][0xA6]salaryÌÈ
Ý\x00\x00\x00\x01ß\x00\x00\x00\x04¤nameªRobin Hoodªdepartment §manager ¦salaryÌÈ
{ "name": "John Doe", "age": 69 }
{"name":"John Doe","age":69}
{"name":"John Doe","age":69}
{name:"John Doe",age:69}
No case Change
lower case change
UPPER CASE CHANGE
camelCaseChange
PascalCaseChange
Title Case Change
snake_case_change
kebab-case-change
Sentence case change
{ "name": "John Doe", "age": 25, "addresses": [ { "city": "Phoenix", "country": "Arizona" }, { "city": "Miami", "country": "Florida" } ] }
{ "name": "John Doe", "age": 25, "addresses": [ { "city": "Phoenix", "country": "Arizona" }, { "city": "Miami", "country": "Florida" } ] }
{ "name": "John Doe", "age": 25, "addresses": [ { "city": "Phoenix", "country": "Arizona" }, { "city": "Miami", "country": "Florida" } ] }
{ "name": "John Doe", "age": 25, "addresses": "[{\"city\":\"Phoenix\",\"country\":\"Arizona\"},{\"city\":\"Miami\",\"country\":\"Florida\"}]" }
{"systemTime":"2014-01-01T23:28:56.782Z"}
{"systemTime":"\/Date(1388618936782)\/"}