I need to send characters as ü to the server as a Unicode character, but as a string. Therefore, it should be \u00fc(6 characters), not the character itself. But afterwards JSON.stringifyhe always gets ü , no matter what I did with him.
If I use 2 backslashes of type \\u00fc, then I get 2 per line JSON, and that is not good either.
Any trick to avoid this? This is very annoying.
Ok, I forgot: I cannot change the line after JSON.strinfigy, this is part of the framework without a workaround, and we do not want to decode the whole package.
source
share