HTML Entity for Less Than But Not Equal To (≨)

What You'll Learn
How to display the Less Than But Not Equal To (≨) symbol in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2268 (LESS-THAN BUT NOT EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—denoting a strict less-than relation that excludes equality.
Render it with ≨ (named), ≨, ≨, or CSS \2268. Pair with U+2269 (≩, greater-than but not equal / ≩). Do not confuse ≨ with ≤ (less-than or equal / ≤) or the plain < character.
⚡ Quick Reference — Less Than But Not Equal To
U+2268Mathematical Operators
≨Hexadecimal reference
≨Decimal reference
≨Most readable option
Name Value
──────────── ──────────
Unicode U+2268
Hex code ≨
HTML code ≨
Named entity ≨
CSS code \2268
Meaning Less-than but not equal to
Related U+2269 = greater-than but not equal (≩ / ≩)
U+2264 = less-than or equal (≤ / ≤)Complete HTML Example
A simple example showing the Less Than But Not Equal To (≨) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2268";
}
</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 But Not Equal To (≨) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Less Than But Not Equal To (≨) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
≨ uses the Unicode hexadecimal value 2268 for less-than but not equal to. The x prefix indicates hexadecimal format.
Decimal HTML Code
≨ uses the decimal Unicode value 8808 to display the same character.
Named Entity
≨ is the semantic named entity — the easiest to read in source HTML for this strict inequality symbol.
CSS Entity
\2268 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ≨. Unicode U+2268 is in the Mathematical Operators block. Previous: Less Than Above Left Arrow.
Use Cases
The Less Than But Not Equal To (≨) is commonly used in:
Represent strict inequality (less than but not equal) in equations and proofs.
Document comparison rules, ordering, or constraints that exclude equality.
Describe comparison operators or conditions in specs and tutorials.
Use in mathematics, computer science, or logic papers for precise inequality notation.
Show ordering or ranking rules where equality is explicitly excluded.
Use in formula editors, calculators, or comparison UI where strict less-than is needed.
💡 Best Practices
Do
- Prefer
≨when writing HTML by hand for readability - Pair the symbol with text or MathML where possible for accessibility
- Verify your font supports Mathematical Operators (U+2268)
- Keep one entity style per project for consistency
- Use ≨ when equality must be explicitly excluded from “less than”
Don’t
- Confuse ≨ with ≤ (less-than or equal /
≤) - Confuse ≨ with ≩ (greater-than but not equal /
≩) - Use plain
<when the mathematical symbol ≨ is required - Use CSS
\2268inside HTML text nodes - Mix entity styles randomly in one file
Key Takeaways
Four methods all render ≨
≨ ≨ ≨For CSS, use \2268 in the content property
Unicode U+2268 — LESS-THAN BUT NOT EQUAL TO
Named entity ≨ is the most readable option
Previous: Less Than Above Left Arrow Next: Less Than But Not Equivalent To
❓ Frequently Asked Questions
≨ (named), ≨ (hex), ≨ (decimal), or \2268 in CSS content. All four methods render ≨ correctly.U+2268 (LESS-THAN BUT NOT EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2268, decimal 8808. Denotes strict less-than excluding equality.≨, ≨, or ≨) go in markup. The CSS escape \2268 is used in stylesheets, typically on ::before or ::after. Both produce ≨.≨ is the named HTML entity for U+2268. You can also use ≨ (decimal), ≨ (hex), or \2268 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
