..
The result of XOR operation in Binary..
The result of XOR operation in Octal..
The result of XOR operation in Decimal..
The result of XOR operation in Hex..
The result of XOR operation in Ascii..
The base of the input numbers either explicitly specified or automatically detectedPerform binary bitwise XNOR 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
XOR two binary numbers
1000 ⊕ 1111 = 111
XOR two octal numbers
1000 ⊕ 7777 = 6777
XOR two decimal numbers
1000 ⊕ 9999 = 9447
XOR two hex numbers
1000 ⊕ FFFF = EFFF
XOR 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 | True |
False | True | True |
True | True | False |
A | B | Result |
---|---|---|
0 | 0 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 0 |
XOR of text is calculated by first converting each character into it's equivalent ASCII character code. The same process is applied to each line of the input until all that remains are decimal numbers. These numbers are then converted into binary and bitwise XOR is applied on them. The final output is again converted back to ASCII for you to see.
Comments 3
Partho Sarathi
This is my most favorite tool
Santiago
No working...ascii XOR for inputs..!!!
1) A1
2) 2
3) 1
In 2) and 3) there is a space before the number. the result should be A2 but the result is B1. So how can we solve it?
Partho Sarathi
I have added a new parameter to explicitly specify the delimiter. For the following input:-
A1
2
1
Specify, ASCII as the Input Base and 'New Line' as Delimiter. The leading spaces before the last two parameters will now be preserved and you should get the desired output of A2. Check the Calculation table for detailed information on the processing stages.
You can also delimit the inputs with comma or semi colon. A space will not work in this scenario, though.