List of utility methods to do Byte to Char Convert
return (char) (0xff & b);
return (char) ((b1 << 8) | (b0 & 0xff));