Hexadecimal Notation

I have been going through the Bitcoin For Developers course on the Saylor Academy website. I took one computer science class many, many years ago. I needed a primer on hexadecimal notation.

  • Each hex digit represents 4 bits (binary digits) also known as a nibble
  • Example: an 8 bit byte can have values ranging from 00000000 to 11111111 in binary form, which can be conveniently represented in hexadecimal as 00 to FF
BinaryHex
00000
00011
00102
00113
01004
01015
01106
01117
10008
10019
1010a
1011b
1100c
1101d
1110e
1111f