HTML Entity for Less Than Equal To Greater Than (⋚)

What You'll Learn
How to display the Less Than Equal To Greater Than (⋚) symbol in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+22DA (LESS-THAN EQUAL TO OR GREATER-THAN) in the Mathematical Operators block (U+2200–U+22FF)—indicating that a value may be less than or equal to, or greater than, another (a three-way comparison).
Render it with ⋚ (named), ⋚, ⋚, or CSS \22DA. Pair with U+22DB (⋛, greater-than equal to or less-than / ⋛). For example, a ⋚ b means a ≤ b or a ≥ b.
⚡ Quick Reference — Less Than Equal To Greater Than
U+22DAMathematical Operators
⋚Hexadecimal reference
⋚Decimal reference
⋚Most readable option
Name Value
──────────── ──────────
Unicode U+22DA
Hex code ⋚
HTML code ⋚
Named entity ⋚
CSS code \22DA
Meaning Less-than equal to or greater-than
Related U+22DB = greater-than equal to or less-than (⋛ / ⋛)
U+2264 = less-than or equal (≤ / ≤)Complete HTML Example
A simple example showing the Less Than Equal To Greater Than (⋚) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22DA";
}
</style>
</head>
<body>
<p>Symbol (hex): ⋚</p>
<p>Symbol (decimal): ⋚</p>
<p>Symbol (named): ⋚</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Less Than Equal To Greater Than (⋚) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Less Than Equal To Greater Than (⋚) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⋚ uses the Unicode hexadecimal value 22DA for less-than equal to or greater-than. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋚ uses the decimal Unicode value 8922 to display the same character.
Named Entity
⋚ is the semantic named entity — the easiest to read in source HTML for this three-way comparison symbol.
CSS Entity
\22DA is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⋚. Unicode U+22DA is in the Mathematical Operators block. Mirror: Greater Than Equal To Less Than (U+22DB / ⋛). Previous: Less Than Equal To.
Use Cases
The Less Than Equal To Greater Than (⋚) is commonly used in:
Represent three-way comparison (≤ or ≥) in equations and inequalities.
Document comparison rules or conditions that allow either ordering.
Describe ordering constraints or comparison semantics in specs.
Use in mathematics or logic for composite comparison notation.
Show relations where values may be less-than-equal or greater-than.
Use in formula editors, calculators, or dashboards requiring comparison symbols.
💡 Best Practices
Do
- Use
⋚when writing HTML by hand for readability - Use
⋚or⋚when generating markup programmatically - Pair the symbol with text or MathML where possible for accessibility
- Verify your font supports Mathematical Operators (U+22DA)
- Keep one entity style per project for consistency
Don’t
- Confuse ⋚ (three-way comparison) with ≤ (less-than or equal /
≤) - Use CSS
\22DAinside HTML text nodes - Assume readers know what a ⋚ b means without context
- Mix entity styles randomly in one file
- Use plain
<=or>=when the mathematical symbol ⋚ is required
Key Takeaways
Four methods all render ⋚
⋚ ⋚ ⋚For CSS, use \22DA in the content property
Unicode U+22DA — LESS-THAN EQUAL TO OR GREATER-THAN
Mirror: Greater Than Equal To Less Than (⋛ / ⋛)
Previous: Less Than Equal To Next: Less Than Or Equal To
❓ Frequently Asked Questions
⋚ (named), ⋚ (hex), ⋚ (decimal), or \22DA in CSS content. All four methods render ⋚ correctly.U+22DA (LESS-THAN EQUAL TO OR GREATER-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 22DA, decimal 8922. Denotes less-than equal to or greater-than in mathematical notation.⋚, ⋚, or ⋚) go in markup. The CSS escape \22DA is used in stylesheets, typically on ::before or ::after. Both produce ⋚.⋚ is the named HTML entity for U+22DA. You can also use ⋚, ⋚, or \22DA in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
