32768 in Binary

Explained with a place-value breakdown — reference tables, charts, and a live converter.

32768 in binary is 1000000000000000 (0b1000000000000000).

Convert any value

Binary(0b…)1000000000000000= 0b1000000000000000

Step by step

  1. 1. Divide by the base repeatedly

    Divide 32768 by 2 again and again, noting the remainder each time:

  2. 2. Collect the remainders

    32768 ÷ 2 = 16384, remainder 0 · 16384 ÷ 2 = 8192, remainder 0 · 8192 ÷ 2 = 4096, remainder 0 · 4096 ÷ 2 = 2048, remainder 0 · 2048 ÷ 2 = 1024, remainder 0 · 1024 ÷ 2 = 512, remainder 0 · 512 ÷ 2 = 256, remainder 0 · 256 ÷ 2 = 128, remainder 0 · 128 ÷ 2 = 64, remainder 0 · 64 ÷ 2 = 32, remainder 0 · 32 ÷ 2 = 16, remainder 0 · 16 ÷ 2 = 8, remainder 0 · 8 ÷ 2 = 4, remainder 0 · 4 ÷ 2 = 2, remainder 0 · 2 ÷ 2 = 1, remainder 0 · 1 ÷ 2 = 0, remainder 1

  3. 3. Read the remainders bottom to top

    Reading the remainders from bottom to top gives 1000000000000000 — that is 32768 in binary.

Place-value breakdown

Each digit of 1000000000000000 is multiplied by its place value (a power of 2); the sum is 32768 (in decimal).

DigitPlace valueContribution
1215 = 327681 × 32768 = 32768
0214 = 163840 × 16384 = 0
0213 = 81920 × 8192 = 0
0212 = 40960 × 4096 = 0
0211 = 20480 × 2048 = 0
0210 = 10240 × 1024 = 0
029 = 5120 × 512 = 0
028 = 2560 × 256 = 0
027 = 1280 × 128 = 0
026 = 640 × 64 = 0
025 = 320 × 32 = 0
024 = 160 × 16 = 0
023 = 80 × 8 = 0
022 = 40 × 4 = 0
021 = 20 × 2 = 0
020 = 10 × 1 = 0
Sum32768

Grouped into nibbles (4-bit groups)

Every four bits (one nibble) map to exactly one hexadecimal digit. That is how a binary number is read quickly as hex.

10008
00000
00000
00000

32768 in all four bases

Number baseRepresentationWith prefix
Binary10000000000000000b1000000000000000
Octal1000000o100000
Decimal32768
Hexadecimal80000x8000

Each digit's contribution

1000000000000000
Hover a bar to see its place value

Bit grid

121502140213021202110210029028027026025024023022021020
Hover a cell to see its place value

Digit count by number base

16Binary6Octal5Decimal4Hex
Hover a bar to see the representation

Common values reference

DecimalBinaryOctalHexadecimal
0000
1111
21022
31133
410044
510155
611066
711177
81000108
91001119
10101012A
11101113B
12110014C
13110115D
14111016E
15111117F
16100002010
321000004020
64100000010040
1281000000020080
25511111111377FF
256100000000400100
1024100000000002000400

Powers of 2

PowerIn binaryDecimal value
2011
21102
221004
2310008
241000016
2510000032
26100000064
2710000000128
28100000000256
291000000000512
210100000000001024
2111000000000002048
21210000000000004096

About number bases and place value

A number base (radix) defines how many digits are used and what each position is worth. Decimal uses ten digits and powers of ten, binary uses just two digits and powers of two, and hexadecimal uses sixteen digits and powers of sixteen.

The value itself never changes — only how it is written. These conversions are pure integer math and exact: 255 is always 0xFF.

Where hexadecimal shows up

Hex appears everywhere in computing: CSS color codes, memory addresses, MAC addresses, and byte values. One byte (8 bits) fits exactly into two hex digits (00–FF), i.e. 0 to 255.

Frequently asked questions

What is 32768 in Binary?

32768 in binary is 1000000000000000 (0b1000000000000000).

How do you convert 32768 to binary?

Repeatedly divide 32768 by 2 and read the remainders from bottom to top — that gives 1000000000000000. The place-value table above shows each step.

What is 32768 in binary and hexadecimal?

32768 is 0b1000000000000000 in binary and 0x8000 in hexadecimal.

Why is hexadecimal used?

Hexadecimal (base 16) is compact: each hex digit maps to exactly four bits (one nibble). That is why color codes, memory addresses, and byte values are almost always written in hex — 255 is FF, far shorter than 11111111.

Are these conversions exact?

Yes. Converting between number bases is pure integer math and perfectly exact — the same value, just written a different way. 255 is always 0xFF.

Convert more

The number base converter covers binary, octal, decimal, and hexadecimal with an exact place-value breakdown.

See all converters →