HTML Entity for Less Than Over Equal To (≦)

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

What You'll Learn

How to display the Less Than Over Equal To (≦) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2266 (LESS-THAN OVER EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF).

Render it with ≦, ≦, ≦, or CSS escape \2266. It is a typographic variant of less-than-or-equal: the equal sign appears above the less-than stroke (versus ≤ where equal is below). For the common symbol use ≤ for ≤ (U+2264). Mirror: Greater Than Over Equal To (≧).

⚡ Quick Reference — Less Than Over Equal To

Unicode U+2266

Mathematical Operators

Hex Code ≦

Hexadecimal reference

HTML Code ≦

Decimal reference

Named Entity ≦

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2266
Hex code       ≦
HTML code      ≦
Named entity   ≦
CSS code       \2266
Meaning        Less-than over equal-to
Common alt.    ≤ = U+2264 (≤)
Related        U+2267 = greater-than over equal (≧)
1

Complete HTML Example

A simple example showing the Less Than Over Equal To (≦) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2266";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2266;</p>
<p>Symbol (decimal): &#8806;</p>
<p>Symbol (named): &lE;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Less Than Over Equal To symbol (≦) is supported in modern browsers with a math-capable font:

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

👀 Live Preview

See the Less Than Over Equal To symbol (≦) in inequality contexts:

Large glyph
Named entity &lE; renders as ≦
Inequality a ≦ b   x ≦ 100
vs common form ≦ vs ≤
Mirror pair ≦ ≧
Numeric refs &#x2266; &#8806; &lE; \2266

🧠 How It Works

1

Hexadecimal Code

&#x2266; uses the Unicode hexadecimal value 2266 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&lE; is the semantic named entity for ≦—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\2266 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 the glyph: . Unicode U+2266 is in Mathematical Operators. Mirror: Greater Than Over Equal To (U+2267). Previous: Less Than Or Greater Than.

Use Cases

The Less Than Over Equal To symbol (≦) is commonly used in:

📐 Mathematics

Inequalities with equal above less-than in equations, proofs, and algebra.

📄 Technical docs

Document ordering constraints, bounds, and inequalities in software and math docs.

📚 Academic papers

Formal definitions and proofs in mathematics, optimization, and computer science.

🔢 Order theory

Partial orders and “less than or equal to” relations in formal notation.

💻 Programming

Explain comparison operators and bounds in tutorials and algorithm descriptions.

🌐 Web-based math

Equation renderers, calculators, or math-heavy web applications.

💡 Best Practices

Do

  • Use &lE; for readable source markup
  • Use &le; (≤) when the common less-than-or-equal form is sufficient
  • Use math fonts (Cambria Math, Noto Sans Math) for reliable rendering
  • Distinguish ≦ from ≤ based on your notation convention
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Assume ≦ and ≤ are interchangeable in all contexts
  • Confuse &lE; with &le; (different code points)
  • Put CSS escape \2266 in HTML text nodes
  • Rely on the symbol alone for screen reader users
  • Assume every system font renders Mathematical Operators clearly

Key Takeaways

1

Three HTML references plus CSS all render ≦

&#x2266; &#8806; &lE;
2

For CSS stylesheets, use the escape in the content property

\2266
3

Unicode U+2266 — LESS-THAN OVER EQUAL TO

4

Prefer &lE; for readability; use &le; for common ≤

❓ Frequently Asked Questions

Use &#x2266; (hex), &#8806; (decimal), &lE; (named), or \2266 in CSS content. All produce ≦.
U+2266 (LESS-THAN OVER EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2266, decimal 8806. Named entity: &lE;.
In mathematics for inequalities, technical documentation, academic papers, order theory, programming and algorithm tutorials, and any formal context requiring this typographic less-than-or-equal variant.
&lE; is the named HTML entity for ≦. It is part of the HTML5 named character set and the most readable option in source markup.
≤ (&le;, U+2264) is the common less-than-or-equal with the equal sign below the less-than. ≦ (&lE;, U+2266) is a typographic variant with equal above the less-than stroke. Both express similar ordering relations; choose based on your notation convention.

Explore More HTML Entities!

Discover 1500+ HTML character references — inequalities, operators, 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