HTML Entity for Estimates (≙)

What You'll Learn
How to display the Estimates (≙) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2259 (ESTIMATES, wedge equal) in the Mathematical Operators block (U+2200–U+22FF)—used for “estimates” or “corresponds to” in mathematics and logic.
Render it with ≙, ≙, the named entity ≙, or CSS escape \2259. Do not confuse ≙ with the estimated symbol (℮, e-mark), equivalent to (≍, ≍), or identical to (≡, ≡).
⚡ Quick Reference — Estimates
U+2259Mathematical Operators
≙Hexadecimal reference
≙Decimal reference
≙Wedge equal / estimates
Name Value
──────────── ──────────
Unicode U+2259
Hex code ≙
HTML code ≙
Named entity ≙
CSS code \2259
Meaning Wedge equal (estimates / corresponds to)
Related U+212E = Estimated symbol (℮); U+224D = Equivalent to (≍ ≍)Complete HTML Example
This example demonstrates the Estimates (≙) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2259";
}
</style>
</head>
<body>
<p>Estimates using Hexadecimal: ≙</p>
<p>Estimates using HTML Code: ≙</p>
<p>Estimates using HTML Entity: ≙</p>
<p id="point">Estimates using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Estimates entity is universally supported in modern browsers:
👀 Live Preview
See the estimates symbol (≙) in math context and compared with the estimated symbol e-mark (℮):
≙ ≙ vs ℮≙ ≙🧠 How It Works
Hexadecimal Code
≙ uses the Unicode hexadecimal value 2259 to display this symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≙ uses the decimal Unicode value 8793 to display the same character.
Named Entity
≙ is the semantic named entity for estimates (wedge equal)—easiest to read in math and logic markup.
CSS Entity
\2259 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ≙. Unicode U+2259 in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Estimates (≙) commonly appears in:
Denote estimates or wedge-equal relations in equations and logic.
Calculus, algebra, and logic courses with correspondence notation.
Formal proofs with wedge-equal and estimates notation.
Technical docs with mathematical operator symbols.
Papers publishing correct operator symbols in HTML.
Math and logic entity reference pages.
💡 Best Practices
Do
- Use
≙for readable estimates markup (U+2259) - Use
≡(≡) when identical to (not wedge equal) is meant - Use math-friendly fonts for clear ≙ rendering
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Add context when the symbol carries semantic meaning
Don’t
- Confuse ≙ (
≙) with ℮ (estimated symbol e-mark) or ≍ (≍) - Use ≙ when simple equality (=) is sufficient
- Put CSS escape
\2259in HTML text nodes - Assume all fonts distinguish ≙, ℮, and ≍ clearly
- Mix entity styles randomly in one file
Key Takeaways
Three HTML references plus CSS all render ≙
≙ ≙ ≙For CSS stylesheets, use the escape in the content property
\2259Unicode U+2259 — ESTIMATES (wedge equal)
≙ is the standard named entity
Identical to is ≡ (≡, U+2261)
❓ Frequently Asked Questions
≙ (hex), ≙ (decimal), ≙ (named), or \2259 in CSS content. All produce ≙.U+2259 (ESTIMATES, wedge equal). Mathematical Operators block (U+2200–U+22FF). Hex 2259, decimal 8793.≙ renders ≙ (U+2259, mathematical estimates / wedge equal). ℮ (U+212E) is the estimated symbol (e-mark) on packaging. Different characters with different meanings.≙, ≙, or ≙) go directly in markup. The CSS escape \2259 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, logic, and more.
8 people found this page helpful
