Developer Tools
Convert escaped JSON string content back into readable text.
Use this JSON Unescape tool to turn escaped JSON string content back into normal readable text. It is useful for API responses, copied payloads, logs, config values, and debugging when text includes escape sequences such as \n, \t, or escaped quotes.
Use this JSON Unescape tool to turn escaped JSON string content back into normal readable text. It is useful for API responses, copied payloads, logs, config values, and debugging when text includes escape sequences such as \n, \t, or escaped quotes.
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.
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\nworld\"
Output
"hello world"
Converts escaped quotes and line breaks back into normal readable text.
Input
line1\tline2
Output
line1 line2
Useful when copied data contains escaped tab characters.
Fix: Use a JSON formatter or validator if the full JSON structure is the real problem.
Fix: Check whether the text actually contains escape sequences before running the tool.
Fix: Check the source format carefully and unescape step by step if needed.
It converts escaped sequences like \n, \t, and \" back into normal text characters.
Yes. You can paste either a quoted JSON string or escaped content without outer quotes.
No. It focuses on unescaping string content, not validating entire JSON documents.
Yes. It works online in the browser.
Use JSON Unescape when the input is escaped string content. Use a formatter when you already have JSON structure and want to clean or validate it.