Gbit to MB Calculator - Convert Gigabits to Megabytes

Conversion History (Last 6)
Excel Formula to convert from Gbit to MB
Apply the formula as shown below to convert from Gigabit to Megabyte.
A | B | C | |
---|---|---|---|
1 | Gigabit (Gbit) | Megabyte (MB) | |
2 | 1 | =A2 * 125 | |
3 |
Download - Excel Template for Gigabit 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 Gbit to MB Conversion
You can use below code to convert any value in Gigabit to Megabyte in Python.
gigabit = int(input("Enter Gigabit: "))
megabyte = gigabit * 1000 / 8
print("{} Gigabit = {} Megabyte".format(gigabit,megabyte))
megabyte = gigabit * 1000 / 8
print("{} Gigabit = {} Megabyte".format(gigabit,megabyte))
The first line of code will prompt the user to enter the Gigabit as an input. The value of Megabyte is calculated on the next line, and the code in third line will display the result.
Gbit to MB to MiB Conversion Table
Gigabit (Gbit) | Megabyte (MB) | Mebibyte (MiB) |
---|---|---|
1 Gbit | 125 MB | 119.20928955078125 MiB |
2 Gbit | 250 MB | 238.4185791015625 MiB |
3 Gbit | 375 MB | 357.62786865234375 MiB |
4 Gbit | 500 MB | 476.837158203125 MiB |
5 Gbit | 625 MB | 596.04644775390625 MiB |
6 Gbit | 750 MB | 715.2557373046875 MiB |
7 Gbit | 875 MB | 834.46502685546875 MiB |
8 Gbit | 1,000 MB | 953.67431640625 MiB |
9 Gbit | 1,125 MB | 1,072.88360595703125 MiB |
10 Gbit | 1,250 MB | 1,192.0928955078125 MiB |
100 Gbit | 12,500 MB | 11,920.928955078125 MiB |
256 Gbit | 32,000 MB | 30,517.578125 MiB |
500 Gbit | 62,500 MB | 59,604.644775390625 MiB |
512 Gbit | 64,000 MB | 61,035.15625 MiB |
1000 Gbit | 125,000 MB | 119,209.28955078125 MiB |
1024 Gbit | 128,000 MB | 122,070.3125 MiB |
2048 Gbit | 256,000 MB | 244,140.625 MiB |
5000 Gbit | 625,000 MB | 596,046.44775390625 MiB |
10000 Gbit | 1,250,000 MB | 1,192,092.8955078125 MiB |