Raw text
Hello "team" Line two
Escape raw text for safe use inside JSON strings. This is useful when request bodies, fixtures, or logs need quotes, line breaks, or backslashes encoded correctly.
JSON Escape converts plain text into a valid JSON string literal. That means quotes become escaped quotes, line breaks become \n, and backslashes are handled safely.
It is especially useful when a broken request body turns out to be a string-escaping problem rather than a structural JSON problem.
Hello "team" Line two
"Hello \"team\"\nLine two"
Yes. The output is a valid JSON string literal.
Yes. Newlines are converted into JSON-safe escape sequences.
The unescape action expects a valid quoted JSON string, not plain text.
It is especially useful for developers, but anyone working with JSON string values can use it.