Why not type cast it:

Code:
byte converted;
char original;

converted = (byte) original;
A byte is just a number from -127 to 127 (signed) or 0 to 255 (unsigned). It will never print out binary digits.