HTML Entity for Curly Logical OR (⋎)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+22CE

What Is Curly Logical OR?

Curly logical OR (⋎) is the Unicode character at U+22CE in the Mathematical Operators block. It is also called curly vee — a spacing logic / lattice operator, not the everyday Boolean OR (∨).

Remember
Character     ⋎
Unicode       U+22CE
Hex entity    ⋎
Decimal       ⋎
Named entity  ⋎ / ⋎
CSS escape    \22CE
Not the same  ∨ U+2228 · ⋏ U+22CF · ⋁ U+22C1

Prefer ⋎ or a typed ⋎ in hand-written HTML; use numeric forms when generating markup.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⋎HTML text (UTF-8)
Named entity⋎ or ⋎HTML markup
Hex entity⋎HTML markup
Decimal entity⋎HTML markup
CSS escape\22CEStylesheet content

When to Use Which

SituationUse
Curly / lattice OR⋎ or type ⋎
Ordinary logical OR∨ U+2228 (∨)
Curly logical AND⋏ U+22CF (⋏)
Generated / numeric-only markup⋎ or ⋎
Generated text via ::before / ::aftercontent: "\22CE"

Live Preview

Curly logical OR rendered in common logic contexts.

Inline logic P ⋎ Q
Large glyph ⋎
Compared ⋎   ∨   ⋏   ⋁
Monospace a ⋎ b
With entities Named: ⋎ | Hex: ⋎ | Decimal: ⋎

Complete HTML Example

One page that shows Curly Logical OR with the named entity, hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ⋎ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Curly Logical OR (⋎) in HTML</title>
  <style>
    #point::after {
      content: "\22CE";
    }
  </style>
</head>
<body>
  <p>Curly OR using Named Entity: &cuvee;</p>
  <p>Curly OR using Hex Code: &#x22CE;</p>
  <p>Curly OR using HTML Code: &#8910;</p>
  <p id="point">Curly OR using CSS Entity: </p>
  <p>Typed directly: ⋎</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &cuvee; (alias &curlyvee;) is the HTML named reference for U+22CE → ⋎.

2. Hex: U+22CE → &#x22CE; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8910 → &#8910;. Same result as hex.

4. CSS: use \22CE in content (not an HTML entity). #point::after appends that ⋎ after the paragraph text.

5. Typed: in a UTF-8 page you can paste ⋎ directly. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Curly Logical OR.

Named

Prefer &cuvee;

&cuvee; and &curlyvee; both map to U+22CE. Do not use &or; — that is ordinary logical OR.

∨

Not ordinary OR

∨ (&or; / &vee;) is the common vee OR. ⋎ is the curly form.

⋏

Not curly AND

⋏ (&cuwed;) is curly logical AND. Use it for the dual operator, not as OR.

CSS vs HTML

Do not mix escapes

\22CE belongs in CSS. &cuvee; / &#x22CE; / &#8910; belong in HTML.

Fonts

Math font coverage

Some fonts omit U+22CE. Prefer a font with Mathematical Operators coverage for display.

Semicolon

End references

Always finish with ; — write &cuvee; and &#8910;, not bare forms.

Browser Support

Curly logical OR (U+22CE) and its entity forms (&cuvee;, &#x22CE;, &#8910;, CSS \\22CE) are supported in all mainstream browsers. Visible glyphs depend on font coverage.

✓ Universal support

Curly Logical OR (&#x22CE;)

Encode with named, hex, decimal, CSS escape, or type the character — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+22CE / entities Full support

Bottom line: Prefer &cuvee; or typed ⋎ in HTML. Use \\22CE only inside CSS content. Do not confuse with &or; (U+2228).

Key Takeaways

  • Unicode: curly logical OR is U+22CE (decimal 8910) — glyph ⋎.
  • HTML: use &cuvee;, &#x22CE;, &#8910;, or type ⋎.
  • CSS: use \22CE inside content for generated text.
  • Watch out: ⋎ ≠ ∨ ≠ ⋏ (curly OR ≠ OR ≠ curly AND).

One line: U+22CE → &cuvee; / &#8910; / CSS \22CE / type ⋎.

Frequently Asked Questions

Use &#x22CE; (hex), &#8910; (decimal), &cuvee; or &curlyvee; (named), or the CSS escape \22CE in content. You can also paste ⋎ directly in UTF-8.
U+22CE (hex 22CE, decimal 8910). It belongs to the Mathematical Operators block and is also called curly vee.
Yes. &cuvee; and &curlyvee; are the HTML named references. Numeric forms &#8910; and &#x22CE; also work.
Use it in logic, lattice theory, or math docs that need the curly-vee OR operator. For ordinary Boolean OR, prefer ∨ (U+2228 / &or;).
HTML entities (&cuvee;, &#8910;, or &#x22CE;) go in markup. The CSS escape \22CE goes in stylesheet strings (usually content on ::before/::after).
⋎ (U+22CE / &cuvee;) is curly logical OR. ∨ (U+2228 / &or;) is the common logical OR (vee). ⋏ (U+22CF / &cuwed;) is curly logical AND — the dual operator.

Did you know?

Curly logical OR (curly vee) is Unicode U+22CE (decimal 8910) — glyph ⋎ in the Mathematical Operators block. HTML named references include &cuvee; and &curlyvee;. It is a spacing logic / lattice operator. It is not logical OR ∨ (U+2228 / &or;) and not curly logical AND ⋏ (U+22CF / &cuwed;).

Next: Currency Entities

Browse HTML currency symbols (dollar, euro, yen, and more).

Currency 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