About JSON Escape / Unescape
This tool handles escaped JSON string content for nested logs, embedded configs, and cross-system text transport.
Key Features
- JSON Escape: Converts plain text into JSON-safe escaped string form.
- JSON Unescape: Restores escaped JSON content back to readable text.
- Quick Copy: Copy result in one click.
- Sample Input: Built-in sample for quick testing.
Common Escape Sequences
| Character | JSON Form |
|---|---|
quote " |
\\" |
backslash \\ |
\\\\ |
| newline | \\n |
| tab | \\t |
| carriage return | \\r |
Steps
- Paste your input text.
- Click escape or unescape.
- Review output and copy it to your target system.
FAQ
Why does JSON parsing still fail?
The JSON structure itself may be invalid (commas/brackets), not only string escaping.
Can it handle Unicode escapes?
Yes. Common \\uXXXX sequences can be restored during unescape.