String str = "\u6b63"; // \u6b63是汉字“正”的Unicode编码
bytes[] bytes = str.getBytes();
byte b1 = bytes[0];
byte b2 = bytes[1];而
b1是11011011B (D5H)
b2是11111101 (FDH)
这是6bH和63H请问这是为什么?急急急!!!