Mibit to GB Calculator - Convert Mebibits to Gigabytes

Conversion History (Last 6)
Excel Formula to convert from Mibit to GB
Apply the formula as shown below to convert from Mebibit to Gigabyte.
A | B | C | |
---|---|---|---|
1 | Mebibit (Mibit) | Gigabyte (GB) | |
2 | 1 | =A2 * 0.000131072 | |
3 |
Download - Excel Template for Mebibit 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 Mibit to GB Conversion
You can use below code to convert any value in Mebibit to Gigabyte in Python.
mebibit = int(input("Enter Mebibit: "))
gigabyte = mebibit * (1024*1024) / (8*1000*1000*1000)
print("{} Mebibit = {} Gigabyte".format(mebibit,gigabyte))
gigabyte = mebibit * (1024*1024) / (8*1000*1000*1000)
print("{} Mebibit = {} Gigabyte".format(mebibit,gigabyte))
The first line of code will prompt the user to enter the Mebibit as an input. The value of Gigabyte is calculated on the next line, and the code in third line will display the result.
Mibit to GB to GiB Conversion Table
Mebibit (Mibit) | Gigabyte (GB) | Gibibyte (GiB) |
---|---|---|
1 Mibit | 0.000131072 GB | 0.0001220703125 GiB |
2 Mibit | 0.000262144 GB | 0.000244140625 GiB |
3 Mibit | 0.000393216 GB | 0.0003662109375 GiB |
4 Mibit | 0.000524288 GB | 0.00048828125 GiB |
5 Mibit | 0.00065536 GB | 0.0006103515625 GiB |
6 Mibit | 0.000786432 GB | 0.000732421875 GiB |
7 Mibit | 0.000917504 GB | 0.0008544921875 GiB |
8 Mibit | 0.001048576 GB | 0.0009765625 GiB |
9 Mibit | 0.001179648 GB | 0.0010986328125 GiB |
10 Mibit | 0.00131072 GB | 0.001220703125 GiB |
100 Mibit | 0.0131072 GB | 0.01220703125 GiB |
256 Mibit | 0.033554432 GB | 0.03125 GiB |
500 Mibit | 0.065536 GB | 0.06103515625 GiB |
512 Mibit | 0.067108864 GB | 0.0625 GiB |
1000 Mibit | 0.131072 GB | 0.1220703125 GiB |
1024 Mibit | 0.134217728 GB | 0.125 GiB |
2048 Mibit | 0.268435456 GB | 0.25 GiB |
5000 Mibit | 0.65536 GB | 0.6103515625 GiB |
10000 Mibit | 1.31072 GB | 1.220703125 GiB |