Convert valid JSON or JSON string literals into readable, formatted JSON.
Stringified JSON → Readable JSON
Stringified JSON is JSON that has been converted into a string, usually with escaped quotation marks and backslashes.
This tool first parses the outer JSON string. If the result is itself valid JSON, it parses that second layer too and pretty-prints the final structure.
"{\"name\":\"Alice\",\"age\":30}"{
"name": "Alice",
"age": 30
}It is JSON that has been serialized into a string, often containing escaped quotation marks.
Yes. If the first parse returns another JSON string, the tool attempts a second parse automatically.
The tool still parses it and returns a formatted JSON result.
The tool shows a clear error and does not produce misleading output.
If the outer value is a valid JSON string but its contents are not another JSON document, the result stays a quoted JSON string.
No. It parses the input once and attempts one additional parse when the first result is a string. Further layers are not automatically removed.
Related Tools
Build and preview Valorant crosshair settings.
Search common Vim commands.
Turn JSON rows into bar, line, or pie charts.
Convert WebP files and Base64 data in both directions.
Convert GIF files into Base64 text or data URLs.
Convert the first GIF frame into a JPG image.