Bit/Hour to Byte/Hour Calculator - Convert Bits Per Hour to Bytes Per Hour

Conversion History (Last 6)
Excel Formula to convert from Bit/Hour to Byte/Hour
Apply the formula as shown below to convert from Bits Per Hour to Bytes Per Hour.
A | B | C | |
---|---|---|---|
1 | Bits Per Hour (b/Hour) | Bytes Per Hour (B/Hour) | |
2 | 1 | =A2 * 0.125 | |
3 |
Download - Excel Template for Bits Per Hour to Bytes Per Hour Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for Bit/Hour to Byte/Hour Conversion
You can use below code to convert any value in Bits Per Hour to Bytes Per Hour in Python.
bitsPerHour = int(input("Enter Bits Per Hour: "))
bytesPerHour = bitsPerHour / 8
print("{} Bits Per Hour = {} Bytes Per Hour".format(bitsPerHour,bytesPerHour))
bytesPerHour = bitsPerHour / 8
print("{} Bits Per Hour = {} Bytes Per Hour".format(bitsPerHour,bytesPerHour))
The first line of code will prompt the user to enter the Bits Per Hour as an input. The value of Bytes Per Hour is calculated on the next line, and the code in third line will display the result.
Bit/Hour to Nibble/s to Bps Conversion Table
Bits Per Hour (Bit/Hour) | Nibble Per Second (Nibble/s) | Byte Per Second (Bps) |
---|---|---|
1 Bit/Hour | 0.25 Nibble/s | 0.125 Bps |
2 Bit/Hour | 0.5 Nibble/s | 0.25 Bps |
3 Bit/Hour | 0.75 Nibble/s | 0.375 Bps |
4 Bit/Hour | 1 Nibble/s | 0.5 Bps |
5 Bit/Hour | 1.25 Nibble/s | 0.625 Bps |
6 Bit/Hour | 1.5 Nibble/s | 0.75 Bps |
7 Bit/Hour | 1.75 Nibble/s | 0.875 Bps |
8 Bit/Hour | 2 Nibble/s | 1 Bps |
9 Bit/Hour | 2.25 Nibble/s | 1.125 Bps |
10 Bit/Hour | 2.5 Nibble/s | 1.25 Bps |
100 Bit/Hour | 25 Nibble/s | 12.5 Bps |
256 Bit/Hour | 64 Nibble/s | 32 Bps |
500 Bit/Hour | 125 Nibble/s | 62.5 Bps |
512 Bit/Hour | 128 Nibble/s | 64 Bps |
1000 Bit/Hour | 250 Nibble/s | 125 Bps |
1024 Bit/Hour | 256 Nibble/s | 128 Bps |
2048 Bit/Hour | 512 Nibble/s | 256 Bps |
5000 Bit/Hour | 1,250 Nibble/s | 625 Bps |
10000 Bit/Hour | 2,500 Nibble/s | 1,250 Bps |