Convert Data Storage Units
Smart Converter
Enter magnitude and units to start
Understanding Data Storage Units#
Data storage measures the amount of digital information that can be stored or processed. The fundamental unit of digital information is the bit (binary digit), which represents a 0 or a 1. However, the most common base unit is the Byte, which typically consists of 8 bits.
Decimal (SI) vs. Binary Prefixes#
One of the most common sources of confusion in computing is the difference between decimal prefixes (base 10) and binary prefixes (base 2).
Decimal Prefixes (powers of 10)
Commonly used by storage manufacturers (hard drives, SSDs) and in networking.
- 1 Kilobyte (kB) = 1,000 Bytes
- 1 Megabyte (MB) = 1,000,000 Bytes
- 1 Gigabyte (GB) = 1,000,000,000 Bytes
Binary Prefixes (powers of 2)
Commonly used by operating systems (like Windows) and when measuring RAM.
- 1 Kibibyte (KiB) = 1,024 Bytes
- 1 Mebibyte (MiB) = 1,024 KiB (1,048,576 Bytes)
- 1 Gibibyte (GiB) = 1,024 MiB (1,073,741,824 Bytes)
Common Data Storage Units#
| Unit | Symbol | Bits | Bytes |
|---|---|---|---|
| Bit | bit | 1 | 0.125 |
| Nibble | - | 4 | 0.5 |
| Byte | B | 8 | 1 |
| Kilobyte | kB | 8,000 | 1,000 |
| Kibibyte | KiB | 8,192 | 1,024 |
| Megabyte | MB | 8,000,000 | 1,000,000 |
| Mebibyte | MiB | 8,388,608 | 1,048,576 |
| Gigabyte | GB | 8e9 | 1e9 |
| Gibibyte | GiB | 8,589,934,592 | 1,073,741,824 |
Storage Capacity Examples#
To put these numbers into perspective, here are some typical file sizes and storage capacities:
- Plain Text Document: ~10 kB - 100 kB
- High-Quality Photo: 3 MB - 10 MB
- MP3 Song (4 min): 4 MB - 8 MB
- High-Definition Movie (90 min): 2 GB - 5 GB
- 4K Movie: 15 GB - 50 GB
- Modern AAA Video Game: 50 GB - 150 GB
- Standard Laptop HDD/SSD: 256 GB - 1 TB
- Personal Cloud Storage (Free Tier): 5 GB - 15 GB
Conversion Formulas#
- To convert Bits to Bytes: Divide by 8.
- To convert Bytes to Bits: Multiply by 8.
- To convert kB to KiB: Multiply by 1000 and divide by 1024.
- To convert GB to TB: Divide by 1000 (decimal) or 1024 (binary/OS).