UnEscapes a JSON string by replacing notations with unescape characters.
Character | Replace With |
---|---|
NewLine | \n |
Single quote | \' |
Horizontal Tab | \t |
Backslash | \\ |
Vertical Tab | \v |
Backspace | \b |
Form feed | \f |
Double quote | \" |
{\n \"name\": \"Foo\",\n \"age\": \"25\",\n \"gender\": \"M\"\n }
{
"name": "Foo",
"age": "25",
"gender": "M"
}