Convert! Base 2, 8, 10, 16

Robin Kim
therobinkim
Published in
2 min readSep 24, 2014

Note: This was originally posted on my blog at https://therobinkim.com/blog/convert-base-2-8-10-16. Any updates will appear there and not here.

Courtesy of cowbirds in love.

Let’s talk about a few number bases:

  • Decimal, or base 10
  • Binary, or base 2
  • Octal, or base 8
  • Hexadecimal, or base 16

I’ll cover the basics of these number bases and simple strategies for converting between them.

Expected prior knowledge: how to convert from decimal to binary, and vice-versa. (Even better if you can convert between two arbitrary number bases!)

The “base” of a number system represents the number of valid digits that may be used in that system. In the decimal system, we have ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. We are free to pick from any of those without any confusion.

The binary system has 2 digits, and octal system has 8 digits. Things get a little funny with the hexadecimal system, which has 16 digits. Since our “normal” decimal system only has 10 digits, we borrow a few from our alphabet! A (base 16) represents 10 (base 10), B (base 16) represents 11 (base 10), etc.

To quickly convert between these prior listed bases:

  1. Convert it to binary.
  2. Convert it to the base you want.

To go from binary to octal, group the digits by 3, and convert each triplet into its octal equivalent. For hexadecimal, group by 4, and convert each quadruple into its hexadeximal equivalent. Changing from either of these bases back to binary is a similar process. For example, F (base 16) = 15 (base 10) = 1111 (base 2).

Where have you seen hexadecimal before? Perhaps to represent RGB colors on the web!

Below is a slide deck I made to present to my Hack Reactor remote cohort in August 2014. It better illustrates the idea of converting between the bases.

This is a repost from my blog.

--

--

Robin Kim
therobinkim

Full stack software engineer. I teach at Hack Reactor Remote @ Galvanize.