C#: if a byte is 0 to 255, then how come Encoding.UTF8.GetBytes(“çõ”) return values of up to 6 digits i.e. 195167 and 195181?

后端 未结 0 1389
天命终不由人
天命终不由人 2021-01-03 22:06

This is my code:

byte[] sample = Encoding.UTF8.GetBytes("çõ");
foreach (byte c in sample)
  Debug.Write(c.ToString());

I am struggl

相关标签:
回答
  • 消灭零回复
提交回复
热议问题