answersLogoWhite

0


Best 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,

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert letter into binary digit?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you convert binary number to bcd number on paper?

Example Binary 00111000 Convert to Decimal 56 Convert to BCD by using groups of four binary numbers for each digit 5 6 0101 0110


How do you convert letter into binary?

i want mathmethecaly


How convert the binary number 110101001 to decimal then to octal?

You can use the Windows calculator to do the conversions. If you want to learn how to do it yourself:To convert binary to decimal, multiply the right-most digit with 1, the second digit (from the right) with 2, the third with 4, etc.To convert to octal, group the bits from the right to the left, in groups of 3. Convert each group to a decimal digit.


How do you convert a octal to its binary number?

Convert every octal digit into three binary digit: 0->000 1->001 2->010 3->011 4->100 5->101 6->110 7->111


How do you convert Denney into binary?

You will need to look up the ASCII numbers for each letter, then convert those number to binary. The word "Denny" in binary is: 0100010001100001011011100110111001111001


How do you convert hexadecimal 4c.B7 to Binary?

Convert each hex digit to four binary digits. If you get less than three (for example, 7 --> 111), fill it out with zeroes to the left (in this case, 0111).


What is short for a binary digit?

bit = binary digit


Why is it impossible to convert a decimal number to binary on a digit by digit basis as can be done for Hexadecimal?

Because - Hex is an exact multiple of binary - whereas decimal numbers need to be converted from base 10 to base 2.


What binary number does 5A34F16 represent?

It is simplest to convert each hexadecimal digit into its 4-digit binary equivalent. So: 5 = 0101 A = 1010 3 = 0011 4 = 0100 F = 1111 6 = 0101 So, the binary equivalent is 10110100011010011110101.


What does the acronym BIT mean?

Binary Digit Binary Digit


How to convert binary number to its equivalent decimal number answer in simple form?

Each binary digit represents 2 times that of the digit to its right. So for example: 10b = 2d 100b = 4d 1010b = 8d + 2d = 10d


How will you convert octal to hexadecimal?

Each octal digit is equivalent to three binary digits; each hexadecimal digit is equal to four binary digits. I think the best way to do this conversion is to convert each octal digit into the binary equivalent (3 digits in each case - don't omit the zeros on the left), then convert the binary to hexadecimal by grouping four binary digits at a time (starting from the right). Note that nowadays, most scientific calculators - including the calculator that comes included in Windows - have the ability to do this sort of conversion. If you want to practice doing it yourself, you can still use the Windows calculator to check your calculations.