XNOR Calculator

Feb 23, 2019

Online calculator for bitwise XNOR 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.


Input: Paste numbers or text below (at least two, 1 per line or separated by space, comma or semi-colon)

Settings


Binary Result:
..
The result of XNOR operation in Binary
Octal Result:
..
The result of XNOR operation in Octal
Decimal Result:
..
The result of XNOR operation in Decimal
Hex Result:
..
The result of XNOR operation in Hex
Ascii Result:
..
The result of XNOR operation in Ascii
Input Base:
..
The base of the input numbers either explicitly specified or automatically detected

Perform binary bitwise XOR operation on text in ASCII or numbers in Binary, Octal, Decimal and Hex formats

View Tool
Settings 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)

    XNOR two binary numbers

    1000 XNOR 1111 = 1000
    Octal (base 8)

    XNOR two octal numbers

    1000 XNOR 7777 = 1000
    Decimal (base 10)

    XNOR two decimal numbers

    1000 XNOR 9999 = 6936
    Hex (base 16)

    XNOR two hex numbers

    1000 XNOR FFFF = 1000
    Ascii (base 256)

    XNOR two ascii strings

    a XNOR 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)

XNOR Truth Table
Boolean Operations
ABResult
FalseFalseTrue
TrueFalseFalse
FalseTrueFalse
TrueTrueTrue
Bit Operations
ABResult
001
100
010
111
Comments 0

History
Mar 25, 2018
Tool Launched