HTML Entity for N-Ary Logical OR (⋁)

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

What You'll Learn

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

Render it with the named entity ⋁, ⋁, ⋁, or CSS escape \22C1. Pair with N-Ary Logical AND (⋀, ⋀) in the n-ary logic operator family, and distinguish it from binary OR ∨ (∨).

⚡ Quick Reference — N-Ary Logical OR

Unicode U+22C1

Mathematical Operators

Hex Code ⋁

Hexadecimal reference

HTML Code ⋁

Decimal reference

Named Entity ⋁

Most readable in logic markup

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22C1";
  }
 </style>
</head>
<body>
<p>N-Ary Logical OR using Hexadecimal: &#x22C1;</p>
<p>N-Ary Logical OR using HTML Code: &#8897;</p>
<p>N-Ary Logical OR using Named Entity: &bigvee;</p>
<p id="point">N-Ary Logical OR using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22C1 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 OR (⋁) in logic and Boolean algebra contexts:

Inline formula iI Pi means at least one Pi is true.
Existential link x ⇒ ⋁i Qi(x)
Large glyph
vs binary vee ⋁ n-ary   ∨ binary
Entity refs &bigvee; &#x22C1; &#8897; \22C1

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x22C1; uses the Unicode hexadecimal value 22C1. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\22C1 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+22C1 in Mathematical Operators. Related: binary OR ∨ (&vee;).

Use Cases

The N-Ary Logical OR symbol (⋁) is commonly used in:

🔢 Boolean algebra

Disjunction over indexed families of logical propositions.

📊 Formal logic

Existential-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 &bigvee; for readable n-ary OR 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 or”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &bigvee; (⋁) with &vee; (∨)
  • Assume HTML entities perform logical evaluation
  • Put CSS escape \22C1 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 ⋁

&#x22C1; &#8897; &bigvee;
2

For CSS stylesheets, use the escape in the content property

\22C1
3

Unicode U+22C1 — N-ARY LOGICAL OR

4

&bigvee; is the standard named entity

5

Related: N-Ary Logical AND (⋀) and binary OR (∨, &vee;)

❓ Frequently Asked Questions

Use &bigvee; (named), &#x22C1; (hex), &#8897; (decimal), or \22C1 in CSS content. All produce ⋁.
U+22C1 (N-ARY LOGICAL OR). Mathematical Operators block (U+2200–U+22FF). Hex 22C1, decimal 8897. Named entity: &bigvee;.
When documenting disjunction over indexed propositions in Boolean algebra, formal logic, CS proofs, and academic mathematical content.
⋁ (U+22C1, &bigvee;) is the n-ary logical OR operator over indexed families. ∨ (U+2228, &vee;) is binary logical OR of two operands. They look similar but serve different notation contexts.
HTML entities (&#8897;, &#x22C1;, or &bigvee;) go directly in markup. The CSS escape \22C1 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