How to encode UTF8 text to Unicode?
string text_txt = "пÑивеÑ";
byte[] bytesUtf8 = Encoding.Default.GetBytes(text_txt);
text_txt = Encoding.UTF8.GetString(bytesUtf8);
The problem is output: п�?иве�
I need output: привет
Using that site: https://www.branah.com/unicode-converter enter text in "UTF-8 text (Example: a ä¸ Ð¯
)" to "пÑивеÑ
" it will show you "привет" on Unicode text
Please give some advice thanks