HTML Entity for Square Original Of Not Equal To (⋥)

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

What Is Square Original Of Not Equal To?

Square original of or not equal to (⋥) is the Unicode character at U+22E5 in Mathematical Operators. Official name: SQUARE ORIGINAL OF OR NOT EQUAL TO. It is a square-style original-of relation that also marks inequality — the dual of ⋤.

Remember
Character     ⋥
Unicode       U+22E5
Named entity  (none)
Hex entity    ⋥
Decimal       ⋥
CSS escape    \22E5
Not the same  ⊐ · ⊒ · ⋣

Prefer ⋥ or ⋥ in HTML markup. You can also type ⋥ in UTF-8. For plain square original of, use ⊐ (⊐) instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNoneUse numeric or type the character
Direct character⋥HTML text (UTF-8)
Hex entity⋥HTML markup (preferred)
Decimal entity⋥HTML markup
CSS escape\22E5Stylesheet content
Square original of (related)⊐ (U+2290)Named ⊐

When to Use Which

SituationUse
Square original of or not equal to⋥ or type ⋥
Plain square original of⊐ (⊐)
Square original of or equal to⊒ (⊒)
Not square original of or equal to⋣ (⋣)
Generated text via ::before / ::aftercontent: "\22E5"

Live Preview

Square original of or not equal to rendered alone and next to related relations.

Large glyph ⋥
Notation A ⋥ B
Compared ⊐  |  ⋥  |  ⊒
Hint Compare: Original ⊐ | Not equal ⋥ | Or equal ⊒
With entities Hex: ⋥ | Decimal: ⋥

Complete HTML Example

One page that shows the symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⋥, plus a short notation example. No named entity exists.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Square Original Of Not Equal To (⋥)</title>
  <style>
    #point::after {
      content: "\22E5";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x22E5;</p>
  <p>Using HTML Code: &#8933;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⋥</p>
  <p>Notation: A &#x22E5; B</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+22E5 → &#x22E5; in HTML. Preferred numeric form when you need an entity.

2. Decimal: same code point as 8933 → &#8933;. Same glyph as hex.

3. CSS: use \22E5 in content (not an HTML entity). #point::after appends that ⋥ after the paragraph text.

4. Typed / notation: paste ⋥ in UTF-8, or write A &#x22E5; B for a short relation.

5. No named entity: HTML5 does not define a name for U+22E5 — use numeric references or type the character.

Pitfalls & Tips

Common mistakes when working with U+22E5.

vs ⊐

Not plain square original of

U+2290 (⊐, &sqsup;) is the basic relation. U+22E5 adds the “not equal” sense.

vs ⊒

Not or-equal form

⊒ (U+2292, &sqsupe;) means square original of or equal to — the opposite inequality flavor.

vs ⋣

Not &nsqsupe;

⋣ (U+22E3) is “not square original of or equal to.” Different character and different named entity.

Named

No named HTML entity

There is no &sqsupneq; for U+22E5. Use &#x22E5; or &#8933;.

CSS vs HTML

Do not mix escapes

\22E5 belongs in CSS strings. &#x22E5; / &#8933; belong in HTML.

A11y

Name the relation in context

Screen readers may announce this symbol unevenly. Prefer nearby text when the glyph carries meaning alone.

Browser Support

Square original of or not equal to (U+22E5) and its entity forms (&#x22E5;, &#8933;, CSS \\22E5) are supported in all mainstream browsers. Visible glyphs depend on Mathematical Operators font coverage.

✓ Universal support

Square Original Of Not Equal To (&#x22E5;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+22E5 / entities Full support

Bottom line: Prefer &#x22E5; or &#8933; in HTML. Use \\22E5 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: this relation is U+22E5 (decimal 8933) — glyph ⋥.
  • HTML: no named entity — use &#x22E5; / &#8933; / type ⋥.
  • CSS: use \22E5 inside content for generated text.
  • Meaning: ⋥ is “or not equal” — not ⊐ (&sqsup;), not ⊒.

One line: U+22E5 → &#x22E5; / &#8933; / CSS \22E5 (no named entity).

Frequently Asked Questions

Use &#x22E5; (hex), &#8933; (decimal), type ⋑ directly in UTF-8, or the CSS escape \22E5 in content. There is no named HTML entity.
U+22E5 (SQUARE ORIGINAL OF OR NOT EQUAL TO). Hex 22E5, decimal 8933. It belongs to Mathematical Operators (U+2200–U+22FF).
No. Use numeric references &#x22E5; or &#8933;, or type ⋑ in UTF-8.
No. ⋑ is U+22E5 (square original of or not equal to). ⊐ is U+2290 (&sqsup;). ⊒ is U+2292 (&sqsupe;).
Use it when your math notation needs a square-original-of relation that is not equal — not as a substitute for plain ⊐ or ⊒.
HTML entities (&#8933; or &#x22E5;) go in markup. The CSS escape \22E5 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Square original of or not equal to is Unicode U+22E5 (decimal 8933) — glyph ⋥ in Mathematical Operators (U+2200–U+22FF). Official name: SQUARE ORIGINAL OF OR NOT EQUAL TO. HTML5 has no named entity — use &#x22E5; or &#8933;. Do not confuse with square original of U+2290 (&sqsup;, ⊐) or square original of or equal to U+2292 (&sqsupe;, ⊒).

Next: Square Original Of Or Equal To

Learn the HTML entity for square original of or equal to (U+2292).

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