Decode escaped/stringified JSON from server logs. Handles multiple levels of escaping including \n, \", \\, etc.
Escaped JSON Input
Paste your escaped/stringified JSON
Common in server logs, API responses, or multi-level JSON.stringify()
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\"}"