Will the particular CharSet
affect the binary (or integer) value associated with each byte?
Example:
String original = foo(); // makes string
byte[] utf8Bytes = original.getBytes("UTF8"); // CharSet is UTF8
byte[] defaultBytes = original.getBytes(); // default CharSet
Will utf8Bytes[1]
always equal defaultBytes[1]
from a binary/integer point of value?