You can use the BitConverter class to get a hex representation of a string of bytes.
For example:
For example:
1
2
3
4
| byte [] someBytes = { 0x83, 0xDF, 0x0A, 0xA3, 0x92 }; string hex = BitConverter.ToString(someBytes); Console.WriteLine(hex); |
Sign up here with your email
ConversionConversion EmoticonEmoticon