Skip to Content

7486 IC – Quad 2-Input Exclusive-OR Gate (XOR) – DIP-14

🔲 7486 IC – Quad 2-Input Exclusive-OR Gate (XOR) – DIP-14

The 7486 is a standard TTL logic IC that contains four independent 2-input Exclusive-OR (XOR) gates. These gates are ideal for digital logic circuits that require parity checking, controlled inverting, or logic comparisons. The XOR gate outputs HIGH only when the number of HIGH inputs is odd (i.e., inputs are different).

⚙️ Technical Specifications

ParameterSpecification
IC Name7486 (SN74LS86, SN7486N, etc.)
Logic FunctionXOR (Exclusive-OR)
Number of Gates4 (Quad)
Inputs per Gate2
Output TypeTTL (push-pull)
Supply Voltage (Vcc)4.75V to 5.25V (typ. 5V)
Package TypeDIP-14
Operating Temp Range0°C to +70°C
Propagation Delay~22ns (typical)
Power ConsumptionLow

📌 Pinout (DIP-14)

PinFunctionPinFunction
1A114Vcc
2B113B4
3Y112A4
4A211Y4
5B210B3
6Y29A3
7GND8Y3

Each gate operates on the logic:

Y = A ⊕ B → Output is HIGH only when A ≠ B

🧠 Truth Table (For One XOR Gate)

ABY (A ⊕ B)
000
011
101
110

🛠️ Applications

  • Parity generation and checking

  • Bitwise comparison

  • Controlled inverters

  • Digital signal processing

  • Arithmetic circuits

🔌 Example Use with Arduino

You can use 7486 with Arduino to compare two digital inputs and send the output to an LED or logic analyzer.


// Arduino example to compare two inputs and show XOR result on output const int inputA = 2; const int inputB = 3; const int outputXOR = 13; void setup() { pinMode(inputA, INPUT); pinMode(inputB, INPUT); pinMode(outputXOR, OUTPUT); } void loop() { int a = digitalRead(inputA); int b = digitalRead(inputB); digitalWrite(outputXOR, a ^ b); // XOR operation }

🎥 YouTube Tutorial

15.00 LE 15.00 LE

This combination does not exist.

logic circuit