About 416,000 results
Open links in new tab
  1. XOR gate - Wikipedia

    The logic symbols ⊕, J pq, and ⊻ can be used to denote an XOR operation in algebraic expressions. C-like languages use the caret symbol ^ to denote bitwise XOR. (Note that the caret does not denote …

  2. XOR Calculator Online

    Calculate the exclusive or (XOR) with a simple web-based calculator. Input and output in binary, decimal, hexadecimal or ASCII.

  3. math - What does the ^ (XOR) operator do? - Stack Overflow

    Mar 6, 2021 · ^ is the Python bitwise XOR operator. It is how you spell XOR in python: XOR stands for exclusive OR. It is used in cryptography because it let's you 'flip' the bits using a mask in a …

  4. XOR Gate - GeeksforGeeks

    Jul 23, 2025 · The XOR or Exclusive OR Gate is a special type of logic gate used in digital electronics to perform the exclusive OR operation. This gate takes two inputs and produces an output depending …

  5. XOR -- from Wolfram MathWorld

    Dec 3, 2025 · XOR is a connective in logic known as the "exclusive or," or exclusive disjunction. It yields true if exactly one (but not both) of two conditions is true.

  6. XOR Calculator - Binary XOR Operation Calculator

    Calculate XOR (exclusive OR) operations on binary numbers instantly. Free online XOR calculator for binary operations.

  7. Understanding the XOR Operator: A Powerful Tool in Computing

    Jan 6, 2025 · Represented by the symbol ^ in many programming languages and ⊕ in mathematical notation, XOR is a logical operation that is widely used in various applications, including …

  8. XOR Gate - Truth table, Symbol, Diagram & Applications - Easy …

    In this lecture, we are going to learn about the Logic of the XOR Gate in every detail. We will discuss what is XOR gate is, the symbol of the XOR gate, the XOR gate truth table, the XOR gate boolean …

  9. XOR Gate & XNOR Gate: Truth Table, Symbol & Boolean Expression ...

    Feb 24, 2012 · A SIMPLE explanation of XOR & XNOR Gates. Learn what XOR gates & XNOR gates are, their truth tables, symbols, applications, and boolean expressions. We also discuss exactly ...

  10. Bitwise XOR (^) - JavaScript - MDN

    Jul 8, 2025 · The bitwise XOR (^) operator returns a number or BigInt whose binary representation has a 1 in each bit position for which the corresponding bits of either but not both operands are 1.