HTML Entity for Precedes But Not Equivalent To (⋨)

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

What You'll Learn

How to display the precedes but not equivalent to symbol (⋨) in HTML using various entity methods. This operator expresses that one element precedes another but is not equivalent to it—used in order theory, lattice theory, and advanced mathematical notation.

This character is part of the Mathematical Operators Unicode block and can be rendered with a hexadecimal reference, a decimal reference, the named entity ⋨, or a CSS escape in the content property. Do not confuse ⋨ with U+227A (≺, strict precedes) or U+227C (≼, precedes or equal to).

⚡ Quick Reference — Precedes But Not Equivalent To

Unicode U+22E8

Mathematical Operators block

Hex Code ⋨

Hexadecimal reference

HTML Code ⋨

Decimal reference

Named Entity ⋨

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22E8
Hex code       ⋨
HTML code      ⋨
Named entity   ⋨
CSS code       \22E8
Meaning        Precedes but not equivalent to
Related        U+227A = Precedes (≺)
               U+227C = Precedes or equal (≼)
               U+22E9 = Succeeds but not equivalent (⋩)
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: "\22E8";
  }
 </style>
</head>
<body>
<p>Relation (hex): a &#x22E8; b</p>
<p>Relation (decimal): a &#8936; b</p>
<p>Relation (named): a &prnsim; b</p>
<p>Relation (CSS): a <span id="point"></span> b</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The precedes but not equivalent to entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ⋨ rendered live in different contexts:

Inline relation ab (precedes, not equivalent)
Large glyph
Compared to Precedes ≺  |  Precedes or equal ≼
Dual symbol Succeeds but not equivalent ⋩
Entity refs &#x22E8; &#8936; &prnsim; \22E8

🧠 How It Works

1

Hexadecimal Code

&#x22E8; uses the Unicode hexadecimal value 22E8 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
4

Named Entity

&prnsim; is the semantic named entity — the easiest to read in source HTML for this relation operator.

HTML markup
=

Same visual result

All four methods produce: . Unicode U+22E8 in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The precedes but not equivalent to symbol (⋨) commonly appears in:

📐 Order Theory

Strict precedence relations that exclude equivalence between elements.

📄 Academic Papers

Research on lattices, posets, and relational algebra notation.

🧮 Formal Logic

Logic texts distinguishing precedes from equivalence.

💻 Math Documentation

Online references and wikis on order relations and symbols.

📋 Unicode References

Character tables and Mathematical Operators guides.

🎓 Education

University courses teaching advanced relation notation in HTML.

♿ Accessibility

Pair ⋨ with a plain-language explanation on first use.

💡 Best Practices

Do

  • Use &prnsim; for readable relation markup
  • Distinguish ⋨ from ≺ (precedes) and ≼ (precedes or equal)
  • Pick one style (hex / decimal / named) per project
  • Use MathML or LaTeX for complex multi-line formulas when appropriate
  • Test rendering across browsers and math fonts

Don’t

  • Substitute ≺ (&pr;) when ⋨ (&prnsim;) is the intended relation
  • Confuse ⋨ with ⋩ (succeeds but not equivalent)
  • Use CSS escape \22E8 inside HTML text nodes
  • Use HTML entities in JS (use \u22E8 instead)
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references all render ⋨

&#x22E8; &#8936; &prnsim;
2

For CSS stylesheets, use the escape in the content property

\22E8
3

Unicode U+22E8 belongs to the Mathematical Operators block (U+2200–U+22FF)

4

Prefer &prnsim; for readability—standard named entity for this relation

❓ Frequently Asked Questions

Use &#x22E8; (hex), &#8936; (decimal), &prnsim; (named), or \22E8 in CSS content. All produce ⋨.
U+22E8 (PRECEDES BUT NOT EQUIVALENT TO). Mathematical Operators block. Hex 22E8, decimal 8936.
≺ (U+227A, &pr;) is strict precedes. ⋨ (U+22E8, &prnsim;) is precedes but not equivalent to—a relation that additionally excludes equivalence between the operands.
In mathematical notation, order theory, lattice theory, logic, academic papers, and any content requiring the ⋨ relation operator.
Yes. &prnsim;, &#8936;, and &#x22E8; are equivalent in modern browsers and all render ⋨.

Explore More HTML Entities!

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