Why the two following results are different?
bsh % System.out.println((byte)'\u0080');
-128
bsh % System.out.println("\u0080".getBytes()[0]);
63
Thanks for your answers.
|
|
|
|
||||
|
|
|
Unicode character |
|||
|
|
|
Here the byte array has 2 elements - that's because the representation of unicode chars does not fit in 1 byte. On my machine the array contains |
|||||||||||||
|
|
When you have a character which a character encoding doesn't support it turns it into '?' which is 63 in ASCII. try
prints
|
|||
|
|
|
Actually, if you want to get the same result with the
Java Strings are encoded internally as UTF-16, and since we want the lower byte like for the cast char -> byte, we use little endian here. Big endian works too, if we change the array index:
|
|||
|
|