Decimal to Binary
Your data never leaves your browserConvert decimal numbers (base-10) to binary (base-2).
Brie — Bug Reporting Tool
Found a bug while testing?
Brie captures screenshots, console logs, network data, and session replays in one click — so developers get the full context without the back-and-forth.
About Decimal to Binary
Enter one or more decimal integers (one per line) and instantly convert them to binary representation. Useful for understanding how computers store numbers, working with bitmasks, and learning number systems.
How to use
- Enter one decimal number per line in the input panel.
- The binary equivalent appears instantly in the output panel.
- Click Copy to copy the results to your clipboard.
More Number / Base Conversion
Frequently Asked Questions
FAQs about Decimal to Binary
How does decimal to binary conversion work?
Divide the decimal number by 2 repeatedly, recording the remainder each time. Read the remainders from bottom to top to get the binary representation.
Why is binary important in computing?
Computers store and process all data as binary (0s and 1s) because electronic circuits naturally represent two states: off (0) and on (1).
Can I convert negative numbers?
This tool converts non-negative integers. Negative numbers and floating-point values are not supported.
What is 255 in binary?
255 in decimal is 11111111 in binary — eight 1-bits, which is the maximum value of an 8-bit unsigned integer (1 byte).
Can I convert multiple numbers at once?
Yes. Enter one decimal number per line and the tool will convert each one individually.