They are all different ways of representing numbers. For example the number 14 in binary would be 00001110, in octal it would be '16', and in hex would be represented by the '0E'
Chat with our AI personalities
10,923 decimal 2AAB Hexadecimal 25,253 Octadecimal
The answer depends on what you are converting from: binary, ternary, octal, hexadecimal ...
It equates to 26 in hexadecimal.
1101111010101101 in binary is equal to DEAD in hexadecimal.
Octal and hexadecimal numbers are useful for humans as they compactly represent binary numbers:each octal digit represents exactly 3 binary digitseach hexadecimal number represents exactly 4 binary digitsFor example, instead of trying to read (and remember) the binary number 100111001001 it can be represented as hexadecimal 0x09c9 or octal 04711 which are easier to read (and remember) for humans.