'Is it possible to convert Unicode ASCII bytes[ ] to actual strings(Hi)

Is it possible to convert following bytes[] to a string as "Hi". Currently it is showing as "H�"

//"Hi" - is actual message
byte[] bytes = {72,175};
string data = Encoding.UTF8.GetString(bytes);
Console.WriteLine(data); //H�


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source