Bitwise Calculator

Perform binary operations on integers.

Operands
Results
OperationDecimalBinaryHex
A AND B810008
A OR B141110e
A XOR B61106
NOT A-1111111111111111111111111111110101fffffff5

About the Bitwise Calculator

This tool is for developers and students working with low-level programming concepts. It allows you to perform bitwise operations—such as AND, OR, XOR, and NOT—on two integer inputs. The calculator shows you the results of these operations in decimal, binary, and hex formats, helping you understand how these fundamental computer operations work.

How to Use This Tool

  1. Enter Numbers: Input two integer values into the 'Operand A' and 'Operand B' fields.
  2. Live Calculation: The tool will instantly calculate the results of the AND, OR, XOR, and NOT operations.
  3. View Results: The results table displays each operation and the output in multiple number bases for easy comparison.