Helper.v2
HomeAbout
GitHub
Home

/

Utilities

/

JSON Decoder

JSON Decoder

Decode escaped/stringified JSON from server logs. Handles multiple levels of escaping including \n, \", \\, etc.

This tool automatically detects and decodes multiple levels of JSON stringification. Perfect for logs that have been JSON.stringify() multiple times.

Escaped JSON Input

Paste your escaped/stringified JSON

Common in server logs, API responses, or multi-level JSON.stringify()

Example Use Cases

1. Server Logs with Escaped Newlines

"{\"level\":\"error\",\"message\":\"Failed\nto\nconnect\"}"

2. Double-Stringified JSON

"{\"data\":\"{\\\"user\\\":\\\"John\\\"}\"}"

3. Escaped Quotes in Values

"{\"name\":\"John \\\"Doe\\\"\",\"status\":\"active\"}"