I am testing an application where I wish to input some text into a textfield and see if the application accepts it or raises an error. I am using postman and reading from a json data file with my different entries.
I wish to include an entry like thisL
{
"name": "namewith\test",
},
However using this I get an error:
Unexpected control character at 1:25
I have tried this:
{
"name": "namewith\\test",
},
this:
{
"name": "namewith\/test",
},
this
{
"name": "namewith'\'test",
},
How can I include this backslash and not have it recognized as an escape character?