You need to know the appropriate Encodingone that uses the device; it can be, for example, UTF-16, in this case
string s = Encoding.Unicode.GetString(bytes);
or UTF-8:
string s = Encoding.UTF8.GetString(bytes);
/ :
string s = Encoding.GetEncoding(yourEncoding).GetString(bytes);