kB to Mbit Calculator - Convert Kilobytes to Megabits

Conversion History (Last 6)
Excel Formula to convert from kB to Mbit
Apply the formula as shown below to convert from Kilobyte to Megabit.
A | B | C | |
---|---|---|---|
1 | Kilobyte (kB) | Megabit (Mbit) | |
2 | 1 | =A2 * 0.008 | |
3 |
Download - Excel Template for Kilobyte to Megabit Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for kB to Mbit Conversion
You can use below code to convert any value in Kilobyte to Megabit in Python.
kilobyte = int(input("Enter Kilobyte: "))
megabit = kilobyte * 8 / 1000
print("{} Kilobyte = {} Megabit".format(kilobyte,megabit))
megabit = kilobyte * 8 / 1000
print("{} Kilobyte = {} Megabit".format(kilobyte,megabit))
The first line of code will prompt the user to enter the Kilobyte as an input. The value of Megabit is calculated on the next line, and the code in third line will display the result.
kB to Mbit to Mibit Conversion Table
Kilobyte (kB) | Megabit (Mbit) | Mebibit (Mibit) |
---|---|---|
1 kB | 0.008 Mbit | 0.00762939453125 Mibit |
2 kB | 0.016 Mbit | 0.0152587890625 Mibit |
3 kB | 0.024 Mbit | 0.02288818359375 Mibit |
4 kB | 0.032 Mbit | 0.030517578125 Mibit |
5 kB | 0.04 Mbit | 0.03814697265625 Mibit |
6 kB | 0.048 Mbit | 0.0457763671875 Mibit |
7 kB | 0.056 Mbit | 0.05340576171875 Mibit |
8 kB | 0.064 Mbit | 0.06103515625 Mibit |
9 kB | 0.072 Mbit | 0.06866455078125 Mibit |
10 kB | 0.08 Mbit | 0.0762939453125 Mibit |
100 kB | 0.8 Mbit | 0.762939453125 Mibit |
256 kB | 2.048 Mbit | 1.953125 Mibit |
500 kB | 4 Mbit | 3.814697265625 Mibit |
512 kB | 4.096 Mbit | 3.90625 Mibit |
1000 kB | 8 Mbit | 7.62939453125 Mibit |
1024 kB | 8.192 Mbit | 7.8125 Mibit |
2048 kB | 16.384 Mbit | 15.625 Mibit |
5000 kB | 40 Mbit | 38.14697265625 Mibit |
10000 kB | 80 Mbit | 76.2939453125 Mibit |