var str = "Привет"; Encoding unicode = Encoding.Unicode; byte[] unicodeBytes = unicode.GetBytes(str); var rez = Encoding.UTF8.GetString(unicodeBytes).ToString();
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)