Decimal to Binary Converter
Convert Decimal to Binary
Formula
Decimal to Binary: repeatedly divide by 2, collect remainders | 255 = 11111111₂ | 100 = 1100100₂
Frequently Asked Questions
How do I convert decimal to binary?
Repeatedly divide the decimal number by 2 and record the remainders. Read the remainders from bottom to top. For example, 13: 13/2=6 r1, 6/2=3 r0, 3/2=1 r1, 1/2=0 r1. Reading up: 1101.
What is the binary of 255?
255 in binary is 11111111 (eight 1s). This is the maximum value of a single byte (8 bits). Each bit is 1: 128+64+32+16+8+4+2+1 = 255.
You may also need
R
Binary to Decimal Converter
Free binary to decimal converter. Convert binary numbers to decimal, hexadecimal, and octal. Supports up to 32-bit binary values.
ConversionR
Octal to Decimal Converter
Free octal to decimal converter. Convert between octal (base 8) and decimal (base 10) numbers. Also shows binary and hexadecimal.
Conversion