JSON Escape / Unescape is a free online developer tool to escape special characters in JSON strings to ensure it's safe to parse or unescape JSON special characters to their corresponding ones.
This tool is split into two modes: JSON Escape and JSON Unescape.
JSON Escape - Escapes the JSON special characters by converting them to their corresponding escaped characters as listed in the following so that the JSON string is safe to use.
backspace is converted to \b
form feed is converted to \f
new line is converted to \n
carriage return is converted to \r
tab is converted to \t
double quote is converted to \"
backslash is converted to \\
JSON Unescape - Unescapes the JSON special characters by converting them back to their original ones as seen in the following.
\b is converted to backspace
\f is converted to form feed
\n is converted to new line
\r is converted to carriage return
\t is converted to tab
\" is converted to double quote
\\ is converted to backslash
When you're done escaping or unescaping the JSON string, you can copy the result to your clipboard using the copy button.