HTML Entity for Not Less Than (≮)

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

What You'll Learn

How to display the Not Less Than symbol (≮) in HTML using hexadecimal, decimal, and CSS escape methods. This inequality operator states that one value is not less than another (e.g. ab means a is not less than b).

This character is U+226E (NOT LESS-THAN) in the Mathematical Operators block (U+2200–U+22FF). Render it with ≮, ≮, or CSS escape \226E. There is no named HTML entity. Compare with Less Than Or Equal To (≤, ≤) and Not Greater Than (≯, ≯).

⚡ Quick Reference — Not Less Than

Unicode U+226E

Mathematical Operators

Hex Code ≮

Hexadecimal reference

HTML Code ≮

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+226E
Hex code       ≮
HTML code      ≮
Named entity   (none)
CSS code       \226E
Meaning        Not less than
Related        U+003C = less than (<, &lt;)
               U+2264 = less than or equal (≤, &le;)
               U+226F = not greater than (≯, &ngt;)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ≮ using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

U+226E is widely supported wherever Unicode Mathematical Operators render correctly:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See ≮ in inequality and comparison contexts:

Inequality 5 ≮ 3 (5 is not less than 3)
Large glyph
Comparison family < less   ≮ not less   ≤ less or equal
Example x ≮ 0 when x ≥ 0
Numeric refs &#x226E; &#8814; \226E

🧠 How It Works

1

Hexadecimal Code

&#x226E; uses the Unicode hexadecimal value 226E to display the not-less-than symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\226E is used in CSS stylesheets, typically in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+226E in Mathematical Operators (U+2200–U+22FF). There is no named HTML entity.

Use Cases

The Not Less Than symbol (≮) is commonly used in:

📐 Mathematics

Expressing that one quantity is not less than another.

💻 Programming docs

Explaining comparison operators and boundary conditions.

📚 Academia

Textbooks, papers, and lecture notes published as HTML.

⚙ Science & engineering

Specifications and formulas with lower-bound constraints.

🎓 Online courses

Interactive math modules with web-based notation.

🌐 Reference guides

Unicode charts and HTML entity documentation for math symbols.

💡 Best Practices

Do

  • Use numeric references (&#x226E; or &#8814;) in HTML for portability
  • Use \226E in CSS content when inserting via pseudo-elements
  • Distinguish ≮ from < (less-than) and ≤ (less or equal)
  • Pair ≮ with plain-language description on first use
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ≮ with < (&lt;, U+003C) or ≯ (not greater than)
  • Confuse ≮ with ≥ (greater or equal)—that is a different symbol
  • Use padded Unicode notation like U+0226E—the correct value is U+226E
  • Put CSS escape \226E in HTML text nodes
  • Use \0226E in CSS—the correct escape is \226E

Key Takeaways

1

Three references render ≮ (no named entity)

&#x226E; &#8814;
2

For CSS stylesheets, use the escape in the content property

\226E
3

Unicode U+226E — NOT LESS-THAN

4

Mathematical Operators block (U+2200–U+22FF)

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x226E; (hex), &#8814; (decimal), or \226E in CSS content. All produce ≮. There is no named HTML entity.
U+226E (NOT LESS-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 226E, decimal 8814.
Use ≮ in formal mathematical notation when you need the dedicated “not less than” operator (≮). Use < (&lt;, U+003C) for the ordinary less-than sign in code snippets or general comparisons.
HTML references (&#8814; or &#x226E;) go in markup. The CSS escape \226E goes in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
U+226E is not part of the named HTML entity set. Numeric references and CSS escapes are the standard way to render ≮ in web content.

Explore More HTML Entities!

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