Bitwise Calculator
Perform bitwise operations with visual steps
Number 1:
Number 2:
Result:
Binary:
Decimal:
Hexadecimal:
Bitwise Operations:
- AND (&): Sets each bit to 1 if both bits are 1
- OR (|): Sets each bit to 1 if at least one bit is 1
- XOR (^): Sets each bit to 1 if exactly one bit is 1
- NOT (~): Inverts all bits
- Left Shift (<<): Shifts bits left by specified positions
- Right Shift (>>): Shifts bits right by specified positions