HTML Entity for Much Less Than (≪)

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

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 &Lt;, &#x226A;, &#8810;, or CSS escape \226A. Do not confuse &Lt; (≪, U+226A) with &lt; (<, U+003C)—the ordinary less-than sign. The pair symbol is much greater-than (≫, &Gt;).

⚡ Quick Reference — Much Less Than

Unicode U+226A

Mathematical Operators

Hex Code &#x226A;

Hexadecimal reference

HTML Code &#8810;

Decimal reference

Named Entity &Lt;

Much less-than (capital L)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+226A
Hex code       &#x226A;
HTML code      &#8810;
Named entity   &Lt;
CSS code       \226A
Meaning        Much less-than (≪)
Related        U+003C = less-than (<, &lt;)
               U+226B = much greater-than (≫, &Gt;)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\226A";
  }
 </style>
</head>
<body>
<p>Much Less Than using Hexadecimal: &#x226A;</p>
<p>Much Less Than using HTML Code: &#8810;</p>
<p>Much Less Than using Named Entity: &Lt;</p>
<p id="point">Much Less Than using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+226A is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

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

👀 Live Preview

See the much less-than symbol (≪) in mathematical contexts:

Inequality x ≪ y
Asymptotic f(n) ≪ g(n)
Comparison pair ≪ ≫
Large glyph
vs ordinary < < &lt;   ≪ &Lt;

🧠 How It Works

1

Named Entity

&Lt; is the HTML named entity for much less-than. Note the capital L—distinct from &lt; (ordinary <).

HTML markup
2

Hexadecimal Code

&#x226A; uses the Unicode hexadecimal value 226A. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+226A in Mathematical Operators. Pair with much greater-than (≫, &Gt;).

Use Cases

The much less-than symbol (≪) is commonly used in:

🔢 Mathematics

Inequalities where one quantity is much smaller (x ≪ y).

📈 Asymptotic analysis

Growth-rate comparisons in algorithms and complexity theory.

⚙️ Physics & engineering

Order-of-magnitude comparisons in formulas and specifications.

📚 Academia

Textbooks, papers, and lecture notes on analysis and algebra.

💻 Documentation

Technical docs, datasheets, and scientific web content.

🌐 Symbol guides

HTML entity lists and Unicode math symbol references.

💡 Best Practices

Do

  • Use &Lt; for readable math markup (capital L, not lowercase)
  • Pair with &Gt; (≫) 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 &Lt; (≪) with &lt; (<, U+003C)
  • Use two ASCII << characters when you mean the single symbol ≪
  • Put CSS escape \226A in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ≪

&#x226A; &#8810; &Lt;
2

For CSS stylesheets, use the escape in the content property

\226A
3

Unicode U+226A — MUCH LESS-THAN

4

&Lt; is the named entity (not &lt;)

5

Pair: Much Greater Than (≫, &Gt;)

❓ Frequently Asked Questions

Use &Lt; (named), &#x226A; (hex), &#8810; (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: &Lt;.
In mathematical inequalities, asymptotic notation, physics and engineering comparisons, academic papers, and any content where one value is much smaller than another.
< (U+003C, &lt;) is the ordinary less-than sign. ≪ (U+226A, &Lt;) is the mathematical much less-than symbol with a distinct Unicode code point and meaning.
HTML entities (&#8810;, &#x226A;, or &Lt;) 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.

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