What Is a Bit?

The smallest unit of data in computing — and why it matters more than you think

Bit = Binary Digit

A bit (short for binary digit) is the smallest possible unit of information in computing. It can hold exactly one of two values: 0 or 1. Every photo on your phone, every email in your inbox, every video on YouTube — all of it, at the most fundamental level, is stored as bits. The term was coined by Claude Shannon in his 1948 paper "A Mathematical Theory of Communication," which founded the field of information theory. Shannon proved that all information can be measured in bits, and that bits are the fundamental currency of data.

8 Bits = 1 Byte

A byte is a group of 8 bits — the smallest addressable unit of memory in most computers. One byte can represent 256 different values (2⁸ = 256). This is enough to encode: one ASCII character (A = 01000001), a number from 0-255, or one color channel in an RGB pixel (0-255 for red, green, or blue). The byte became standard in the 1960s with IBM's System/360 and has been the fundamental unit of computer memory ever since.

Why 1024, Not 1000?

A kilobyte (KB) is 1024 bytes, not 1000. Why? Because 1024 = 2¹⁰ — a round number in binary. Computers use binary addressing, so memory sizes are naturally powers of 2. 1 KB = 2¹⁰ bytes = 1024. 1 MB = 2²⁰ = 1,048,576. 1 GB = 2³⁰ = 1,073,741,824. Storage manufacturers often use decimal units (1 GB = 1,000,000,000 bytes), which is why a "1 TB" hard drive shows as ~931 GB in your operating system. To avoid confusion, the IEC introduced kibibyte (KiB), mebibyte (MiB), and gibibyte (GiB) for the binary units — but these terms are rarely used outside technical documentation.

How Many Bits Do You Encounter Daily?

A single character of text: 8 bits (1 byte). A typical email: ~75,000 bytes (~600,000 bits). A smartphone photo: ~3 MB (~24 million bits). A Netflix movie in 4K: ~7 GB per hour (~56 billion bits). Your phone sends and receives roughly 1-2 GB of data per day — that is about 10 billion bits flowing through your device every 24 hours. All of it is the same thing: 0s and 1s, just a lot of them.