GiB to GB Calculator - Convert Gibibytes to Gigabytes

Conversion History (Last 6)
Excel Formula to convert from GiB to GB
Apply the formula as shown below to convert from Gibibyte to Gigabyte.
A | B | C | |
---|---|---|---|
1 | Gibibyte (GiB) | Gigabyte (GB) | |
2 | 1 | =A2 * 1.073741824 | |
3 |
Download - Excel Template for Gibibyte to Gigabyte Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for GiB to GB Conversion
You can use below code to convert any value in Gibibyte to Gigabyte in Python.
gibibyte = int(input("Enter Gibibyte: "))
gigabyte = gibibyte * (1024*1024*1024) / (1000*1000*1000)
print("{} Gibibyte = {} Gigabyte".format(gibibyte,gigabyte))
gigabyte = gibibyte * (1024*1024*1024) / (1000*1000*1000)
print("{} Gibibyte = {} Gigabyte".format(gibibyte,gigabyte))
The first line of code will prompt the user to enter the Gibibyte as an input. The value of Gigabyte is calculated on the next line, and the code in third line will display the result.
GiB to GB Conversion Table
Gibibyte (GiB) | Gigabyte (GB) |
---|---|
1 GiB | 1.073741824 GB |
2 GiB | 2.147483648 GB |
3 GiB | 3.221225472 GB |
4 GiB | 4.294967296 GB |
5 GiB | 5.36870912 GB |
6 GiB | 6.442450944 GB |
7 GiB | 7.516192768 GB |
8 GiB | 8.589934592 GB |
9 GiB | 9.663676416 GB |
10 GiB | 10.73741824 GB |
100 GiB | 107.3741824 GB |
256 GiB | 274.877906944 GB |
500 GiB | 536.870912 GB |
512 GiB | 549.755813888 GB |
1000 GiB | 1,073.741824 GB |
1024 GiB | 1,099.511627776 GB |
2048 GiB | 2,199.023255552 GB |
5000 GiB | 5,368.70912 GB |
10000 GiB | 10,737.41824 GB |