I know this may be a simple question but really i just can't solve this thing! what i want is to convert an array into a char i mean, let's suppose that someArray has into it {1,0,1,0,1,0}, and in binary, 10101010 = ª now, how can i do that? is there something like arrayToChar(byte) or something like that? my idea is to make a class with all the conversions like
if(someArray.equals(10101010)){
return "ª";
}
but i know there must be an easier an shorter way to do this, any ideas? :( please help