HTML Entity for N-Ary Logical AND (⋀)

Intermediate
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22C0

What You'll Learn

How to display the N-Ary Logical AND symbol (⋀) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+22C0 (N-ARY LOGICAL AND) in the Mathematical Operators block (U+2200–U+22FF)—the operator for the conjunction of an indexed family of logical propositions in Boolean algebra and formal logic.

Render it with the named entity ⋀, ⋀, ⋀, or CSS escape \22C0. Pair with N-Ary Intersection (⋂, ⋂) in the n-ary operator family, and distinguish it from binary AND ∧ (∧).

⚡ Quick Reference — N-Ary Logical AND

Unicode U+22C0

Mathematical Operators

Hex Code ⋀

Hexadecimal reference

HTML Code ⋀

Decimal reference

Named Entity ⋀

Most readable in logic markup

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22C0
Hex code       ⋀
HTML code      ⋀
Named entity   ⋀
CSS code       \22C0
Meaning        N-ary logical AND (indexed conjunction)
Related        U+2227 = binary wedge (∧, ∧)
               U+22C1 = n-ary OR (⋁, ⋁)
1

Complete HTML Example

This example demonstrates the N-Ary Logical AND (⋀) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22C0";
  }
 </style>
</head>
<body>
<p>N-Ary Logical AND using Hexadecimal: &#x22C0;</p>
<p>N-Ary Logical AND using HTML Code: &#8896;</p>
<p>N-Ary Logical AND using Named Entity: &bigwedge;</p>
<p id="point">N-Ary Logical AND using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22C0 is widely supported wherever Unicode Mathematical Operators render correctly:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the N-Ary Logical AND (⋀) in logic and Boolean algebra contexts:

Inline formula iI Pi means all Pi are true.
Quantifier link x ⇒ ⋀i Qi(x)
Large glyph
vs binary wedge ⋀ n-ary   ∧ binary
Entity refs &bigwedge; &#x22C0; &#8896; \22C0

🧠 How It Works

1

Named Entity

&bigwedge; is the HTML named entity for N-Ary Logical AND—often preferred in readable logic and Boolean algebra markup.

HTML markup
2

Hexadecimal Code

&#x22C0; uses the Unicode hexadecimal value 22C0. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8896; uses the decimal Unicode value 8896 to display the same character.

HTML markup
4

CSS Entity

\22C0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+22C0 in Mathematical Operators. Related: binary AND ∧ (&wedge;).

Use Cases

The N-Ary Logical AND symbol (⋀) is commonly used in:

🔢 Boolean algebra

Conjunction over indexed families of logical propositions.

📊 Formal logic

Universal-style aggregation in predicate and propositional logic.

📚 Academia

Logic textbooks, papers, and lecture notes on proof theory.

💻 CS education

Digital logic, circuit design, and algorithm correctness proofs.

🎓 Online courses

Discrete math and logic modules with web-based notation.

🌐 Reference guides

Unicode charts and HTML entity documentation.

💡 Best Practices

Do

  • Use &bigwedge; for readable n-ary AND markup
  • Pair with ⋁ and ∧ when documenting logic operator families
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Add aria-label (e.g. “n-ary logical and”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &bigwedge; (⋀) with &wedge; (∧)
  • Assume HTML entities perform logical evaluation
  • Put CSS escape \22C0 in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ⋀

&#x22C0; &#8896; &bigwedge;
2

For CSS stylesheets, use the escape in the content property

\22C0
3

Unicode U+22C0 — N-ARY LOGICAL AND

4

&bigwedge; is the standard named entity

5

Related: N-Ary Logical OR (⋁) and binary AND (∧, &wedge;)

❓ Frequently Asked Questions

Use &bigwedge; (named), &#x22C0; (hex), &#8896; (decimal), or \22C0 in CSS content. All produce ⋀.
U+22C0 (N-ARY LOGICAL AND). Mathematical Operators block (U+2200–U+22FF). Hex 22C0, decimal 8896. Named entity: &bigwedge;.
When documenting conjunction over indexed propositions in Boolean algebra, formal logic, CS proofs, and academic mathematical content.
⋀ (U+22C0, &bigwedge;) is the n-ary logical AND operator over indexed families. ∧ (U+2227, &wedge;) is binary logical AND of two operands. They look similar but serve different notation contexts.
HTML entities (&#8896;, &#x22C0;, or &bigwedge;) go directly in markup. The CSS escape \22C0 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — logic operators, math symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful