Convert Byte to Bit (B → b)
The byte equals 8 bits and is the smallest addressable storage unit in modern computing and digital systems.
Byte to Bit Conversion Table
10 common values| Byte | Bit |
|---|---|
| 1 B | 8 b |
| 10 B | 80 b |
| 100 B | 800 b |
| 500 B | 4,000 b |
| 1,000 B | 8,000 b |
| 5,000 B | 40,000 b |
| 10,000 B | 80,000 b |
| 50,000 B | 400,000 b |
| 100,000 B | 800,000 b |
| 500,000 B | 4,000,000 b |
How to Convert Byte to Bit Manually
Step by StepConverting bytes to bits is straightforward: multiply by the conversion factor. Follow these three steps to do it by hand or in your head.
- 1Take your value in bytesStart with the number of bytes (B) you want to convert.
- 2Multiply by 8The conversion factor from B to b is 8. Multiply your value by this number.
- 3Read the result in bitsThe result is your value in bits (b).
Formula
Multiply the value in bytes by 8. For the reverse direction, multiply by 0.125.
b = B × 8B = b × 0.125Tips
Use these in everyday conversions- 1 byte = 8 bits.
- KB, MB, GB are 1000 or 1024 multiples of bytes — check context.
- Use bytes (B) for storage; bits (b) for bandwidth.
Common Mistakes
Avoid these- Confusing byte (B) with bit (b).
- Assuming 1 MB always equals 1,048,576 bytes — sometimes 1,000,000.
- Mixing file size (bytes) with transfer speed (bits per second).
About Byte and Bit
What is the Byte?
The byte equals 8 bits and is the smallest addressable storage unit in modern computing and digital systems. Byte-sized addresses are universal in computer architectures from microcontrollers to supercomputers, making the byte the fundamental block of memory and storage. A single ASCII character is 1 byte (256 possible values), basic UTF-8 characters use 1–4 bytes, and a UTF-16 character uses 2 bytes. File sizes, RAM capacity, and disk space are all measured in bytes and their multiples. The byte relates to the bit (1 byte = 8 bits), the kilobyte (1,000 or 1,024 bytes — see decimal vs. binary), the kibibyte (1,024 bytes, the strict computing standard), and larger multiples (MB, GB, TB). Note: storage manufacturers use decimal (1 GB = 10⁹ bytes), while operating systems often use binary (1 GiB = 2³⁰ bytes), causing the famous discrepancy where a '1 TB drive' shows about 931 GB free.
- File sizes everywhere (documents, images, video)
- RAM and storage capacity
- Character encoding in programming
An ASCII character: 1 byte. A short text message: few hundred bytes. Uncompressed photo: few MB.
What is the Bit?
The bit is the smallest unit of digital information, representing a single binary choice between two states (typically 0 or 1, true or false, on or off). Coined by mathematician John Tukey in 1947 (from 'binary digit'), and formalized by Claude Shannon in his 1948 information theory papers, the bit is the foundation of all modern computing, telecommunications, and information storage. Bit-rates measure data transmission speeds (megabits per second, Mbps, for internet connections), and information-theory entropy is calculated in bits. A single yes/no question carries 1 bit of information; an 8-bit byte represents 256 possible values. The bit relates to the byte (8 bits = 1 byte), the kilobit (1,000 bits = 1 kbit, used in telecom), and the kibibit (1,024 bits = 1 Kibit, used in computing). Modern fiber-optic networks transmit terabits per second.
- Network throughput (bps, Mbps, Gbps)
- Cryptography key lengths (e.g., 256-bit AES)
- Compression algorithms and file header specs
Home fibre: 100 Mbps = 100,000,000 bps. AES key: 256 bits. MP3 bit rate: 128–320 kbps.