Simple online tools for developers, networking, text and conversions.

Developer Tools

JSON Unescape

Convert escaped JSON string content back into readable text.

Tool

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.

About this tool

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.

Learn more

Why use this tool

How to use

  1. Paste the escaped text into the input box.
  2. Run the tool to unescape the string content.
  3. Review the readable output.
  4. Copy the result for debugging, editing, or reuse.

Examples

Example

Input

\"hello\nworld\"

Output

"hello
world"

Converts escaped quotes and line breaks back into normal readable text.

Example

Input

line1\tline2

Output

line1	line2

Useful when copied data contains escaped tab characters.

Common errors

The user pastes a full JSON document instead of one escaped string.

Fix: Use a JSON formatter or validator if the full JSON structure is the real problem.

The input is already unescaped and the result looks unchanged.

Fix: Check whether the text actually contains escape sequences before running the tool.

The string was escaped multiple times and one pass is not enough.

Fix: Check the source format carefully and unescape step by step if needed.

FAQ

What does JSON Unescape do?

It converts escaped sequences like \n, \t, and \" back into normal text characters.

Can I paste a quoted JSON string?

Yes. You can paste either a quoted JSON string or escaped content without outer quotes.

Does it validate full JSON objects too?

No. It focuses on unescaping string content, not validating entire JSON documents.

Is this JSON Unescape tool free to use?

Yes. It works online in the browser.

When should I use JSON Unescape instead of JSON Formatter?

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.

Use cases

Related tools