Bitwise data manipulation tool
Bitwise Calculator - perform bit wise operation on Binary, Decimal and Hex numbers. It can perform AND, OR, XOR operation on these numbers.
Simply choose the type of the input number you have and enter it.
Bitwise Converters
Result:
Bitwise Operation | Binary result |
Number 1: | 0 |
Number 2: | 0 |
AND | 0 |
OR | 0 |
XOR | 0 |
Result:
Bitwise Operation | Decimal Result |
Number 1: | 0 |
Number 2: | 0 |
AND | 0 |
OR | 0 |
XOR | 0 |
Result:
Bitwise Operation | Hexadecimal Result |
Number 1: | 0 |
Number 2: | 0 |
AND | 0 |
OR | 0 |
XOR | 0 |
Bitwise AND operation table:
x | y | x AND y |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
If the first value and the second value are TRUE, then the result is TRUE, or 1. Otherwise the result is FALSE, or 0.
AND is represented by the symbol ampersand (&)
Bitwise OR operation table:
x | y | x OR y |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
If the first value OR the second value is TRUE, then the result is TRUE, or 1. Otherwise the result is FALSE, or 0.
OR is represented by the symbol pipe (|)
Bitwise XOR operation table:
x | y | x XOR y |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
If the either one of the input is TRUE, then the result is TRUE, or 1.
If both inputs are TRUE/FALSE then the result is FALSE, or 0.
XOR is represented by the symbol upwards caret (^)