HTML Entity for Much Less Than (≪)

What You'll Learn
How to display the much less-than symbol (≪) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+226A (MUCH LESS-THAN) in the Mathematical Operators block (U+2200–U+22FF)—used for inequalities and asymptotic comparisons, for example “x ≪ y” or “f(n) ≪ g(n).”
Render it with the named entity ≪, ≪, ≪, or CSS escape \226A. Do not confuse ≪ (≪, U+226A) with < (<, U+003C)—the ordinary less-than sign. The pair symbol is much greater-than (≫, ≫).
⚡ Quick Reference — Much Less Than
U+226AMathematical Operators
≪Hexadecimal reference
≪Decimal reference
≪Much less-than (capital L)
Name Value
──────────── ──────────
Unicode U+226A
Hex code ≪
HTML code ≪
Named entity ≪
CSS code \226A
Meaning Much less-than (≪)
Related U+003C = less-than (<, <)
U+226B = much greater-than (≫, ≫)Complete HTML Example
This example demonstrates the much less-than symbol (≪) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\226A";
}
</style>
</head>
<body>
<p>Much Less Than using Hexadecimal: ≪</p>
<p>Much Less Than using HTML Code: ≪</p>
<p>Much Less Than using Named Entity: ≪</p>
<p id="point">Much Less Than using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+226A is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the much less-than symbol (≪) in mathematical contexts:
🧠 How It Works
Named Entity
≪ is the HTML named entity for much less-than. Note the capital L—distinct from < (ordinary <).
Hexadecimal Code
≪ uses the Unicode hexadecimal value 226A. The x prefix indicates hexadecimal format.
Decimal HTML Code
≪ uses the decimal Unicode value 8810 to display the same character.
CSS Entity
\226A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ≪. Unicode U+226A in Mathematical Operators. Pair with much greater-than (≫, ≫).
Use Cases
The much less-than symbol (≪) is commonly used in:
Inequalities where one quantity is much smaller (x ≪ y).
Growth-rate comparisons in algorithms and complexity theory.
Order-of-magnitude comparisons in formulas and specifications.
Textbooks, papers, and lecture notes on analysis and algebra.
Technical docs, datasheets, and scientific web content.
HTML entity lists and Unicode math symbol references.
💡 Best Practices
Do
- Use
≪for readable math markup (capital L, not lowercase) - Pair with
≫(≫) when teaching inequality pairs - Use fonts that cover Mathematical Operators (Cambria Math, etc.)
- Add
aria-label(e.g. “much less than”) for accessibility - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
≪(≪) with<(<, U+003C) - Use two ASCII
<<characters when you mean the single symbol ≪ - Put CSS escape
\226Ain HTML text nodes - Mix entity styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Three HTML references plus CSS all render ≪
≪ ≪ ≪For CSS stylesheets, use the escape in the content property
\226AUnicode U+226A — MUCH LESS-THAN
≪ is the named entity (not <)
Pair: Much Greater Than (≫, ≫)
❓ Frequently Asked Questions
≪ (named), ≪ (hex), ≪ (decimal), or \226A in CSS content. All produce ≪.U+226A (MUCH LESS-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 226A, decimal 8810. Named entity: ≪.U+003C, <) is the ordinary less-than sign. ≪ (U+226A, ≪) is the mathematical much less-than symbol with a distinct Unicode code point and meaning.≪, ≪, or ≪) go directly in markup. The CSS escape \226A is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, relations, and more.
8 people found this page helpful
