Less Than or Equal Sign ()

HTML entity for the less than or equal sign (≤). Learn how to use ≤ or ≤ in HTML for math, comparisons, and documentation.

Math

Less Than or Equal Sign

All Formats

FormatValue
Character
HTML Entity≤
HTML Code (Decimal)≤
UnicodeU+2264
CSS Content\2264
CategoryMath

About Less Than or Equal Sign

The less than or equal sign (≤) is a mathematical comparison operator meaning "is less than or equal to." It combines the less-than sign (<) with the equals sign (=) into a single symbol.

In HTML, insert this symbol using &le;, &#8804;, or &#x2264;. The named entity &le; is short and readable. This symbol is essential when displaying mathematical inequalities, algorithm complexity descriptions (e.g., O(n) where n ≤ 1000), and data validation rules.

The less than or equal sign is part of the Mathematical Operators Unicode block. Unlike the less-than sign (<), which is also an HTML reserved character, the ≤ symbol does not conflict with HTML tag syntax and can be used safely in text content without encoding concerns.

In CSS, use "\2264" with the content property for pseudo-element insertion. This symbol is commonly needed in technical documentation, scientific papers, and educational content. Screen readers announce it as "less than or equal to," providing good accessibility for mathematical content.

Usage Examples

<!-- Using named entity -->
<p>This is the Less Than or Equal Sign: &le;</p>

<!-- Using numeric code -->
<p>This is the Less Than or Equal Sign: &#8804;</p>

<!-- Using the character directly (UTF-8) -->
<p>This is the Less Than or Equal Sign: ≤</p>

<!-- In CSS -->
.icon::before {
  content: "\2264";
}

FAQ

What is the HTML entity for Less Than or Equal Sign?

The Less Than or Equal Sign () can be inserted using the named entity &le;, the numeric code &#8804;, or by pasting the character directly in a UTF-8 document.

How do I use in CSS?

In CSS, use the content property with the value "\2264". For example: content: "\2264";

What is the Unicode code point for Less Than or Equal Sign?

The Unicode code point for Less Than or Equal Sign is U+2264. This is the universal identifier for this character across all platforms and programming languages.

Try It in the HTML Entity Tool

Use our HTML Entity Encoder & Decoder to encode and decode HTML entities, convert between named, numeric, and hex formats, and explore the full entity reference table.

Open HTML Entity Tool →