I have created a string and converted it to an array of characters. I now need to convert that array of characters into binary. How do I go about doing this?? This is what I have:
String word = "Hello";
char[] w = word.toCharArray();
I have created a string and converted it to an array of characters. I now need to convert that array of characters into binary. How do I go about doing this?? This is what I have:
String word = "Hello";
char[] w = word.toCharArray();