Is the request body parsed using a specific encoding?
I got a request holding a some characters
small example:
Itali\u00eb
This was converted as Italië
. Is there a way to disable this?1 Reply
Looking through the code, there doesn't seem to be any special parsing being done for Unicode characters. This is a JavaScript behaviour, and you can test this by running
console.log("Itali\u00eb");
in a browser console.