My server returns value as support\\testing. When I get this value in client it can be escaped as support testing. \\t is escaped
support\\testing
support testing
\\t
If you are able to change the server-side code, you should add the escape character there: "support\\testing".
"support\\testing"
That will result in the desired result.