GiB to MB Calculator - Convert Gibibytes to Megabytes

Conversion History (Last 6)
Excel Formula to convert from GiB to MB
Apply the formula as shown below to convert from Gibibyte to Megabyte.
A | B | C | |
---|---|---|---|
1 | Gibibyte (GiB) | Megabyte (MB) | |
2 | 1 | =A2 * 1073.741824 | |
3 |
Download - Excel Template for Gibibyte to Megabyte 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 MB Conversion
You can use below code to convert any value in Gibibyte to Megabyte in Python.
gibibyte = int(input("Enter Gibibyte: "))
megabyte = gibibyte * (1024*1024*1024) / (1000*1000)
print("{} Gibibyte = {} Megabyte".format(gibibyte,megabyte))
megabyte = gibibyte * (1024*1024*1024) / (1000*1000)
print("{} Gibibyte = {} Megabyte".format(gibibyte,megabyte))
The first line of code will prompt the user to enter the Gibibyte as an input. The value of Megabyte is calculated on the next line, and the code in third line will display the result.
GiB to MB to MiB Conversion Table
Gibibyte (GiB) | Megabyte (MB) | Mebibyte (MiB) |
---|---|---|
1 GiB | 1,073.741824 MB | 1,024 MiB |
2 GiB | 2,147.483648 MB | 2,048 MiB |
3 GiB | 3,221.225472 MB | 3,072 MiB |
4 GiB | 4,294.967296 MB | 4,096 MiB |
5 GiB | 5,368.70912 MB | 5,120 MiB |
6 GiB | 6,442.450944 MB | 6,144 MiB |
7 GiB | 7,516.192768 MB | 7,168 MiB |
8 GiB | 8,589.934592 MB | 8,192 MiB |
9 GiB | 9,663.676416 MB | 9,216 MiB |
10 GiB | 10,737.41824 MB | 10,240 MiB |
100 GiB | 107,374.1824 MB | 102,400 MiB |
256 GiB | 274,877.906944 MB | 262,144 MiB |
500 GiB | 536,870.912 MB | 512,000 MiB |
512 GiB | 549,755.813888 MB | 524,288 MiB |
1000 GiB | 1,073,741.824 MB | 1,024,000 MiB |
1024 GiB | 1,099,511.627776 MB | 1,048,576 MiB |
2048 GiB | 2,199,023.255552 MB | 2,097,152 MiB |
5000 GiB | 5,368,709.12 MB | 5,120,000 MiB |
10000 GiB | 10,737,418.24 MB | 10,240,000 MiB |