HTML Entity for Very Much Less Than (⋘)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+22D8

What Is the Very Much Less Than Entity?

Very much less-than (⋘) is the mathematical relation at Unicode U+22D8. HTML5 provides &Ll; (there is no &lll;). Do not confuse it with much less-than &Lt; (≪) or ordinary &lt; (<).

Remember
Character     ⋘
Unicode       U+22D8
Named entity  &Ll;
Hex entity    &#x22D8;
Decimal       &#8920;
CSS escape    \22D8
Not the same  &Lt; (≪) · &lt; · <<<

Named, hex, decimal, CSS, and a typed character all produce the same glyph: ⋘. Prefer &Ll; in mathematical HTML. For the opposite relation see very much greater-than; for double ≪ see much less-than.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity&Ll;HTML markup (preferred)
Hex entity&#x22D8;HTML markup
Decimal entity&#8920;HTML markup
CSS escape\22D8Stylesheet content
Direct character⋘UTF-8 HTML text

When to Use Which

SituationUse
Very much smaller / strong inequality&Ll;
Need an entity in HTML source&Ll;, &#x22D8;, or &#8920;
Generated text via ::before / ::aftercontent: "\22D8"
Much less-than (≪)See Much Less Than — &Lt;
Ordinary less-than (<)See Less Than — &lt;
Very much greater-than (⋙)See Very Much Greater Than — &Gg;

Live Preview

Very much less-than in a short relation and beside lookalikes.

Example x ⋘ y
Large glyph ⋘
Named entity &Ll; → ⋘
vs look-alikes ⋘  |  ≪  |  <  |  ⋙
With entities Named: ⋘ | Hex: ⋘ | Decimal: ⋘

Complete HTML Example

One page that shows very much less-than with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ⋘ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Very Much Less Than (⋘)</title>
  <style>
    #point::after {
      content: "\22D8";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &Ll;</p>
  <p>Using Hex Code: &#x22D8;</p>
  <p>Using HTML Code: &#8920;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Relation: x &Ll; y</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Ll; is the clearest HTML form and renders ⋘. Note: &ll; (two l’s) is much less-than ≪, not this symbol. There is no &lll;.

2. Hex: U+22D8 → &#x22D8; in HTML. Same result as the named entity.

3. Decimal: same code point as 8920 → &#8920;. Same result as hex and named.

4. CSS: use \22D8 in content (not an HTML entity). #point::after appends that ⋘ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with very much less-than.

Prefer

Use &Ll;

The named form is clearer than numeric references and is defined in HTML5. There is no &lll;.

vs ≪

&ll; ≠ &Ll;

&ll; / &Lt; is ≪ (U+226A). &Ll; is ⋘ (U+22D8). Capital L matters.

vs <

Not ordinary less-than

&lt; is < (U+003C). Use &Ll; only when you need the triple symbol.

vs <<<

Not three ASCII characters

Typing <<< creates three less-than signs. Use &Ll; for the single ⋘ symbol.

CSS vs HTML

Do not mix escapes

\22D8 belongs in CSS. &Ll; / &#x22D8; / &#8920; belong in HTML.

Semicolon

End references

Always finish with ; — write &Ll;, not &Ll.

Browser Support

Very much less-than (U+22D8) and its entity forms (&Ll;, &#x22D8;, &#8920;, CSS \\22D8) are supported in all mainstream browsers with a Unicode-capable font.

✓ Universal support

Very Much Less Than (&Ll;)

Encode with named, hex, decimal, or CSS escape — or type ⋘ directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+22D8 / &Ll; Full support

Bottom line: Prefer &Ll; in mathematical HTML. Use \\22D8 only inside CSS content.

Key Takeaways

  • Unicode: very much less-than is U+22D8 (decimal 8920).
  • HTML: prefer &Ll; (no &lll;).
  • CSS: use \22D8 inside content for generated text.
  • Lookalikes: not &Lt; (≪), not &lt; (<), not ASCII <<<.

One line: U+22D8 → prefer &Ll; (also &#x22D8; / &#8920; / CSS \22D8).

Frequently Asked Questions

Use &Ll; (named), &#x22D8; (hex), &#8920; (decimal), or the CSS escape \22D8 in the content property. All render ⋘. Prefer &Ll; in mathematical HTML.
U+22D8 (VERY MUCH LESS-THAN). Hex 22D8, decimal 8920. It belongs to the Mathematical Operators block.
Yes. HTML5 defines &Ll; for ⋘. There is no &lll; named entity.
Use it for mathematical inequalities where one quantity is very much smaller than another — a stronger comparison than much less-than (≪).
HTML entities (&Ll;, &#8920;, or &#x22D8;) go in markup. The CSS escape \22D8 is used in stylesheets (usually in the content property of ::before/::after). Both render ⋘.
No. Very much less-than is &Ll; (⋘, U+22D8). Much less-than is &Lt; (≪, U+226A). Three ASCII <<< characters are not the same as the single ⋘ symbol.

Did you know?

Very much less-than is Unicode U+22D8 (decimal 8920) — VERY MUCH LESS-THAN in Mathematical Operators. HTML5 provides &Ll; (there is no &lll;). It is not the same as much less-than &Lt; / &ll; (≪, U+226A), ordinary &lt; (<), or three ASCII <<< characters.

Next: Victory Hand

Continue with the victory hand entity tutorial.

Continue tutorial →

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