HTML Entity for Strictly Equivalent To (≣)

What You'll Learn
How to display Strictly Equivalent To (≣) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2263 (STRICTLY EQUIVALENT TO) in the Mathematical Operators block (U+2200–U+22FF)—a relation symbol for strict equivalence or congruence in logic and algebra.
Render it with ≣, ≣, or CSS \2263. There is no named HTML entity. Do not confuse ≣ with Identical To ≡ (U+2261, ≡) or plain equals (=).
⚡ Quick Reference — Strictly Equivalent To
U+2263Mathematical Operators
≣Hexadecimal reference
≣Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2263
Hex code ≣
HTML code ≣
Named entity (none)
CSS code \2263
Meaning Strictly equivalent to
Not the same U+2261 = Identical To (≡, ≡)
U+224D = Equivalent To (≍, ≍)
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: "\2263";
}
</style>
</head>
<body>
<p>Logic (hex): A ≣ B</p>
<p>Logic (decimal): x ≣ y</p>
<p id="point">Logic (CSS): Relation </p>
</body>
</html>🌐 Browser Support
Strictly Equivalent To (≣) renders in modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the strictly equivalent to relation in mathematical contexts:
🧠 How It Works
Hexadecimal Code
≣ references code point U+2263 using hex digits 2263.
Decimal HTML Code
≣ is the decimal equivalent (8803) for the same character.
CSS Entity
\2263 is the CSS escape for U+2263, used in the content property of pseudo-elements.
Same visual result
All three methods produce ≣. Unicode U+2263 in Mathematical Operators (U+2200–U+22FF). No named entity.
Use Cases
Strictly Equivalent To (≣) commonly appears in:
Equations and formulas expressing strict equivalence relations.
Formal logic, algebra, and equivalence proofs in academic content.
Research articles, theorems, and scholarly mathematical documentation.
Technical documentation and reference materials for math notation.
Online courses and tutorials teaching logic and algebra.
Interactive tools and calculators displaying relation symbols.
💡 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 for complex equations alongside HTML entities
Don’t
- Use padded Unicode notation like U+02263—the correct value is
U+2263 - Use CSS
\02263with a leading zero—prefer\2263 - Confuse ≣ with Identical To ≡ (U+2261,
≡) - Substitute plain equals (=) when the strict equivalence symbol is required
- Put CSS escape
\2263in HTML text nodes
Key Takeaways
Three ways to render U+2263 in HTML and CSS
≣ ≣For CSS stylesheets, use \2263 in the content property
U+2263 — STRICTLY EQUIVALENT TO (≣)
Distinct from Identical To ≡ and Equivalent To ≍
Previous: Stress Outlined White Star Next: Subgroup Equal To
❓ Frequently Asked Questions
≣ (hex), ≣ (decimal), or \2263 in CSS content. There is no named HTML entity. All three render ≣.U+2263 (STRICTLY EQUIVALENT TO). Mathematical Operators (U+2200–U+22FF). Hex 2263, decimal 8803.≡. They are separate Unicode characters with different glyphs and meanings.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, relations, and more.
8 people found this page helpful
