Binary Calculator
Perform binary arithmetic and bitwise operations with results in binary, decimal, and hex.
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 |
Related tools
IEEE 754 Float VisualizerMath
Visualize IEEE 754 float representation with color-coded sign, exponent, and mantissa.
Text to BinaryEncoding
Convert text to binary representation (8-bit per character) and back.
Binary Encoder/DecoderEncoding
Encode/decode UTF-8 text to/from binary.
MessagePack ViewerConverter
Decode Base64-encoded MessagePack data and view as formatted JSON.
Scientific CalculatorMath
Perform scientific calculations with trigonometric, logarithmic, and power functions.
Matrix CalculatorMath
Add, subtract, multiply, transpose, and find determinants of matrices.