Missing surrounding quotes
Input must be a full JSON literal, not raw text.
Fix: Wrap your input with "..." first.
header • up to 320x100 / 728x90
Unwrap a JSON string literal back to raw text — reverses JSON.stringify
Output will appear here...
content bottom • up to 300x250
sidebar • 160x600
Last reviewed:
JSON (JavaScript Object Notation) is a lightweight, human-readable data format used almost everywhere on the web for APIs, config files, and log output.
JSON Unstringify parses a JSON string literal (including quotes) and returns its raw decoded content. Escape sequences like \", \n, \t, and \uNNNN are resolved correctly.
It is the direct inverse of JSON Stringify and solves the common pain of reading string payloads captured from logs, request bodies, or clipboard copies of JSON fields.
"<p>Hello \"world\"</p>\nLine two"
<p>Hello "world"</p> Line two
Input must be a full JSON literal, not raw text.
Fix: Wrap your input with "..." first.
Numbers or booleans can't be turned into text.
Fix: The tool pretty-prints non-string JSON for inspection.
Yes — standard JSON Unicode escapes are decoded.
The tool returns the parsed value pretty-printed for inspection.
No — use a JSON array of strings as input instead.
No — parsing runs entirely client-side.
Yes — invalid JSON returns an error.
Pair Unstringify with Stringify, the formatter, and escape helpers for full decode workflows. You can also browse the full Encoders & Decoders category for more options.
Wrap a raw string in a JSON string literal — perfect for embedding content in a JSON payload
Format, validate, and beautify JSON online with readable indentation, syntax checking, and copy-ready output for APIs, logs, and config files.
Escape JSON special characters
Escape or unescape JavaScript string literals with backslash, quote, Unicode, and control-character handling
Convert text to HTML entities or decode HTML entities back to text in a single bidirectional tool
Validate JSON syntax and catch parse errors instantly. Paste JSON and get immediate feedback on structural issues, missing commas, and unquoted keys.
Encode or decode JSON strings
Encode JSON for URL parameters
Escape or unescape C# string literals including \x, \u, and \U Unicode escape sequences
Round-trip Java string literals — escape quotes, backslashes, newlines, and Unicode sequences
Decode and view JWT token payloads
Escape or unescape SQL string literals using standard single-quote doubling