Online calculator for bitwise AND operation on text in ASCII or numbers in Binary, Octal, Decimal, & Hex formats.
Multiple input numbers (even greater than 2) are supported by applying bitwise operations successively on the intermediate results.
- Binary Result:
 The result of AND operation in Binary- ..
- Octal Result:
 The result of AND operation in Octal- ..
- Decimal Result:
 The result of AND operation in Decimal- ..
- Hex Result:
 The result of AND operation in Hex- ..
- Ascii Result:
 The result of AND operation in Ascii- ..
- Input Base:
 The base of the input numbers either explicitly specified or automatically detected- ..
Perform binary bitwise n a n d operation on text in a s c i i or numbers in binary, octal, decimal and hex formats
View ToolSettings Explained
- 1. Input Base- Choose the base of the input numbers - Auto Detect- In this mode, number base is automatically detected based on the input provided - Binary (base 2)- AND two binary numbers - 1000 ∧ 1111 = 1000- Octal (base 8)- AND two octal numbers - 1000 ∧ 7777 = 1000- Decimal (base 10)- AND two decimal numbers - 1000 ∧ 9999 = 776- Hex (base 16)- AND two hex numbers - 1000 ∧ FFFF = 1000- Ascii (base 256)- AND two ascii strings - a ∧ B = @
- 2. Delimiter- Choose the delimiter used to separate each item 
- 3. Auto Cleansing- If selected, automatic cleansing is performed on the data 
- 4. Calculate Intermediate Results- If selected, intermediate results are calculated (takes more time) 
AND Truth Table
Boolean Operations
| A | B | Result | 
|---|---|---|
| False | False | False | 
| True | False | False | 
| False | True | False | 
| True | True | True | 
Bit Operations
| A | B | Result | 
|---|---|---|
| 0 | 0 | 0 | 
| 1 | 0 | 0 | 
| 0 | 1 | 0 | 
| 1 | 1 | 1 | 
History
- Mar 25, 2018
- Tool Launched
Comments 0