JSON String Escape/Unescape

Input
Output

Usage

  • <strong>Unescape</strong>: Restore JSON escaped string to original text, e.g. <code>"{\"name\":\"John\"}"</code> → <code>{"name":"John"}</code>
  • <strong>Escape</strong>: Convert text to JSON string, e.g. <code>{"name":"John"}</code> → <code>"{\"name\":\"John\"}"</code>
  • Supports multi-line input processing