HTML Entity for Intercalate (⊺)

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

What You'll Learn

How to display the Intercalate symbol (⊺) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This operator appears in mathematics and logic for intercalation—a binary operation used in certain algebraic structures, type theory, and formal notation.

It is U+22BA (INTERCALATE) in the Mathematical Operators block (U+2200–U+22FF). Render it with ⊺, ⊺, ⊺, or CSS \22BA. Do not confuse ⊺ with ⊻ (XOR / veebar) or ∫ (integral).

⚡ Quick Reference — Intercalate

Unicode U+22BA

Mathematical Operators

Hex Code ⊺

Hexadecimal reference

HTML Code ⊺

Decimal reference

Named Entity ⊺

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22BA
Hex code       ⊺
HTML code      ⊺
Named entity   ⊺
CSS code       \22BA
Meaning        Intercalation operator
CSS note       \22BA or \022BA in content property
1

Complete HTML Example

This example demonstrates the Intercalate symbol (⊺) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22BA";
  }
 </style>
</head>
<body>
<p>Intercalate using Hexadecimal: &#x22BA;</p>
<p>Intercalate using Decimal: &#8890;</p>
<p>Intercalate using Named Entity: &intcal;</p>
<p id="point">Intercalate using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Intercalate symbol (⊺) is universally supported in all modern browsers:

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

👀 Live Preview

See the Intercalate symbol (⊺) in sample mathematical and logical contexts:

Binary op ab = intercalation of a and b
With integral f dx   vs   gh
Large glyph
Named entity &intcal; → ⊺
Numeric refs &#x22BA; &#8890; \22BA

🧠 How It Works

1

Hexadecimal Code

&#x22BA; uses the Unicode hexadecimal value 22BA to display the Intercalate symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
4

Named Entity

&intcal; is the standard named HTML entity for intercalate—mnemonic for “intercalate” and easy to read in source.

HTML markup
=

Same visual result

All four methods produce . Unicode U+22BA is in Mathematical Operators. Next: Interlocked Female Male Sign.

Use Cases

The Intercalate symbol (⊺) is commonly used in:

∑ Math Notation

Intercalation product and related binary operations in algebra.

⊢ Logic & Types

Type theory, proof assistants, and logical frameworks.

📐 Abstract Algebra

Operations in algebraic structures and category theory.

📄 Research

Papers in mathematics, logic, and computer science.

📚 Textbooks

Formal specs and documentation that define the operator.

💻 Technical Docs

Languages or tools that expose intercalate-like operations.

💡 Best Practices

Do

  • Use &intcal; for readable source markup
  • Define the operator when first used on a page
  • Pick one style (hex / decimal / named) per project
  • Use MathML or ARIA for complex formal expressions
  • Test rendering with math-friendly fonts

Don’t

  • Confuse ⊺ (intercalate) with ⊻ (XOR) or ∫ (integral)
  • Use CSS \22BA inside HTML text nodes
  • Mix entity styles randomly in one file
  • Assume readers know intercalation without context
  • Rely on plain HTML for heavy subscript/superscript layout

Key Takeaways

1

Three HTML references all render ⊺

&#x22BA; &#8890; &intcal;
2

For CSS stylesheets, use \22BA in the content property

3

Unicode U+22BA — INTERCALATE (Mathematical Operators)

4

Prefer &intcal; for readability in HTML source

❓ Frequently Asked Questions

Use &#x22BA; (hex), &#8890; (decimal), &intcal; (named), or \22BA in CSS content. All produce ⊺.
U+22BA (INTERCALATE). Mathematical Operators block (U+2200–U+22FF). Hex 22BA, decimal 8890. Used for intercalation and related operations in math and logic.
In mathematical notation, logic and type theory, academic papers, formal specifications, and any content that requires the intercalate operator.
HTML entities (&intcal;, &#8890;, or &#x22BA;) go in markup. The CSS escape \22BA is used in stylesheets, typically on ::before or ::after. Both render ⊺.
Yes. &intcal; is the named HTML entity for ⊺ (intercalate). It is part of the HTML5 entity set and is well supported in modern browsers.

Explore More HTML Entities!

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