Binary Calculator
Perform binary arithmetic and bitwise operations with results in binary, decimal, and hex.
AdSense
Top banner
Input A (binary)
Decimal: 22 | Hex: 0x16
Input B (binary)
Decimal: 13 | Hex: 0xD
Operation
Result: 10110 + 1101
Binary
100011
Decimal
35
Hexadecimal
0x23
Bitwise Operation Reference
| A | B | AND | OR | XOR |
|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 |
| 0 | 1 | 0 | 1 | 1 |
| 1 | 0 | 0 | 1 | 1 |
| 1 | 1 | 1 | 1 | 0 |
Was this page helpful?