JSON String Unescape

Convert escaped JSON strings back to their original form. Converts escape sequences like \n, \t, \" back to actual characters.

Escaped Input
Enter the escaped JSON string
Unescaped Output
Original string with actual characters

JSON String Unescaping

This tool converts escaped JSON strings back to their original form. It reverses the escaping process, converting escape sequences back to their actual characters.

Escape Sequences Converted

| Escaped Form | Character | Description | |-------------|-----------|-------------| | \" | " | Double quote | | \\ | \ | Backslash | | \n | Newline | Line feed | | \t | Tab | Horizontal tab | | \r | Return | Carriage return | | \f | Form feed | Form feed | | \b | Backspace | Backspace | | \uXXXX | Unicode | Unicode character |

Use Cases

  • Debugging - View the actual content of escaped strings
  • Data Processing - Convert escaped data back to readable form
  • API Response Handling - Unescape strings from JSON responses
  • Log Analysis - Convert escaped log entries

Tips

  • Make sure the input is a valid escaped string
  • Unicode escape sequences (\uXXXX) are automatically converted
  • Invalid escape sequences will cause an error