Hexadecimal Math Conversions
What is 3 in hexadecimal?
3 in hexadecimal is 0x3.
What is 14 in hexadecimal?
14 in hexadecimal is 0xE
Before you can learn hexadecimal conversions, you need to know the following table on the back of this flash card.
Hexadecimal is base-16, meaning there are 16 total characters we can use from 0x0 to 0xF. Hexadecimal values have an "x0" before them to indicate they are hexadecimal.
What is 0x240 in decimal?
To convert 0x240 into decimal, you need to use a base-16 conversion table. Simply separate the 2, 4, and 0, and put it into the table starting at the far left. Now, multiply them accordingly. 2 x 256 = 512 4 x 16 = 64 0 x 1 = 0 512 + 64 + 0 = 576
What is 0x5F in decimal?
To convert 0x5F into decimal, you need to use a base-16 conversion table. Simply separate the 5 and the F and put it into the table starting at the far left. Now, multiply them accordingly. 5 x 16 = 80 15 x 1 = 15 80+ 15 = 95
What is 244 in hexadecimal?
To convert 244 into hexadecimal, you need to convert 244 into binary using your binary conversion table (see binary math flashcards). 244 in binary is 11110100. Split this in half and add them into two binary conversion tables. Wherever there is a 1, drag it down. Add both tables together, then convert both numbers to hexadecimal using the hexadecimal table. The answer is 0xF4
What is 32 in hexadecimal?
To convert 32 into hexadecimal, you need to convert 32 into binary using your binary conversion table (see binary math flashcards). 32 in binary is 00100000. Split this in half and add them into two binary conversion tables. Wherever there is a 1, drag it down. Add both tables together, then convert both numbers to hexadecimal using the hexadecimal table. The answer is 0x20