HTML Entity for Star Equals (≛)

What You'll Learn
How to display Star Equals (≛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+225B (STAR EQUALS) in the Mathematical Operators block (U+2200–U+22FF)—a binary operator combining a star with an equals sign, used in algebraic notation.
Render it with ≛, ≛, or CSS \225B. There is no named HTML entity. Do not confuse ≛ with Star Operator ⋆ (U+22C6) or ordinary equals =.
⚡ Quick Reference — Star Equals
U+225BMathematical Operators
≛Hexadecimal reference
≛Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+225B
Hex code ≛
HTML code ≛
Named entity (none)
CSS code \225B
Meaning Star equals operator
Not the same U+22C6 = Star Operator (⋆)
U+003D = Equals sign (=)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ≛ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\225B";
}
</style>
</head>
<body>
<p>Algebra (hex): a ≛ b</p>
<p>Algebra (decimal): x ≛ y</p>
<p id="point">Algebra (CSS): Notation </p>
</body>
</html>🌐 Browser Support
Star Equals (≛) renders in modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the star equals operator in mathematical contexts:
🧠 How It Works
Hexadecimal Code
≛ references code point U+225B using hex digits 225B.
Decimal HTML Code
≛ is the decimal equivalent (8795) for the same character.
CSS Entity
\225B is the CSS escape for U+225B, used in the content property of pseudo-elements.
Same visual result
All three methods produce ≛. Unicode U+225B in Mathematical Operators (U+2200–U+22FF). No named entity.
Use Cases
Star Equals (≛) commonly appears in:
Equations and formulas using star-equality notation in algebra.
Research articles, proofs, and scholarly mathematical content.
Online courses, textbooks, and tutorials teaching algebra.
Technical documentation and reference materials for mathematical notation.
Calculator interfaces and computational tool labels.
Symbol tables and operator cheat sheets for developers.
💡 Best Practices
Do
- Use
≛or≛in HTML markup - Provide context or alt text for screen readers in mathematical content
- Use math-friendly fonts that support Mathematical Operators
- Pick hex or decimal style and stay consistent per project
- Consider MathML or LaTeX for complex equations alongside HTML entities
Don’t
- Use padded Unicode notation like U+0225B—the correct value is
U+225B - Use CSS
\0225Bwith a leading zero—prefer\225B - Confuse ≛ with Star Operator ⋆ (U+22C6) or plain equals (=)
- Substitute asterisk-plus-equals (*=) when the proper operator is required
- Put CSS escape
\225Bin HTML text nodes
Key Takeaways
Three ways to render U+225B in HTML and CSS
≛ ≛For CSS stylesheets, use \225B in the content property
U+225B — STAR EQUALS (≛)
Distinct from Star Operator ⋆ and ordinary equals (=)
Previous: Star David Next: Star Operator
❓ Frequently Asked Questions
≛ (hex), ≛ (decimal), or \225B in CSS content. There is no named HTML entity. All three render ≛.U+225B (STAR EQUALS). Mathematical Operators (U+2200–U+22FF). Hex 225B, decimal 8795.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, stars, and more.
8 people found this page helpful
