answersLogoWhite

0

First convert the hexadecimal to binary. Every hexadecimal digit corresponds to 4 binary digits:

0x0 = 0000

0x1 = 0001

0x2 = 0010

0x3 = 0011

0x4 = 0100

0x5 = 0101

0x6 = 0110

0x7 = 0111

0x8 = 1000

0x9 = 1001

0xA = 1010

0xB = 1011

0xC = 1100

0xD = 1101

0xE = 1110

0xF = 1111

Next, after you have converted each hexadecimal digit into binary digits, convert the binary digits to Octal. Each octal digit corresponds to 3 binary digits:

00 = 000

01 = 001

02 = 010

03 = 011

04 = 100

05 = 101

06 = 110

07 = 111

Make sure that you don't accidentally mix up the digits.

If you are computer scientist, then you may also have to worry about endianess (whether the most significant digit comes first or the least significant digit comes first).

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

The Hex number FF may be represented by?

FF in Hex is the same as 255 in Decimal, 377 in Octal and 11111111 in Binary FF in Hex is the same as 255 in Decimal, 377 in Octal and 11111111 in Binary


Convert the hexadecimal number ABCDEF into binary and octal?

Start > All Programs > Accessories > Calculator In Calculator, View > Programmer. Select Hex. Type ABCDEF and then select binary. This gives this : 101010111100110111101111


Is 75 an octal number?

Yes. The hex equivalent is 3D and the binary is 111101. The decimal is 61.


How do you write a Java program to convert a decimal number to an octal number?

public class Dataconversion { public static void main(String[] args) { System.out.println("Data types conversion example!"); int in = 44; System.out.println("Integer: " + in); //integer to binary String by = Integer.toBinaryString(in); System.out.println("Byte: " + by); //integer to hexadecimal String hex = Integer.toHexString(in); System.out.println("Hexa decimal: " + hex); //integer to octal String oct = Integer.toOctalString(in); System.out.println("Octal: " + oct); } }


Represent the following hexadecimal number into octol 8AC8A516?

Hex 8AC8A516 = octal 2126212426 - decimal 2328405270.


Could u please Convert octal no 1247 to hexadecimal?

Octal 1247 = Hex 2A7


What is the value for hex value 20?

20 hex = 32 decimal or 100000 binary or 40 octal.


What is the octal of hex 54?

Octal 124


How will you Convert this binary number 111111111111 into hexadecimal?

4095 For anything more complex I would use the standard 'calculator' provided with Windows, click on 'View' then 'Scientific'. The radio buttons let you select Decimal, Hex, Octal or Binary for the currently displayed number.


How you convert the 53.2 octal number into binary number?

To covert octal to binary, write down a 3-bit equivalent for each digit. In this case it would be 101 011 . 010, or 101011.01 An excellent answer above. But if you want a lazy way to do it, you can also use the standard 'calculator' provided with Windows, click on 'View' then 'Scientific'. The radio buttons let you select Decimal, Hex, Octal or Binary.


108 in decimal form?

108 is a decimal, but hex 108 is decimal 254, and there's no such thing as 108 in octal or binary. Hope that's what you were asking


Convert hex to decimal?

Yes, it can be done.