Developer Tools
Turn escaped JSON string content back into readable plain text.
Use this JSON Unescape tool to convert escaped JSON string content into readable text. It is useful when inspecting logs, reading copied API values, checking escaped multiline content, restoring quoted text, and understanding what a JSON-safe string actually contains.
Use this JSON Unescape tool to convert escaped JSON string content into readable text. It is useful when inspecting logs, reading copied API values, checking escaped multiline content, restoring quoted text, and understanding what a JSON-safe string actually contains.
Use json unescape when you need a fast browser-based result without extra setup. It works well for quick checks, one-off tasks, and routine formatting or calculation work.
JSON Unescape turns escaped string content back into readable text. JSON Escape does the reverse and prepares plain text for safe use inside a JSON string. If your input already contains backslashes and escaped quotes, start with JSON Unescape.
JSON Unescape is for one escaped string value or escaped text content. JSON Formatter is for full JSON objects and arrays. If the problem is only escaped string content, use JSON Unescape first. If you need to inspect the full JSON structure, use JSON Formatter.
If you need to escape the readable result again, use JSON Escape. If the unescaped output is part of a larger JSON payload, check it with JSON Validator. If you want to inspect the full structure after fixing the string content, open JSON Formatter.
\" becomes a normal double quote\\ becomes a single backslash\n becomes a real new line\t becomes a real tab\r becomes a carriage returnIf this tool runs fully in the browser, your input stays on the client side instead of being uploaded to a server. That makes it useful for decoding copied string fragments from logs, payloads, configs, and code examples when you want a fast local result.
Read step-by-step usage guidance, best practices, and common mistakes.
See common questions and answers about input, output, and tool usage.
Review practical input and output examples before running the tool.
Find similar and supporting tools for adjacent actions and follow-up tasks.
Input
Hello \"world\"\nnext
Output
Hello "world" next
Useful for turning escaped JSON string content back into readable text.
Input
C:\\temp\\file.txt
Output
C:\temp\file.txt
Restores escaped backslashes to the original readable path.
Fix: Use JSON Formatter or JSON Validator for full JSON structures.
Fix: Check whether the input really contains sequences like \n, \t, \" or \\.
Fix: Use URL Decoder for percent-encoded text, not for JSON escape sequences.
It converts escaped JSON string content back into readable plain text.
No. It is meant for JSON string content rather than full objects or arrays.
JSON Unescape restores escaped string content. JSON Validator checks whether full JSON syntax is valid.
The input may be double-escaped or may contain literal backslashes that are part of the actual text.
Use JSON Escape when you want to turn the readable result back into JSON-safe string content.