Convert A from hexadecimalHow to convert number A from hexadecimal to binary, decimal, octal? | |
Hexadecimal to:
binary
decimal
octal
|
| ||
| ||
| ||
Hexadecimal to DecimalConvert A8 to decimal:A16 = 1010 |
hexadecimal A |
A | step 0 |
convert to | (A*160) | step 1 |
convert to | (10*160) | step 2 |
decimal 10 = |
10 | step 3 |
Hexadecimal to Binary |
Convert A16 to binary: A16 = 10102 |
hexadecimal A |
A | step 0 |
convert to | 1010 | step 1 |
binary 1010 = |
1010 | step 2 |
Hexadecimal to OctalConvert A16 to octal:A16 = 128 |
hexadecimal A |
A | step 0 |
convert to | 1010 | step 1 |
binary 1010 = |
1010 | step 2 |
binary 1010 |
1 | 010 | step 3 |
octal 12 |
1 | 2 | step 4 |
Convert other numbers: |
5 6 7 8 9 A B C D E F |