Escaped JSON string
"Hello \"team\"\nLine two"
Decode escaped JSON strings back into readable text. This is useful when a log line, database value, or request body contains a quoted string with lots of escape sequences.
JSON Unescape decodes escaped JSON string literals back into human-readable text. It turns sequences like \" and \n into the underlying characters you actually want to inspect.
That makes it easier to debug payloads where the real problem is hidden inside an escaped string field.
"Hello \"team\"\nLine two"
Hello "team" Line two
Yes. The unescape action expects a valid JSON string literal, including quotes.
Yes. Escaped newline sequences are decoded back into readable line breaks.
They may not be valid JSON strings, or they may contain broken escaping.
Yes. After decoding, you can copy the result from the output panel.