I need to send a UTF-8 string with Unicode characters in it to a web API from a c/c++ application, I am sending it with a Content-Type of application/json.
For example I have a string that is "щь".
Currently what sends is the ASCII representation (each individual byte) "щь"
However I would like it to send the Unicode number instead "\u0449\u044c"
Is there a way to do this using WinHTTPRequest?