HTML Entity for Precedes Or Equal To (≼)

What You'll Learn
How to display the precedes or equal to symbol (≼) in HTML using various entity methods. This operator expresses that one element either strictly precedes another or is equal to it—commonly used in order theory, lattice theory, and relational 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), U+227E (≾, precedes or equivalent), or U+2264 (≤, less-than-or-equal).
⚡ Quick Reference — Precedes Or Equal To
U+227CMathematical Operators block
≼Hexadecimal reference
≼Decimal reference
≼Most readable option
Name Value
──────────── ──────────
Unicode U+227C
Hex code ≼
HTML code ≼
Named entity ≼
CSS code \227C
Meaning Precedes or equal to
Related U+227A = Precedes (≺)
U+227E = Precedes or equivalent (≾)
U+227D = Succeeds or equal (≽)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ≼ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\227C";
}
</style>
</head>
<body>
<p>Relation (hex): a ≼ b</p>
<p>Relation (decimal): a ≼ b</p>
<p>Relation (named): a ≼ b</p>
<p>Relation (CSS): a <span id="point"></span> b</p>
</body>
</html>🌐 Browser Support
The precedes or equal to entity is universally supported in all modern browsers:
👀 Live Preview
See ≼ rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
≼ uses the Unicode hexadecimal value 227C to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≼ uses the decimal Unicode value 8828 to display the same character.
CSS Entity
\227C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
≼ is the semantic named entity — the easiest to read in source HTML for this relation operator.
Same visual result
All four methods produce: ≼. Unicode U+227C in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The precedes or equal to symbol (≼) commonly appears in:
Partial orders and lattice relations where equality is allowed.
Research on posets, lattices, and relational algebra notation.
Logic texts defining reflexive or non-strict order relations.
Online references and wikis on order relations and symbols.
Character tables and Mathematical Operators guides.
University courses teaching order notation in HTML.
Pair ≼ with a plain-language explanation on first use.
💡 Best Practices
Do
- Use
≼for readable relation markup - Distinguish ≼ from ≺ (precedes) and ≾ (precedes or equivalent)
- 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 ≤ (≤) when ≼ (≼) is the intended relation
- Confuse ≼ with ≾ (precedes or equivalent)
- Use CSS escape
\227Cinside HTML text nodes - Use HTML entities in JS (use
\u227Cinstead) - Mix entity styles randomly in one file
Key Takeaways
Three HTML references all render ≼
≼ ≼ ≼For CSS stylesheets, use the escape in the content property
\227CUnicode U+227C belongs to the Mathematical Operators block (U+2200–U+22FF)
Prefer ≼ for readability—standard named entity for this relation
Previous: Precedes But Not Equivalent To (⋨) Next: Precedes Or Equivalent To (≾)
❓ Frequently Asked Questions
≼ (hex), ≼ (decimal), ≼ (named), or \227C in CSS content. All produce ≼.U+227C (PRECEDES OR EQUAL TO). Mathematical Operators block. Hex 227C, decimal 8828.≺) is strict precedes. ≼ (U+227C, ≼) is precedes or equal to—allowing either strict precedence or equality between the operands.≤) is less-than-or-equal for numeric comparison. They are different symbols with different meanings.≼, ≼, and ≼ 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.
8 people found this page helpful
