HTML Entity for Precedes (≺)

What You'll Learn
How to display the precedes symbol (≺) in HTML using various entity methods. The precedes operator denotes a strict order relation—read as “precedes” or “comes before” in mathematics, set theory, and logic.
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+227B (≻, succeeds) or < (less-than).
⚡ Quick Reference — Precedes Entity
U+227AMathematical Operators block
≺Hexadecimal reference
≺Decimal reference
≺Most readable option
Name Value
──────────── ──────────
Unicode U+227A
Hex code ≺
HTML code ≺
Named entity ≺
CSS code \227A
Meaning Precedes (strict order relation)
Related U+227B = Succeeds (≻)
U+227E = Precedes or equal (≾)
U+003C = Less-than (<)
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: "\227A";
}
</style>
</head>
<body>
<p>Precedes (hex): a ≺ b</p>
<p>Precedes (decimal): a ≺ b</p>
<p>Precedes (named): a ≺ b</p>
<p>Precedes (CSS): a <span id="point"></span> b</p>
</body>
</html>🌐 Browser Support
The precedes entity is universally supported in all modern browsers:
👀 Live Preview
See the precedes symbol rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
≺ uses the Unicode hexadecimal value 227A to display the precedes symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≺ uses the decimal Unicode value 8826 to display the same character. This is one of the most commonly used methods.
CSS Entity
\227A 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 the precedes relation.
Same visual result
All four methods produce the precedes glyph: ≺. Unicode U+227A sits in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The precedes symbol (≺) commonly appears in the following scenarios:
Partial orders, chains, and strict precedence relations in math texts.
Research articles, theses, and lecture notes on relations and lattices.
Logic and proof documentation requiring precise operator symbols.
Online references, wikis, and educational content on order relations.
Character tables and Mathematical Operators guides.
Blog posts and tutorials explaining precedence and ordering notation.
Pair ≺ with plain-language “precedes” on first use in educational content.
💡 Best Practices
Do
- Use
≺for readable order-relation markup - Distinguish ≺ (precedes) from ≻ (succeeds) and < (less-than)
- Pick one style (hex / decimal / named) per project
- Use MathML or LaTeX for complex multi-line formulas when appropriate
- Test the glyph across browsers and math-friendly fonts
Don’t
- Substitute < for ≺ when the mathematical precedes operator is intended
- Confuse ≺ with subset ⊂ unless your notation explicitly equates them
- Use CSS escape
\227Ainside HTML text nodes - Use HTML entities in JS (use
\u227Ainstead) - Mix entity styles randomly in one file
Key Takeaways
Three HTML references all render ≺
≺ ≺ ≺For CSS stylesheets, use the escape in the content property
\227AUnicode U+227A belongs to the Mathematical Operators block (U+2200–U+22FF)
Prefer ≺ for readability—the standard named entity for precedes
Previous: Pound Sign (£) Next: Precedes But Not Equivalent To (⋨)
❓ Frequently Asked Questions
≺ (hex), ≺ (decimal), ≺ (named), or \227A in CSS content. All produce ≺.U+227A (hex 227A, decimal 8826). It denotes the strict precedes relation in the Mathematical Operators block.≺ or ≺) go directly in markup. The CSS escape \227A is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.≺, ≺, 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
