How to convert UTF-8 byte[] to string

string result = System.Text.Encoding.UTF8.GetString(byteArray);

Leave a Comment