How do you convert letter into binary digit?
Step 1: Number the alphabets in binary digits of 5 bits. i.e. A = 0001; B = 0010; .......; Z = 11010.Step 2: If you want Upper-case letters, use the binary digit 010 after the binary code for the letters and binary digit for Lower-case letter, use 011 after the binaru code for the letters. i.e. A = 010 00001; a = 011 00001.Step 3: Add them together.A = 01000001; a = 01100001B = 01000010; b = 01100010C = 01000011; c = 01100011.......................................X = 01011000; x = 01111000Y = 01011001; y = 01111001Z = 01011010; z = 01111010Hope this helps you,Hatim,Kind Regards,