HTML Entity for Curly Logical AND (⋏)

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

What You'll Learn

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

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

⚡ Quick Reference — Curly Logical AND

Unicode U+22CF

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

Hex Code ⋏

Hexadecimal reference

HTML Code ⋏

Decimal reference

Named Entity ⋏

Named entity (curly wedge)

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

Complete HTML Example

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

🌐 Browser Support

U+22CF 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 AND (⋏) in logic and math contexts:

Logic A ⋏ B   &cuwed;
Named entity Logical AND: &cuwed;
Large glyph
vs other AND Curly: ⋏ (U+22CF)   Logical: ∧ (U+2227)   Curly OR: ⋎
Monospace refs &#x22CF; &#8911; &cuwed; \22CF

🧠 How It Works

1

Hexadecimal Code

&#x22CF; references code point U+22CF using hex digits 22CF.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&cuwed; is the standard named entity for U+22CF—“curly wedge” (cuwed) for the logical AND symbol.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the curly logical AND glyph: . Unicode U+22CF is in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Curly Logical AND (⋏) commonly appears in:

📐 Logic & math

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

🔍 Formal semantics

Linguistics, philosophy, and semantics where conjunction uses ⋏.

💻 CS documentation

Technical docs and tutorials on logical operators and predicate logic.

📚 Lattice theory

Order theory and lattices where ⋏ denotes meet (infimum).

📄 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 and B”) so screen readers convey logical meaning.

💡 Best Practices

Do

  • Prefer &cuwed; 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 \22CF only inside CSS content, not in HTML text nodes
  • Pair ⋏ with operands (e.g. A ⋏ B) for clear meaning

Don’t

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

Key Takeaways

1

Named entity is the easiest option

&cuwed;
2

Numeric references also render ⋏

&#x22CF; &#8911;
3

For CSS stylesheets, use the escape in the content property

\22CF
4

U+22CF CURLY LOGICAL AND

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &cuwed; (named entity), &#x22CF; (hex), &#8911; (decimal), or \22CF in CSS content. All produce ⋏.
U+22CF (Curly Logical AND). Mathematical Operators (U+2200–U+22FF). Hex 22CF, decimal 8911.
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 AND operator (⋏).
HTML entities (&cuwed;, &#8911;, or &#x22CF;) go directly in markup. The CSS escape \22CF is used in stylesheets, typically in the content property of pseudo-elements.
U+22CF (⋏) is used for logical conjunction or lattice meet in formal notation. Programming uses && or the word “and.” Logical AND is U+2227 (∧, &and;). Use &cuwed; 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