I can`t find the way out...
Im working with some website through
HTTPRequests`. in the page content, I receive a symbols like this:
u0432\u0438\u043a\u0438
what is it? how can I decode it, using C#?
I can`t find the way out...
Im working with some website through
HTTPRequests`. in the page content, I receive a symbols like this:
u0432\u0438\u043a\u0438
what is it? how can I decode it, using C#?
var src= "\u0438";
Console.WriteLine(Encoding.GetEncoding(65001).GetString(Encoding.GetEncoding(65001).GetBytes(src)));
Assuming you're using UTF-8. If the values don't check, please view this link. https://msdn.microsoft.com/en-us/library/system.text.encoding.getencodings%28v=vs.110%29.aspx