xutil.dev
Login

Bit Operation Visualizer

Visualize bitwise AND, OR, XOR, NOT, and shift operations at the binary level online. Shows color-coded bit changes in 8, 16, or 32-bit width — free CS learning tool

Input
Bit width:8-bit16-bit32-bit
Operation
AND (&)OR (|)XOR (^)NOT A (~)NOT B (~)Left Shift (<<)Right Shift (>>)
Result
A:
0
0
1
0
1
0
1
0
42 / 0x2A
B:
0
0
0
1
1
0
1
1
27 / 0x1B
Res:
0
0
0
0
1
0
1
0
10 / 0x0A
Yellow = changed bits