..
The result of AND operation in Binary..
The result of AND operation in Octal..
The result of AND operation in Decimal..
The result of AND operation in Hex..
The result of AND operation in Ascii..
The base of the input numbers either explicitly specified or automatically detectedPerform binary bitwise NAND operation on text in ASCII or numbers in Binary, Octal, Decimal and Hex formats
View ToolChoose the base of the input numbers
In this mode, number base is automatically detected based on the input provided
AND two binary numbers
1000 ∧ 1111 = 1000
AND two octal numbers
1000 ∧ 7777 = 1000
AND two decimal numbers
1000 ∧ 9999 = 776
AND two hex numbers
1000 ∧ FFFF = 1000
AND two ascii strings
a ∧ B = @
Choose the delimiter used to separate each item
If selected, automatic cleansing is performed on the data
If selected, intermediate results are calculated (takes more time)
A | B | Result |
---|---|---|
False | False | False |
True | False | False |
False | True | False |
True | True | True |
A | B | Result |
---|---|---|
0 | 0 | 0 |
1 | 0 | 0 |
0 | 1 | 0 |
1 | 1 | 1 |
Comments 0