16 in Binary — What is 16 in Binary?

16 in binary is 10000. 16 = 2^4, so its binary form is a 1 followed by 4 zero(s). In octal 16 is 20 and in hexadecimal it is 10. The bit pattern uses 5 bits and fits in 1 byte....

16 IN ALL BASES

16 IN BINARY

10000

5 bits · 1 byte · 1 one

Binary (base 2)

10000

Octal (base 8)

20

Decimal (base 10)

16

Hexadecimal (base 16)

10

BCD

0001 0110

Bit length

5

Byte count

1

Count of 1s

1

Count of 0s

4

Is power of 2

Yes ✓

Nearest 2ⁿ

2^4

HOW TO CONVERT 16 TO BINARY

Method: divide by 2, collect remainders

1

16 ÷ 2 = 8 remainder 0

2

8 ÷ 2 = 4 remainder 0

3

4 ÷ 2 = 2 remainder 0

4

2 ÷ 2 = 1 remainder 0

5

1 ÷ 2 = 0 remainder 1

Read remainders bottom to top: 10000

VERIFY: BINARY BACK TO DECIMAL

1×2^4 + 0×2^3 + 0×2^2 + 0×2^1 + 0×2^0

= 16 = 16

FUN FACT

16 = 2 to the power 4 is the base of hexadecimal notation. In binary, 16 = 10000. One hex digit (nibble) represents exactly 4 bits, and 16 is the first two-digit hex number (10 in hex).

BIT VISUALIZER

BIT PATTERN

Byte 1

0
7
0
6
0
5
1
4
0
3
0
2
0
1
0
0

POWERS OF 2 REFERENCE

n2ⁿBinaryHex
0111
12102
241004
3810008
4161000010
53210000020
664100000040
71281000000080
8256100000000100
95121000000000200
10102410000000000400
153276810000000000000008000
16655361000000000000000010000
Created with❤️byeaglecalculator.com

HOW TO CONVERT

  1. 1

    Divide 16 by 2 repeatedly, collecting remainders. 16 div 2 = 8 remainder 0 -> 8 div 2 = 4 remainder 0 -> 4 div 2 = 2 remainder 0 -> 2 div 2 = 1 remainder 0 -> 1 div 2 = 0 remainder 1. Read remainders bottom to top: 10000.

  2. 2

    Verify: 1*2^4 + 0*2^3 + 0*2^2 + 0*2^1 + 0*2^0 = 16 = 16. Each bit position represents a power of 2, starting at 2^0 = 1 on the right.

  3. 3

    16 in other bases: octal = 20, hexadecimal = 10. 16 = 2^4, so its binary form is a 1 followed by 4 zero(s).

  4. 4

    The bit pattern uses 5 bits and fits in 1 byte. When stored as a full byte: 00010000.

WORKED EXAMPLE

16 decimal to binary: 16 div 2 = 8 remainder 0 -> 8 div 2 = 4 remainder 0 -> 4 div 2 = 2 remainder 0 -> 2 div 2 = 1 remainder 0 -> 1 div 2 = 0 remainder 1 -> read bottom to top: 10000. Verify: 1*2^4 + 0*2^3 + 0*2^2 + 0*2^1 + 0*2^0 = 16. Octal: 20, Hex: 10.

FREQUENTLY ASKED QUESTIONS

RELATED

MORE NUMBER THEORY CALCULATORS

Was this calculator helpful?

Last updated: April 29, 2026 · Formula verified by EagleCalculator team · Eagle-eyed accuracy for every calculation.