A “1TB” drive often shows as ~931 in Windows because drive labels use decimal (TB) while many OS tools report using binary (GiB/TiB).
Converter
Formulas
| Conversion | Formula | Notes |
|---|---|---|
| GB → GiB | GiB = GB × 10⁹ ÷ 2³⁰ | Convert to bytes, then divide by binary unit size |
| TB → TiB | TiB = TB × 10¹² ÷ 2⁴⁰ | Rule of thumb: TB × 0.909 ≈ TiB |
| GiB → GB | GB = GiB × 2³⁰ ÷ 10⁹ | Rule of thumb: GiB × 1.074 ≈ GB |
| TiB → TB | TB = TiB × 2⁴⁰ ÷ 10¹² | Rule of thumb: TiB × 1.100 ≈ TB |
What’s the difference?
Storage is counted in bytes. The confusion comes from two systems:
The classic example: “1TB” → ~931GiB
A 1TB drive (decimal) contains 1,000,000,000,000 bytes. If your OS reports in GiB (binary), it divides by 2³⁰ = 1,073,741,824:
When should you care?
- Buying drives: labels are usually decimal (GB/TB).
- Backup planning: compare in bytes or convert TB ↔ TiB to avoid surprises.
- NAS / RAID: usable space is further affected by parity/overhead (in addition to unit differences).
Common drive sizes (unit-only)
| Label (decimal) | Bytes | Binary shown | Math |
|---|---|---|---|
| 256 GB | 256 × 10⁹ | ~238.42 GiB | 256e9 ÷ 2³⁰ |
| 512 GB | 512 × 10⁹ | ~476.84 GiB | 512e9 ÷ 2³⁰ |
| 1 TB | 1 × 10¹² | ~931.32 GiB | 1e12 ÷ 2³⁰ |
| 2 TB | 2 × 10¹² | ~1.82 TiB | 2e12 ÷ 2⁴⁰ |
| 4 TB | 4 × 10¹² | ~3.64 TiB | 4e12 ÷ 2⁴⁰ |
Cheat sheet
| Decimal | ≈ Binary | Binary | ≈ Decimal |
|---|---|---|---|
| 1 GB | 0.93 GiB | 1 GiB | 1.07 GB |
| 1 TB | 0.91 TiB | 1 TiB | 1.10 TB |
| 10 TB | 9.09 TiB | 10 TiB | 11.00 TB |
FAQ
Is my drive missing space? Usually no — it’s the same bytes reported using different units.
Why do drive makers use decimal? Decimal aligns with SI prefixes (kilo = 1000), and it’s standard for marketing and manufacturing.
Why does the OS use binary? Computers naturally work in powers of two, so GiB/TiB align with that math.
Does formatting reduce size? Yes. File system metadata, reserved space, and partitions reduce usable space slightly.
What should I use for planning? Convert everything to bytes, or use TB↔TiB conversions when comparing drive labels to OS displays.