digiwleeaTools
LearnGlossaryAboutCheat sheetHow a CPU worksToolsOpen the lab →

1 in binary

The decimal number 1 written in binary is 1. In hexadecimal it is 1, and in octal 1.

1 in binary1
BaseValue
Decimal (base 10)1
Binary (base 2)1
Hexadecimal (base 16)1
Octal (base 8)1

How 1 converts to binary

Binary is base 2, so each place is worth twice the one to its right: 1, 2, 4, 8, 16, and so on. Adding up the place values that have a 1 gives back the decimal number:

1 = 1

That is why 1 in decimal is 1 in binary: it is exactly the set of powers of two that add up to 1. To get the hexadecimal form, group the bits into fours from the right and write each group as one hex digit, which gives 1.

Convert any number

Type any value and watch all three bases update live in the binary converter, or read the theory behind it in the lessons on binary numbers and hexadecimal.

Want to build the circuit that does this? Open the lab and wire up an adder, or follow the free course from a single transistor up to an 8-bit CPU.

Open the binary converter →

Frequently asked

What is 1 in binary?

1 in binary is 1. That is the sum of the powers of two 1, which add up to 1.

What is 1 in hexadecimal?

1 in hexadecimal is 1. You get it by grouping the binary digits 1 into fours from the right and writing each group as one hex digit.

How many bits is 1?

1 needs 1 bits in binary (1). It fits in a single 8-bit byte.