kB to MiB Calculator - Convert Kilobytes to Mebibytes

Conversion History (Last 6)
Excel Formula to convert from kB to MiB
Apply the formula as shown below to convert from Kilobyte to Mebibyte.
A | B | C | |
---|---|---|---|
1 | Kilobyte (kB) | Mebibyte (MiB) | |
2 | 1 | =A2 * 0.00095367431640625 | |
3 |
Download - Excel Template for Kilobyte to Mebibyte 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 MiB Conversion
You can use below code to convert any value in Kilobyte to Mebibyte in Python.
kilobyte = int(input("Enter Kilobyte: "))
mebibyte = kilobyte * 1000 / (1024*1024)
print("{} Kilobyte = {} Mebibyte".format(kilobyte,mebibyte))
mebibyte = kilobyte * 1000 / (1024*1024)
print("{} Kilobyte = {} Mebibyte".format(kilobyte,mebibyte))
The first line of code will prompt the user to enter the Kilobyte as an input. The value of Mebibyte is calculated on the next line, and the code in third line will display the result.
kB to MB to MiB Conversion Table
Kilobyte (kB) | Megabyte (MB) | Mebibyte (MiB) |
---|---|---|
1 kB | 0.001 MB | 0.00095367431640625 MiB |
2 kB | 0.002 MB | 0.0019073486328125 MiB |
3 kB | 0.003 MB | 0.00286102294921875 MiB |
4 kB | 0.004 MB | 0.003814697265625 MiB |
5 kB | 0.005 MB | 0.00476837158203125 MiB |
6 kB | 0.006 MB | 0.0057220458984375 MiB |
7 kB | 0.007 MB | 0.00667572021484375 MiB |
8 kB | 0.008 MB | 0.00762939453125 MiB |
9 kB | 0.009 MB | 0.00858306884765625 MiB |
10 kB | 0.01 MB | 0.0095367431640625 MiB |
100 kB | 0.1 MB | 0.095367431640625 MiB |
256 kB | 0.256 MB | 0.244140625 MiB |
500 kB | 0.5 MB | 0.476837158203125 MiB |
512 kB | 0.512 MB | 0.48828125 MiB |
1000 kB | 1 MB | 0.95367431640625 MiB |
1024 kB | 1.024 MB | 0.9765625 MiB |
2048 kB | 2.048 MB | 1.953125 MiB |
5000 kB | 5 MB | 4.76837158203125 MiB |
10000 kB | 10 MB | 9.5367431640625 MiB |