I have a POST Rest API which is receiving a json from body
controllerFunction([FromBody] JObject payload)
I am giving a json from postman which has a property called "NonCritical_XYZ". When I am receiving the json in controller one extra "-" is getting added in JObject payload. The property is coming as "Non-Critical_XYZ". When I am taking the payload in excel it is showing like Special character 'Â' inserted for the property "NonÂCritical_XYZ".
Below are the headers I am sending with the request