ParseJSON LogoParseJSON

JSON Unescape

Paste a JSON-encoded string and convert the escape sequences back to their original characters.

When Do You Need JSON Unescape?

You’ll often encounter doubly-escaped JSON when APIs return JSON inside JSON — for example, a field whose value is a serialized JSON string. Copy the value (with the surrounding quotes) and unescape it to read the actual content.

Another common case: log files or database exports that stored JSON as an escaped string.

Related