Bitwise Calculator

Zewp.com

Input

Interactive Bits — A

Interactive Bits — B

Operations

Shift Operations

Bit Visualization

Quick Reference

AND & — both bits 1
OR | — either bit 1
XOR ^ — bits differ
NOT ~ — flip all bits
<< — left shift (×2)
>> — right shift (÷2)
>>> — unsigned right shift
NAND — NOT(A AND B)
NOR — NOT(A OR B)
XNOR — NOT(A XOR B)