HTML Entity for Questioned Equal To (≟)

What You'll Learn
How to display the questioned equal to symbol (≟) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This is an equals sign with a question mark above it, used in mathematics to express equality that is questioned or uncertain.
It is U+225F (QUESTIONED EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF). Use ≟, ≟, the named entity ≟, or CSS \225F. Do not confuse ≟ with ? (question mark ?).
⚡ Quick Reference — Questioned Equal To
U+225FMathematical Operators
≟Hexadecimal reference
≟Decimal reference
≟Not ? (question mark)
Name Value
──────────── ──────────
Unicode U+225F
Hex code ≟
HTML code ≟
Named entity ≟
CSS code \225F
Meaning Equals with question mark above
Related U+003D = Equal to (=)
U+2260 = Not equal to (≠)
U+003F = Question mark (?)
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: "\225F";
}
</style>
</head>
<body>
<p>Hex: ≟</p>
<p>Decimal: ≟</p>
<p>Named: ≟</p>
<p>CSS: <span id="point"></span></p>
</body>
</html>🌐 Browser Support
≟ renders when fonts include Mathematical Operators (U+2200–U+22FF):
👀 Live Preview
See ≟ rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
≟ uses the Unicode hexadecimal value 225F to display the questioned equal to symbol.
Decimal HTML Code
≟ uses the decimal Unicode value 8799 to display the same character.
CSS Entity
\225F is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Named Entity
≟ is the semantic named entity for ≟—note the spelling differs from ? (question mark).
Same visual result
All four methods produce: ≟. Unicode U+225F in Mathematical Operators (U+2200–U+22FF).
Use Cases
The questioned equal to symbol (≟) commonly appears in:
Expressing equality that is uncertain or under question.
Formal logic and proof sketches with tentative relations.
Textbooks and online courses teaching advanced symbols.
Web references comparing HTML entities to TeX symbols.
Character tables and Mathematical Operators documentation.
HTML versions of papers using questioned equality notation.
Pair ≟ with “questioned equal to” in alt text or nearby prose.
💡 Best Practices
Do
- Use
≟for readable math markup - Distinguish
≟(≟) from?(?) - Use math fonts when professional notation is required
- Pick one style (named, hex, or decimal) per project
- Test rendering across browsers and devices
Don’t
- Type
?when you mean ≟—that renders ? - Substitute = or ≠ when ≟ is intended
- Use CSS escape
\225Finside HTML text nodes - Assume every font includes U+225F—test STEM content
- Use HTML entities in JS (use
\u225Finstead)
Key Takeaways
Three HTML references plus a named entity render ≟
≟ ≟ ≟For CSS stylesheets, use the escape in the content property
\225FUnicode U+225F is QUESTIONED EQUAL TO in Mathematical Operators
≟ is the named entity—not ?
Previous: Glottal Stop with Stroke (ʡ) Next: Quotation Mark
❓ Frequently Asked Questions
≟ (hex), ≟ (decimal), ≟ (named entity), or \225F in CSS content. All produce ≟.U+225F (QUESTIONED EQUAL TO). Mathematical Operators block. Hex 225F, decimal 8799.≟ is the named HTML entity for ≟. Do not confuse it with ?, which renders the question mark (?).Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
