- What's a 'stringified' JSON?
- JSON where the payload is a quoted and escaped string — usually because it was serialized twice. Common in log pipelines that wrap structured data in JSON string fields.
- Is it the same as unescape?
- Conceptually yes. This tool unwraps one layer of stringification and pretty-prints the result. JSON Unescape String is the lower-level version.
- What if the JSON is triple-stringified?
- Run the tool multiple times. Each pass removes one layer. Until you hit actual JSON structure, keep unwrapping.
- Does it validate the unwrapped content?
- Yes — if the unwrapped string isn't valid JSON, you get a parse error with the exact line and column.