That is not a valid escape in a JSON string.
\q- Why:
- JSON defines a closed set of escapes — quote, backslash, slash, b, f, n, r, t and \u. Anything else after a backslash is a syntax error rather than a literal character.
- Fix:
- Escape the backslash itself as \\ if you meant a literal one.