4F7B: Binary = 100111101111011 Decimal = 20347
The answer depends on what you are converting from: binary, ternary, octal, hexadecimal ...
10011101: Decimal = 157 Hexadecimal = 9D
Decimal: 170Hex: AA
1
4F7B: Binary = 100111101111011 Decimal = 20347
It is used because it is easier to convert to and from binary to hexadecimal than decimal, and it uses less characters than binary. For instance: decimal: 65535 hex: FFFF binary: 1111111111111111
The answer depends on what you are converting from: binary, ternary, octal, hexadecimal ...
The answer depends on what you are converting from: binary, ternary, octal, hexadecimal ...
As compared to converting decimal into what other base! It is no more difficult to convert decimal into base 8 than decimal into binary or Hex.
10011101: Decimal = 157 Hexadecimal = 9D
Decimal is base 10. Binary is base 2. Octal is base 8. Hexadecimal is base 16.
16 is the 4th power of 2. So a hexadecimal number is converted to binary by replacing each hex digit by the 4-bit binary number having the same value. Conversely, in converting binary to hexadecimal, we group every 4 bits starting at the decimal (binary?) point and replace it with the equivalent hex digit. For example, the hexadecimal number 3F9 in binary is 1111111001, because 3 in binary is 11, F (decimal 15) is 1111, and 9 is 1001.
Assuming the original was in binary, the answer is 36.A
The way I convert between decimal and hexadecimal is to first convert the decimal number to binary: 664062510 = 110010101010011111100012 Then split the binary number into 16-bit (4 digit) chunks: 0110 0101 0101 0011 1111 00012 Next, convert each chunk into a hexadecimal digit: 0110 0101 0101 0011 1111 00012 6 5 5 3 F 1 Finally, put all the digits together: 664062510 = 6553F116
Okay, I'm pretty sure that 864 binary is 30 hexadecimal. - RG
If the above is decimal then in hexadecimal it is 2964492C2. If it is binary then in hexadecimal it is 7DA. If it is octal then in hexadecimal it is 49241208.