..
The result of NAND operation in Binary..
The result of NAND operation in Octal..
The result of NAND operation in Decimal..
The result of NAND operation in Hex..
The result of NAND operation in Ascii..
The base of the input numbers either explicitly specified or automatically detectedPerform binary bitwise AND operation on text in ASCII or numbers in Binary, Octal, Decimal and Hex formats
View ToolNAND is a digital logic gate that outputs false or 0 only when the two binary bit inputs to it are 1 or HIGH.
You can remember the above result using one of these logics too:-
NAND is the complement of an AND gate. A unique property of NAND gate is that any other boolean function can implemented by combining multiple NAND gates. Checkout the Truth Table below for more information on the results.
Well, simply put it you can use it to calculate NAND online. The tool supports inputs in the common numerical bases Binary, Octal, Decimal, Hex & even ASCII. That means you can also NAND hex values or NAND strings in ASCII. This is done by first converting the inputs into their Binary equivalents then performing the NAND operation on them. Finally, the results are returned in all of the above numerical bases so that you can pick whichever ones you want.
The intermediate results are shown in a tabular format which can help you diagnose any problems you encountered while doing a manual NAND operation. In this table, your inputs are shown in their original form. If the input base is not binary then each translation of the inputs to binary is also shown in a different column.
Choose the base of the input numbers
In this mode, number base is automatically detected based on the input provided
NAND two binary numbers
1000 ⊼ 1111 = 111
NAND two octal numbers
1000 ⊼ 7777 = 6777
NAND two decimal numbers
1000 ⊼ 9999 = 15607
NAND two hex numbers
1000 ⊼ FFFF = EFFF
NAND 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 | True |
True | False | True |
False | True | True |
True | True | False |
A | B | Result |
---|---|---|
0 | 0 | 1 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 0 |
Comments 0