Bits und Bytes
! (NOT)
<< (Bitwise Left Shift)
>> (Bitwise Right Shift)
+ (Addition)
- (Subtraction)
* (Multiplication)
/ (Division)
AND / NAND
OR / NOR
XOR / XNOR
Options
Bits
8 Bit (1 Byte)
16 Bit (2 Byte)
32 Bit (4 Byte)
64 Bit (8 Byte)
AC
Hexadecimal(16)
Octal(8)
Quaternary(4)
Ternary(3)
Operand 1
!
<<
>>
Operand 2
!
<<
>>
Result
+
-
*
/
(&) AND
(|) OR
(^) XOR
(
&
) NAND
(
|
) NOR
(
^
) XNOR