I\'m trying to send an object like this to my REST API(built with asp net core)
{
\"firstName\":\"tersü\",
\"lastName\":\"asda\"
}
Although the Content-Type is charset UTF-8 the received byte code FC denotes the extended ASCII character 252 which represents the umlaut "ü".
In a UTF-8 encoding the umlaut "ü" consists of two bytes. So there is a mismatch between the given encoding header and the transmitted data. So you have to check the code which generates the request.