answersLogoWhite

0

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

15y ago

What else can I help you with?

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


What is the binary for the number 1000?

The binary representation of the decimal number 1000 is 1111101000. In binary, each digit represents a power of 2, starting from the rightmost digit, which is 2^0. To convert 1000 to binary, you can repeatedly divide the number by 2 and record the remainders.


How do you convert letter into binary?

i want mathmethecaly


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


What is short for a binary digit?

bit = binary digit


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).


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