Skip to content

256 in Hexadecimal

Decimal 256 equals 0x100 in hexadecimal.

Why this number matters: 256 is 2⁸ - the number of distinct values a single byte can represent (0-255).

256 in all number bases

Decimal256
Hexadecimal0x100
Binary0001 0000 0000
Octal400

How 256 converts from decimal to hexadecimal

Divide by 16 repeatedly and keep each remainder, then read the remainders from bottom to top:

256÷ 16 =16remainder0
16÷ 16 =1remainder0
1÷ 16 =0remainder1

Result (remainders bottom to top): 100