Save
...
incomplete
computer science
hexadecimal
Save
Share
Learn
Content
Leaderboard
Learn
Created by
lucy dock
Visit profile
Cards (11)
hexadecimal is a
base 16
number system
hexadecimal numbers:
used to make
binary
numbers used to
read
for humans
avoid
mistakes
allow us to
quickly
concert into
binary
hexademial digits are:
1
2
3
4
5
6
7
8
9
A
B
C
D
E
F
converting hexadecimal to binary
calculate the decimal value of each hex digit
write this as a binary number
join the numbers together
converting binary to hexadecimal
split the binary string up into
nibbles
(
4
bits)
work out the
decimal
value for each
nibble
convert the
decimal
value into its
hex equivalent
string together the
hex
values
convert 10101100 into hexadecimal
1010 =
10
=
A
1100 =
12
=
C
so 10101100 =
AC
convert 4F to binary
4
=
0100
F
=
15
=
1111
so
4F
=
01001111
hexadecimal to decimal
write the
place headings
above the hexadecimal digits
if there are
letters
, convert them to their
decimal equivalent
multiply
the value by the
place heading
add
these values together
convert E6 to decimal
E =
14
6 =
6
(
14
x
16
^
1
) + (
6
x
16
^
0
) =
230
so decimal value =
230
decimal to hexadecimal
work out how many
16s
there are in the number
write this number under the
16s
column
write the
remainder
under the
1s
column
convert these to
hexadecimal
digits (if applicable)
convert 75 to hexadecimal
75 /
16
=
4
r
11
so 75 is
4B
in hexadecimal