Math

Less-Than or Equal To ≤

The less-than-or-equal-to symbol combines the less-than sign with the equals sign, indicating that a value is either less than or equal to another. It is a fundamental comparison operator in mathematics and appears frequently in algorithm descriptions, constraint specifications, and mathematical proofs.

All Representations

Named Entity
≤
Decimal Code
≤
Hex Code
≤
Unicode
U+2264

Rendered Output

≤ renders as the character shown above

When to Use Less-Than or Equal To

Use the less-than-or-equal entity in mathematical formulas, algorithm descriptions, and technical specifications that express bounds or constraints. It is the proper typographic symbol for the concept that many programming languages express as <=. Using the entity ensures correct rendering across all browsers.

Try It — HTML Examples

Named entity in text
<p>Symbol: &le;</p>
Decimal reference
<p>Symbol: &#8804;</p>
Hex reference
<p>Symbol: &#x2264;</p>
Inside an HTML attribute
<div title="The Less-Than or Equal To: &le;">Hover to see</div>

About the Less-Than or Equal To Entity

The Less-Than or Equal To character (≤) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &le;, the decimal numeric character reference &#8804;, or the hexadecimal numeric reference &#x2264;. The character is assigned Unicode code point U+2264 in the Universal Character Set.

The less-than-or-equal-to symbol combines the less-than sign with the equals sign, indicating that a value is either less than or equal to another. It is a fundamental comparison operator in mathematics and appears frequently in algorithm descriptions, constraint specifications, and mathematical proofs.

Mathematical HTML entities enable web authors to display proper mathematical notation without relying on images or specialized rendering libraries like MathJax or KaTeX. While complex equations and multi-line formulas may still benefit from dedicated math typesetting tools, individual symbols expressed as HTML entities render quickly, remain accessible to screen readers, and can be styled with CSS just like regular text content.

When deciding how to encode the Less-Than or Equal To character in your HTML documents, the named entity &le; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#8804; and hexadecimal form &#x2264; are equally valid alternatives that work in contexts where named entities may not be supported, or when generating HTML output programmatically from server-side code. All three representations produce identical visual output in every modern web browser.

Use the less-than-or-equal entity in mathematical formulas, algorithm descriptions, and technical specifications that express bounds or constraints. It is the proper typographic symbol for the concept that many programming languages express as <=. Using the entity ensures correct rendering across all browsers.

Related Entities

Explore More HTML Entities

Browse our complete reference of 262 HTML entities with codes, examples, and usage tips.