I am using Newtosoft.Json for parsing JSON, which is quite normal in C# :)
Unfortunately I got a json string like following to parse:
{"data": {"str_1": "' \u001e\v \u0003\u001f"\u0003\u001d %\b)\v#"}}
Calling JObject.Parse(aboveLine)
gives me an error like
Bad JSON escape sequence: \v. Path 'data.str_1', line 1, position [number].
\v
is a sign for vertical line.
Is there a way how can I parse above json without exception?