JSON Escape / Unescape

Paste your JSON or escaped JSON string and choose your operation. Escape converts JSON to an escaped string, Unescape converts escaped JSON string back to readable JSON.

Escape Example
Input JSON:
{"name": "John", "age": 30}
Output (escaped):
"{\"name\": \"John\", \"age\": 30}"
Unescape Example
Input (escaped string):
"{\"name\": \"John\", \"age\": 30}"
Output JSON:
{"name": "John", "age": 30}