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.
No. Changing the input clears the old result so stale JSON is not shown.
Yes. Use Copy JSON after unstringifying.
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.
Escape or unescape XML entity text safely.
Encode XML as Base64 or decode Base64 back to XML.