HTML Entity for Very Much Less Than (⋘)

What You'll Learn
How to display the Very Much Less Than symbol (⋘) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22D8 (VERY MUCH LESS-THAN) in the Mathematical Operators block—a comparison operator used in inequalities, algebra, and formal mathematical notation.
Render it with ⋘, ⋘, the named entity ⋘, or CSS escape \22D8. Do not confuse ⋘ with much less-than ≪ (≪) or plain less-than < (U+003C).
⚡ Quick Reference — Very Much Less Than Entity
U+22D8Mathematical Operators
⋘Hexadecimal reference
⋘Decimal reference
⋘Most readable option
Name Value
──────────── ──────────
Unicode U+22D8
Hex code ⋘
HTML code ⋘
Named entity ⋘
CSS code \22D8
Meaning Very much less-than
Related U+226A = ≪ (much less-than, ≪)
U+003C = < (less-than, <)
U+22D9 = ⋙ (very much greater-than, ⋙)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing the Very Much Less Than symbol (⋘) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22D8";
}
</style>
</head>
<body>
<p>Symbol (hex): ⋘</p>
<p>Symbol (decimal): ⋘</p>
<p>Symbol (named): ⋘</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Very Much Less Than symbol (⋘) is supported in modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Very Much Less Than symbol rendered live in mathematical contexts:
≪)🧠 How It Works
Hexadecimal Code
⋘ uses the Unicode hexadecimal value 22D8 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋘ uses the decimal Unicode value 8920 to display the same character. A common method for Mathematical Operators.
Named Entity
⋘ is the semantic named entity—the easiest to read in source HTML for the very much less-than operator.
CSS Entity
\22D8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⋘. Unicode U+22D8 sits in Mathematical Operators. Not the same as ≪ (≪) or < (<).
Use Cases
The Very Much Less Than symbol (⋘) is commonly used in:
Equations and formulas requiring “very much less than” (e.g. a ⋘ b).
Order relations in algebra, analysis, and formal mathematics.
Research papers, proofs, and scholarly mathematical content.
API docs, tutorials, and content describing comparisons or limits.
Math courses, textbooks, and e-learning modules on order relations.
Formal logic, set theory, and mathematical notation.
Docs explaining mathematical operators or algorithm comparisons.
💡 Best Practices
Do
- Use
⋘for readable source markup - Add spacing around the operator in equations (e.g. a ⋘ b)
- Pick one entity style per project for consistency
- Use fonts that support Mathematical Operators
- Distinguish ⋘ from ≪ (
≪) and<
Don’t
- Confuse ⋘ (U+22D8) with ≪ (U+226A, much less-than)
- Substitute
<or<when ⋘ is specifically required - Mix entity styles randomly in one file
- Use CSS escape
\22D8inside HTML markup - Forget accessibility labels for standalone math symbols
Key Takeaways
Type ⋘ directly, or use hex/decimal/named references
⋘ ⋘ ⋘For CSS stylesheets, use the escape in the content property
\22D8Unicode U+22D8 — VERY MUCH LESS-THAN
Not the same as ≪ (≪) or <
Previous: Very Much Greater Than (⋙) Next: Victory Hand
❓ Frequently Asked Questions
⋘ (hex), ⋘ (decimal), ⋘ (named), or \22D8 in CSS content. All produce ⋘. In UTF-8 you can also type ⋘ directly.U+22D8 (VERY MUCH LESS-THAN). Mathematical Operators block. Hex 22D8, decimal 8920. Named entity ⋘. Related: U+226A (≪, ≪) is much less-than.⋘, ⋘, or ⋘) go directly in markup. The CSS escape \22D8 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.⋘ is the named HTML entity for ⋘ (U+22D8). ⋘ and ⋘ are equivalent in modern browsers. Do not confuse ⋘ with ≪ (≪, much less-than).Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
