HTML Entity for Not Greater Than (≯)

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

What You'll Learn

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

This character is U+226F (NOT GREATER-THAN) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ≯, ≯, ≯, or CSS escape \226F. Compare with Greater Than Or Equal To (≥, ≥) and the basic Greater Than sign (>, U+003E).

⚡ Quick Reference — Not Greater Than

Unicode U+226F

Mathematical Operators

Hex Code ≯

Hexadecimal reference

HTML Code ≯

Decimal reference

Named Entity ≯

HTML5 named entity for U+226F

Reference Table
Name           Value
────────────   ──────────
Unicode        U+226F
Hex code       ≯
HTML code      ≯
Named entity   ≯
CSS code       \226F
Meaning        Not greater than
Related        U+003E = greater than (>, >)
               U+2265 = greater than or equal (≥, ≥)
               U+2260 = not equal (≠, ≠)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ≯ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

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

🌐 Browser Support

U+226F 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 3 ≯ 5 (3 is not greater than 5)
Large glyph
Comparison family > greater   ≯ not greater   ≥ greater or equal
Example x ≯ 10 when x ≤ 10
Entity refs &ngt; &#x226F; &#8815; \226F

🧠 How It Works

1

Named Entity

&ngt; is the HTML named entity for U+226F—the most readable choice when writing inequality markup.

HTML markup
2

Hexadecimal Code

&#x226F; uses the Unicode hexadecimal value 226F to display the not-greater-than symbol.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+226F in Mathematical Operators (U+2200–U+22FF).

Use Cases

The ≯ symbol (&ngt;) is commonly used in:

📐 Mathematics

Expressing that one quantity is not greater 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 strict upper bounds.

🎓 Online courses

Interactive math modules with web-based notation.

🌐 Reference guides

Unicode charts and HTML entity documentation for math symbols.

💡 Best Practices

Do

  • Use &ngt; for readable inequality markup
  • Distinguish ≯ from > (basic greater-than) and ≥ (greater or equal)
  • Pair ≯ with plain-language description on first use
  • Use numeric references in generated or XML-first workflows
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ≯ (&ngt;) with > (&gt;, U+003E)
  • Confuse ≯ with ≠ (not equal) or ≮ (not less than)
  • Use padded Unicode notation like U+0226F—the correct value is U+226F
  • Put CSS escape \226F in HTML text nodes
  • Use \0226F in CSS—the correct escape is \226F

Key Takeaways

1

Three HTML references plus CSS all render ≯

&#x226F; &#8815; &ngt;
2

For CSS stylesheets, use the escape in the content property

\226F
3

Unicode U+226F — NOT GREATER-THAN

4

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

5

&ngt; is the preferred named entity for readable source markup

❓ Frequently Asked Questions

Use &ngt; (named), &#x226F; (hex), &#8815; (decimal), or \226F in CSS content. All produce ≯.
U+226F (NOT GREATER-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 226F, decimal 8815. Named entity: &ngt;.
Use ≯ in formal mathematical notation when you need the dedicated “not greater than” operator (≯). Use > (&gt;, U+003E) for the ordinary greater-than sign in code snippets or general comparisons.
HTML references (&#8815;, &#x226F;, or &ngt;) go directly in markup. The CSS escape \226F is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &ngt; is the named HTML entity for U+226F and is the most readable option in source markup.

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