answersLogoWhite

0


Best Answer

There is no such thing as a binary encoded hexadecimal value. The encoding is simply the representation of a number. E.g., the symbol 42 is not a number, it is merely the representation of a number. Forty-two is an actual number. This is because 42 is only the number forty-two when the digits are base-10 (decimal). In octal notation, 42 is thirty-four and in hexadecimal notation 42 is sixty-six.

Humans use decimal encoding to represent numbers simply because that's the way we were taught from an early age. We consider them easy to work with simply because we consider it easier to work in powers of 10. However, it's really no easier than working in powers of 5 or 12. Before decimalisation became the norm we actually used sexagesimal, base-60, because of its high divisibility (it's the lowest number that has all the factors 2, 3, 4, 5 and 6). Hence there are 60 seconds to the minute, 60 minutes to the hour, 24 hours in the day (2x2x2x3) and 360 degrees in a rotation.

Binary and hexadecimal are simply different ways of encoding the same number. Computers only understand binary, but binary notation is tedious for humans because there are only two symbols to work with. Higher bases allow us to work with numbers more quickly because there are more symbols to play with and therefore more values we can represent with just a single digit. However, any base that is itself a power of two gives us a very simple conversion to and from binary. That is; base-4, base-8 and base-16 are more closely related to binary than is decimal.

For instance, two binary digits have four possible combinations, each of which can be represented by just one base-4 digit. Three binary digits have eight possible combinations each of which can be represented by just one base-8 digit (octal notation). It therefore follows that a single base-16 digit can represent any combination of 4-bits. Since a byte is typically 8-bits in length, a hexadecimal digit is known as nybble because it is half-a-byte.

Knowing this we can easily convert any number from hexadecimal to binary and back again. And if we can do it easily then a computer can do it just as easily. Converting to and from decimal is not so straightforward, but the computer can be programmed to do that for us as well, since decimal is the notation we're more used to. But when we want to instruct the computer in its own language, hexadecimal is easier to work with than decimal.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is binary encoded hexadecimal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is binary 100110 in hexadecimal?

It equates to 26 in hexadecimal.


What numerical value in hexadecimal is equivalent to the binary number 1101111010101101?

1101111010101101 in binary is equal to DEAD in hexadecimal.


Binary to hexadecimal to binary conversion?

Each 4 bits of binary can make 1 hexadecimal digit. There are 16 hexadecimal characters including zero. This can be shown by the equation 2^4 = 16.


Convert binary octal 864BF into hexadecimal?

Okay, I'm pretty sure that 864 binary is 30 hexadecimal. - RG


How are hexadecimal and binary related?

Each 4-digit string of binary digits is equivalent to 1 single hexadecimal digit.


What is the hexadecimal for 11111011010?

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.


How does the binary numbering system differ from the hexadecimal numbering system?

the binary system is base 2 and the hexadecimal system is base 16


Convert 110110.101 to hexadecimal?

Assuming the original was in binary, the answer is 36.A


What is the binary representation of the hexadecimal number 3D9?

The binary representation is : 1111011001


What is the hexadecimal symbol to the binary number 1010?

Binary(1010) = Hex(A)


What is the hexadecimal equivalent Ethernet address 01011010?

The binary number 01011010 is 005A in hexadecimal.


How can i Convert 487 from hexadecimal to binary?

1. represent every individual digit of given hexadecimal in binary form like this 4---------> 0100 8---------> 1000 7---------> 0111 2. combine the individual binary digits in order to get the binary of given hexadecimal number 487 ------------> 0100 1000 0111 ( required binary number )