HTML Entity for Between (≬)

What You'll Learn
How to display the Between symbol (≬) in HTML and CSS. This character is U+226C in the Mathematical Operators block. Unicode assigns it the name BETWEEN; authors use it in chains such as a ≬ b ≬ c to express formal “between” or comparative relations (always explain your convention in prose).
You can write it as ≬, ≬, the named entity ≬, or \226C in CSS content. Prefer math-capable fonts so ≬ aligns cleanly with neighboring operators.
⚡ Quick Reference — Between
U+226CMathematical Operators
≬Hexadecimal reference
≬Decimal reference
≬HTML5 named reference
Name Value
──────────── ──────────
Unicode U+226C
Hex code ≬
HTML code ≬
Named entity ≬
CSS code \226CComplete HTML Example
This example shows the Between symbol using hexadecimal and decimal character references, the ≬ named entity, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\226C";
}
</style>
</head>
<body>
<p>Between using Hexa Decimal: ≬</p>
<p>Between using HTML Code: ≬</p>
<p>Between using HTML Entity: ≬</p>
<p id="point">Between using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+226C and ≬ are supported wherever HTML5 named entities and Mathematical Operators are available:
👀 Live Preview
See ≬ next to related Mathematical Operators glyphs:
🧠 How It Works
Hexadecimal Code
≬ references code point U+226C using hex digits 226C after the #x prefix.
Decimal HTML Code
≬ is the decimal equivalent (8812) for the same Between symbol.
Named Entity
≬ (ampersand + between + semicolon) is the HTML5 named character reference for U+226C.
CSS Escape
\226C is the CSS escape for U+226C, used in the content property of ::before or ::after.
Same visual result
Hex, decimal, named, and CSS escapes all produce ≬ (BETWEEN, U+226C).
Use Cases
The Between symbol (≬) is commonly used for:
Chains that express ordering or “betweenness” when your notation guide defines ≬ that way.
Technical writing where a single operator must sit between bounds in inline HTML.
HTML-first supplements or appendices that mirror print notation for logic and analysis.
Equations inlined in blogs or course pages without a full math stack.
Legend rows that show the glyph next to the word “between” for readers new to the symbol.
Lightweight editors that output HTML entities instead of images for simple operators.
Add visible text or aria-label (“between”) when ≬ appears without surrounding explanation.
💡 Best Practices
Do
- Use
≬in hand-written markup when clarity beats brevity - Define how readers should read chains like
a ≬ b ≬ cin your notation section - Stack math fonts (
Cambria Math,STIX Two Math) ahead of generic serif for even weight - Keep
\226Cinside stylesheets, not pasted into HTML text nodes - Cross-check with your style guide: some fields standardize on words instead of ≬
Don’t
- Confuse U+226C with U+226D (≭, not equivalent to) or decorative tilde clusters
- Assume every reader knows your ordering convention from the glyph alone
- Rely on ≬ alone for interval endpoints where inclusive/exclusive bounds need parentheses
- Ship standalone icons without a textual equivalent for assistive tech
- Forget to test on Windows fonts if your audience mostly uses Office-style stacks
Key Takeaways
Four equivalent HTML/CSS paths
≬ ≬Named entity and CSS escape
≬ \226CU+226C is BETWEEN in the Mathematical Operators block
Explain meaning in prose; notation for “between” is not universal across texts
Pair with accessible labels when ≬ is iconic or stands alone in UI
❓ Frequently Asked Questions
≬ (hex), ≬ (decimal), ≬ (named), or \226C in CSS content. All render ≬.U+226C (hex 226C, decimal 8812). Mathematical Operators. Not the same code point as ≭ (U+226D).≬ reads clearly in source. Numeric references are easy to generate from charts. Semantics in the DOM are identical.≬ maps to U+226C. Numeric forms remain useful in CMS fields or generated markup.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
