Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Left Shift: <<
Right Shift: >>
Bitwise And: &
Bitwise OR: |
Bitwise Not: ~
Bitwise Xor: ^
NOT
X | Q
----------
0 | 1
1 | 0
AND NAND
X Y | Q X Y | Q
---------- ----------
0 0 | 0 0 0 | 1
0 1 | 0 0 1 | 1
1 0 | 0 1 0 | 1
1 1 | 1 1 1 | 0
OR NOR
X Y | Q X Y | Q
---------- ----------
0 0 | 0 0 0 | 1
0 1 | 1 0 1 | 0
1 0 | 1 1 0 | 0
1 1 | 1 1 1 | 0
XOR XNOR
X Y | Q X Y | Q
---------- ----------
0 0 | 0 0 0 | 1
0 1 | 1 0 1 | 0
1 0 | 1 1 0 | 0
1 1 | 0 1 1 | 1
00100110
00010111
00100110
00010111
--------
00000110
00100110
00010111
--------
00110111
00100110
00010111
--------
00110001