Use this json formatter, json editor, json parser, json parser online!
What is JSON?
JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate. It is often used for transmitting data in web applications between a server and a client.
A JSON Prettier is a tool that formats JSON data to make it more readable. It takes a JSON string and adds indentation and line breaks to improve its readability.
How to Use
(json 정렬을 위한 json 편집기를 사용해보세요)
Sample JSON Data
Original JSON
{"name":"Lee","age":30,"city":"New York"}
Prettified JSON
{
"name": "Lee",
"age": 30,
"city": "New York"
}
JSON Example
{
"string": "Hello, World!",
"number": 101,
"boolean": true,
"null": null,
"array": [1, "two", false],
"object": {
"nestedString": "Nested",
"nestedNumber": 100
}
}