HTML Entity for Curly Logical OR (⋎)

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

What You'll Learn

How to display the Curly Logical OR symbol (⋎) in HTML using the named entity, numeric references, and CSS escapes. This character is U+22CE (CURLY LOGICAL OR) in the Mathematical Operators block (U+2200–U+22FF). It denotes logical disjunction in formal logic, mathematics, and computer science—for example, A ⋎ B.

You can use the named entity ⋎, hex ⋎, decimal ⋎, or CSS \22CE. ⋎ is the most readable option when writing HTML by hand. Do not confuse ⋎ with Logical OR U+2228 (∨, ∨) or Curly Logical AND U+22CF (⋏, ⋏).

⚡ Quick Reference — Curly Logical OR

Unicode U+22CE

Mathematical Operators (U+2200–U+22FF)

Hex Code ⋎

Hexadecimal reference

HTML Code ⋎

Decimal reference

Named Entity ⋎

Named entity (curly vee)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22CE
Hex code       ⋎
HTML code      ⋎
Named entity   ⋎
CSS code       \22CE
1

Complete HTML Example

This example demonstrates the Curly 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: "\22CE";
  }
 </style>
</head>
<body>
<p>Curly Logical OR using Hexadecimal: &#x22CE;</p>
<p>Curly Logical OR using HTML Code: &#8910;</p>
<p>Curly Logical OR using HTML Entity: &cuvee;</p>
<p id="point">Curly Logical OR using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22CE is supported in modern browsers; math fonts improve glyph quality:

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

👀 Live Preview

See Curly Logical OR (⋎) in logic and math contexts:

Logic A ⋎ B   &cuvee;
Named entity Logical OR: &cuvee;
Large glyph
vs other OR Curly: ⋎ (U+22CE)   Logical: ∨ (U+2228)   Curly AND: ⋏
Monospace refs &#x22CE; &#8910; &cuvee; \22CE

🧠 How It Works

1

Hexadecimal Code

&#x22CE; references code point U+22CE using hex digits 22CE.

HTML markup
2

Decimal HTML Code

&#8910; is the decimal equivalent (8910) for the same character.

HTML markup
3

Named HTML Entity

&cuvee; is the standard named entity for U+22CE—“curly vee” (cuvee) for the logical OR symbol.

HTML markup
4

CSS Entity

\22CE is the CSS escape for U+22CE, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Curly Logical OR glyph: . Unicode U+22CE is in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Curly Logical OR (⋎) commonly appears in:

📐 Logic & math

Formal logic expressions, Boolean algebra, and notation (e.g. A ⋎ B).

🔍 Formal semantics

Linguistics, philosophy, and semantics where disjunction uses ⋎.

💻 CS documentation

Technical docs and tutorials on logical operators and predicate logic.

📚 Lattice theory

Order theory and lattices where ⋎ denotes join (supremum).

📄 Academic papers

Research papers, theses, and textbooks with standard logic symbols.

🔤 Symbol references

Unicode tables and logic symbol documentation.

♿ Accessibility

Provide context (e.g. “A or B”) so screen readers convey logical meaning.

💡 Best Practices

Do

  • Prefer &cuvee; for readable HTML in logic and math content
  • Use math-oriented fonts (Cambria Math, STIX Two Math) for clearer glyphs
  • Keep entity style consistent within a document
  • Use \22CE only inside CSS content, not in HTML text nodes
  • Pair ⋎ with operands (e.g. A ⋎ B) for clear meaning

Don’t

  • Confuse U+22CE (⋎) with Logical OR U+2228 (∨) or Curly Logical AND U+22CF (⋏)
  • Use ⋎ when you mean programming || in prose without context
  • Assume &cuvee; is the same as &or;—they are different code points
  • Put CSS escape \22CE in HTML text nodes
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity is the easiest option

&cuvee;
2

Numeric references also render ⋎

&#x22CE; &#8910;
3

For CSS stylesheets, use the escape in the content property

\22CE
4

U+22CE CURLY LOGICAL OR

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &cuvee; (named entity), &#x22CE; (hex), &#8910; (decimal), or \22CE in CSS content. All produce ⋎.
U+22CE (Curly Logical OR). Mathematical Operators (U+2200–U+22FF). Hex 22CE, decimal 8910.
In logic and mathematics content, formal semantics, programming and computer science documentation, set theory and lattice theory, academic papers, and any HTML that requires the logical OR operator (⋎).
HTML entities (&cuvee;, &#8910;, or &#x22CE;) go directly in markup. The CSS escape \22CE is used in stylesheets, typically in the content property of pseudo-elements.
U+22CE (⋎) is used for logical disjunction or lattice join in formal notation. Programming uses || or the word “or.” Logical OR is U+2228 (∨, &or;). Use &cuvee; when you need the mathematical ⋎ glyph in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, arrows, 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