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

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2268

What Is the Less Than But Not Equal To Entity?

Less Than But Not Equal To (≨) is the Mathematical Operators character at Unicode U+2268 (LESS-THAN BUT NOT EQUAL TO). It means “less than, and not equal” — often drawn as < over a double equals with a slash.

Remember
Character     ≨
Unicode       U+2268
Named entity  &lnE;  or  &lneqq;
Hex entity    &#x2268;
Decimal       &#8808;
CSS escape    \2268
Not the same  &lne; (U+2A87) · &le; (≤) · &ne; (≠) · &gnE; (≩)

Prefer &lnE; or &lneqq; in HTML. Alternatives: &#x2268; or &#8808;. Watch the capital E — &lne; is a different symbol.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity&lnE; or &lneqq;HTML markup (best default)
Hex entity&#x2268;HTML markup
Decimal entity&#8808;HTML markup
CSS escape\2268Stylesheet content
Direct character≨UTF-8 HTML text

When to Use Which

SituationUse
Readable math in HTML&lnE; or &lneqq;
Numeric entity required&#x2268; or &#8808;
Generated text via ::before / ::aftercontent: "\2268"
Greater-than but not equalUse &gnE; (U+2269)
Less than or equal (≤)Use &le; — different meaning

Live Preview

Less Than But Not Equal To in common comparison contexts.

Inequality a ≨ b
Large glyph ≨
Named entity &lnE; → ≨
vs ≤ / ≠ / ≩ ≨  |  ≤  |  ≠  |  ≩
With entities Named: ≨ | Hex: ≨ | Decimal: ≨

Complete HTML Example

One page that shows this symbol with named, hex, decimal, and CSS. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ≨ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Less Than But Not Equal To (≨)</title>
  <style>
    #point::after {
      content: "\2268";
    }
  </style>
</head>
<body>
  <p>Using Named: &lnE;</p>
  <p>Using Alias: &lneqq;</p>
  <p>Using Hex Code: &#x2268;</p>
  <p>Using HTML Code: &#8808;</p>
  <p id="point">Using CSS Entity: </p>
  <p><code>a &lnE; b</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &lnE; and &lneqq; are HTML5 names for U+2268 → ≨. Prefer these for readable source.

2. Hex: U+2268 → &#x2268; in HTML. Same glyph as named.

3. Decimal: same code point as 8808 → &#8808;.

4. CSS: use \2268 in content (not an HTML entity). #point::after appends that ≨ after the paragraph text.

5. Case: &lne; / &lneq; are not aliases — they point to U+2A87. Keep the capital E in &lnE;.

Pitfalls & Tips

Common mistakes when working with Less Than But Not Equal To.

Case

&lnE; ≠ &lne;

Capital E selects U+2268. Lowercase &lne; / &lneq; select U+2A87 — a different not-equal form.

Meaning

Not the same as ≤

&le; means less-than-or-equal. &lnE; means less-than-but-not-equal. Pick the relation you actually need.

Pair

Mirror is &gnE;

Greater-than but not equal is U+2269 — use &gnE; / &gneqq;, not this entity flipped by CSS.

Fonts

Math glyph coverage

Most modern fonts include U+2268, but always check your target devices if the symbol is critical.

CSS vs HTML

Do not mix escapes

\2268 belongs in CSS. &lnE; / &#x2268; / &#8808; belong in HTML.

A11y

Add nearby words

Pair the glyph with label text (for example a &lnE; b) or use aria-label when it stands alone.

Semicolon

End references

Always finish with ; — write &lnE;, not &lnE.

Browser Support

Less Than But Not Equal To (U+2268) and its entity forms (&lnE;, &lneqq;, &#x2268;, &#8808;, CSS \\2268) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Less Than But Not Equal To (&#x2268;)

Encode with named, hex, decimal, or CSS escape — or type ≨ directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+2268 Full support

Bottom line: Prefer &lnE; or &lneqq; for readable HTML. Use \\2268 only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+2268 (decimal 8808).
  • HTML: prefer &lnE; or &lneqq; — also &#x2268; / &#8808;.
  • CSS: use \2268 inside content for generated text.
  • Watch out: &lnE; ≠ &lne; ≠ &le;.

One line: U+2268 → &lnE; / &lneqq; / &#x2268; / CSS \2268.

Frequently Asked Questions

Use &lnE; or &lneqq; (named), &#x2268; (hex), &#8808; (decimal), or the CSS escape \2268 in the content property. All render ≨ when the font supports Mathematical Operators.
U+2268 (LESS-THAN BUT NOT EQUAL TO). Hex 2268, decimal 8808. It belongs to Mathematical Operators (U+2200–U+22FF).
Yes. HTML5 defines &lnE; and &lneqq; for U+2268. Prefer &lnE; or &lneqq; for readable math markup.
Use it in inequalities and proofs when a value is strictly less than another and not equal — the double-bar “not equal” form of less-than. Prefer named entities for readable source.
HTML entities (&lnE;, &lneqq;, &#8808;, or &#x2268;) go in markup. The CSS escape \2268 is used in stylesheets (usually in the content property of ::before/::after). Both render ≨.
No. &lnE; / &lneqq; are U+2268 (≨). Lowercase &lne; / &lneq; are U+2A87 (less-than and single-line not equal to). Entity names are case-sensitive.

Did you know?

Less Than But Not Equal To is Unicode U+2268 (decimal 8808) — LESS-THAN BUT NOT EQUAL TO in Mathematical Operators. HTML5 named entities: &lnE; and &lneqq;. Capital E matters: lowercase &lne; / &lneq; map to a different character (U+2A87).

Next: Less Than But Not Equivalent To

Learn the HTML entity for Less Than But Not Equivalent To — next in this sequence.

Continue tutorial →

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