HTML Entity for Less Than Equal To (⋜)

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

What You'll Learn

How to display the Less Than Equal To (⋜) symbol in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+22DC (EQUAL TO OR LESS-THAN) in the Mathematical Operators block (U+2200–U+22FF)—denoting “equal to or less than” in mathematical notation (equals sign above the less-than).

Render it with ⋜, ⋜, or CSS \22DC. There is no named HTML entity for U+22DC. For the common less-than-or-equal sign ≤ use ≤ (U+2264;). Pair with U+22DD (⋝, equal to or greater-than).

⚡ Quick Reference — Less Than Equal To

Unicode U+22DC

Mathematical Operators

Hex Code ⋜

Hexadecimal reference

HTML Code ⋜

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22DC
Hex code       ⋜
HTML code      ⋜
Named entity   (none)
CSS code       \22DC
Meaning        Equal to or less-than
Related        U+22DD = equal to or greater-than (⋝)
               U+2264 = less-than or equal (≤ / ≤)
1

Complete HTML Example

A simple example showing the Less Than Equal To (⋜) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22DC";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x22dc;</p>
<p>Symbol (decimal): &#8924;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Less Than Equal To (⋜) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:

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

👀 Live Preview

See the Less Than Equal To (⋜) rendered live in different contexts:

Inline math a ⋜ b means a is equal to or less than b.
Large glyph
Ordering pair ⋜ ⋝
Numeric refs &#x22DC; &#8924; \22DC
vs less-than or equal ⋜ vs ≤
Upper bound x ⋜ 100 (x is at most 100, equal allowed)

🧠 How It Works

1

Hexadecimal Code

&#x22DC; uses the Unicode hexadecimal value 22DC for equal to or less-than. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\22DC is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+22DC is in the Mathematical Operators block. There is no named HTML entity. Previous: Less Than But Not Equivalent To.

Use Cases

The Less Than Equal To (⋜) is commonly used in:

∑ Mathematical Expressions

Represent “equal to or less than” in equations, inequalities, and proofs.

📄 Technical Documentation

Document comparison rules, upper bounds, or ordering constraints.

💻 Programming & Logic

Describe conditions or bounds in specs and tutorials.

📚 Academic Papers

Use in mathematics, computer science, or logic for ordering notation.

📊 Data & Comparisons

Show upper bounds or “at most” relations in data and statistics.

🌐 Web Applications

Use in formula editors, calculators, or dashboards requiring comparison symbols.

💡 Best Practices

Do

  • Use &#x22DC; or &#8924; for numeric references
  • Use &le; (≤) when you need the common less-than-or-equal sign
  • Pair the symbol with text or MathML where possible for accessibility
  • Verify your font supports Mathematical Operators (U+22DC)
  • Keep one entity style per project for consistency

Don’t

  • Confuse ⋜ (equal to or less-than) with ≤ (less-than or equal / &le;)
  • Assume a named HTML entity exists for U+22DC—there is none
  • Use CSS \22DC inside HTML text nodes
  • Use plain <= when the mathematical symbol ⋜ is required
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references plus CSS all render ⋜

&#x22DC; &#8924;
2

For CSS, use \22DC in the content property

3

Unicode U+22DC — EQUAL TO OR LESS-THAN

4

For ≤ use &le; (U+2264)—not the same as ⋜

❓ Frequently Asked Questions

Use &#x22DC; (hex), &#8924; (decimal), or \22DC in CSS content. All three methods render ⋜ correctly. There is no named HTML entity.
U+22DC (EQUAL TO OR LESS-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 22DC, decimal 8924. Denotes equal to or less than in mathematical notation.
In mathematical expressions and equations, technical documentation, comparison and ordering notation, programming and logic, and any content requiring an equal-to-or-less-than symbol.
HTML references (&#8924; or &#x22DC;) go in markup. The CSS escape \22DC is used in stylesheets, typically on ::before or ::after. Both produce ⋜.
Named HTML entities are reserved for common symbols. The standard less-than-or-equal ≤ uses &le; (U+2264). U+22DC uses &#8924;, &#x22DC;, or \22DC in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math 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