HTML Entity for Delta Equal To (≜)

What You'll Learn
How to display the Delta Equal To symbol (≜) in HTML using named, hexadecimal, decimal, and CSS entity methods. Also called triangle equal, this character is U+225C in the Mathematical Operators block (U+2200–U+22FF) and means equal by definition or is defined as in mathematics, logic, and formal specifications.
This character can be rendered with the named entity ≜, hexadecimal ≜, decimal ≜, or CSS escape \225C in the content property. Do not confuse with XOR (⊻) or the Greek letter Delta (Δ).
⚡ Quick Reference — Delta Equal To
U+225CMathematical Operators block
≜Hexadecimal reference
≜Decimal reference
≜Triangle equal (most readable)
Name Value
──────────── ──────────
Unicode U+225C
Hex code ≜
HTML code ≜
Named entity ≜
CSS code \225CComplete HTML Example
This example demonstrates the Delta Equal To symbol (≜) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\225C";
}
</style>
</head>
<body>
<p>Delta Equal To using Hexadecimal: ≜</p>
<p>Delta Equal To using HTML Code: ≜</p>
<p>Delta Equal To using HTML Entity: ≜</p>
<p id="point">Delta Equal To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Delta Equal To entity is supported in all modern browsers; use a font with Mathematical Operators coverage for best display:
👀 Live Preview
See the Delta Equal To symbol (≜) in mathematical and formal contexts:
🧠 How It Works
Named HTML Entity
≜ is the semantic named entity for Delta Equal To (triangle equal)—the easiest to read in source HTML.
Hexadecimal Code
≜ uses the Unicode hexadecimal value 225C. The x prefix indicates hexadecimal format.
Decimal HTML Code
≜ uses the decimal Unicode value 8796 to display the same character.
CSS Entity
\225C is used in CSS stylesheets, particularly in the content property of ::before and ::after.
Same visual result
All four methods produce the Delta Equal To symbol: ≜. Unicode U+225C is in Mathematical Operators (U+2200–U+22FF).
Use Cases
The Delta Equal To symbol (≜) is commonly used in:
Equal by definition in equations (e.g. f(x) ≜ x2, n ≜ 10).
Formal logic, type theory, and programming language semantics.
Engineering docs, standards, and formal notation guides.
Papers, theses, and textbooks in math and computer science.
API docs, algorithms, and tutorials that introduce definitions with ≜.
Unicode tables and HTML entity guides for math operators.
💡 Best Practices
Do
- Use
≜for readable definitional equality - Choose math-friendly fonts (Cambria Math, STIX Two Math)
- Reserve ≜ for “defined as,” not ordinary equality (=)
- Use
\225Conly inside CSScontent - Pick one entity style per project
Don’t
- Confuse ≜ with = (equals) or ≡ (identical to)
- Confuse with Greek Delta Δ or XOR ⊻
- Rely on fonts that omit Mathematical Operators
- Put CSS escape
\225Cin HTML text nodes - Mix entity styles randomly in one file
Key Takeaways
Four ways to render ≜ in HTML
≜ ≜ ≜For CSS stylesheets, use the escape in the content property
\225CU+225C means equal by definition (triangle equal)
Prefer ≜ for readability in math-heavy markup
Mathematical Operators block—widely supported in modern browsers
❓ Frequently Asked Questions
≜ (named), ≜ (hex), ≜ (decimal), or \225C in CSS content. All produce ≜.U+225C (DELTA EQUAL TO). Mathematical Operators block. Hex 225C, decimal 8796. Denotes equal by definition in mathematics and logic.≜, ≜, or ≜) go in markup. The CSS escape \225C is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
