Binary
Binary is a number system that uses binary digits 1 and 0.
Binary table
A binary table can help you convert numbers into binary.
Nibble
| 8 | 4 | 2 | 1 | Equals |
|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 |
| 0 | 0 | 0 | 1 | 1 |
| 1 | 1 | 0 | 0 | 12 |
| 1 | 1 | 1 | 1 | 15 |
Byte
| 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 | Equals |
|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
| 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 192 |
| 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 255 |