How do you convert letter into binary digit?

Answer:
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 = 01100001
  • B = 01000010; b = 01100010
  • C = 01000011; c = 01100011
  • .......................................
  • X = 01011000; x = 01111000
  • Y = 01011001; y = 01111001
  • Z = 01011010; z = 01111010

Hope this helps you,


Hatim,


Kind Regards,
First answer by ID1976326701. Last edit by ID1976326701. Question popularity: 3 [recommend question].