bps to KiBps Calculator - Convert Bits Per Second to Kibibytes Per Second

Conversion History (Last 6)
Excel Formula to convert from bps to KiBps
Apply the formula as shown below to convert from Bits Per Second to Kibibytes Per Second.
A | B | C | |
---|---|---|---|
1 | Bits Per Second (bps) | Kibibytes Per Second (KiBps) | |
2 | 1 | =A2 * 0.0001220703125 | |
3 |
Download - Excel Template for Bits Per Second to Kibibytes Per Second Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for bps to KiBps Conversion
You can use below code to convert any value in Bits Per Second to Kibibytes Per Second in Python.
bitsPerSecond = int(input("Enter Bits Per Second: "))
kibibytesPerSecond = bitsPerSecond / (8*1024)
print("{} Bits Per Second = {} Kibibytes Per Second".format(bitsPerSecond,kibibytesPerSecond))
kibibytesPerSecond = bitsPerSecond / (8*1024)
print("{} Bits Per Second = {} Kibibytes Per Second".format(bitsPerSecond,kibibytesPerSecond))
The first line of code will prompt the user to enter the Bits Per Second as an input. The value of Kibibytes Per Second is calculated on the next line, and the code in third line will display the result.
bps to kBps to KiBps Conversion Table
Bits Per Second (bps) | Kilobyte Per Second (kBps) | Kibibyte Per Second (KiBps) |
---|---|---|
1 bps | 0.000125 kBps | 0.0001220703125 KiBps |
2 bps | 0.00025 kBps | 0.000244140625 KiBps |
3 bps | 0.000375 kBps | 0.0003662109375 KiBps |
4 bps | 0.0005 kBps | 0.00048828125 KiBps |
5 bps | 0.000625 kBps | 0.0006103515625 KiBps |
6 bps | 0.00075 kBps | 0.000732421875 KiBps |
7 bps | 0.000875 kBps | 0.0008544921875 KiBps |
8 bps | 0.001 kBps | 0.0009765625 KiBps |
9 bps | 0.001125 kBps | 0.0010986328125 KiBps |
10 bps | 0.00125 kBps | 0.001220703125 KiBps |
100 bps | 0.0125 kBps | 0.01220703125 KiBps |
256 bps | 0.032 kBps | 0.03125 KiBps |
500 bps | 0.0625 kBps | 0.06103515625 KiBps |
512 bps | 0.064 kBps | 0.0625 KiBps |
1000 bps | 0.125 kBps | 0.1220703125 KiBps |
1024 bps | 0.128 kBps | 0.125 KiBps |
2048 bps | 0.256 kBps | 0.25 KiBps |
5000 bps | 0.625 kBps | 0.6103515625 KiBps |
10000 bps | 1.25 kBps | 1.220703125 KiBps |