HTML Entity for Exists (∃)

What You'll Learn
How to display the Exists (∃) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2203 (EXISTS, existential quantifier) in the Mathematical Operators block (U+2200–U+22FF)—read as “there exists” in logic and mathematics.
Render it with ∃, ∃, the named entity ∃, or CSS escape \2203. Do not confuse ∃ with for all (∀, ∀) or the letter E.
⚡ Quick Reference — Exists
U+2203Mathematical Operators
∃Hexadecimal reference
∃Decimal reference
∃There exists / existential
Name Value
──────────── ──────────
Unicode U+2203
Hex code ∃
HTML code ∃
Named entity ∃
CSS code \2203
Meaning Existential quantifier (there exists)
Related U+2200 = For all (∀, ∀)Complete HTML Example
This example demonstrates the Exists (∃) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2203";
}
</style>
</head>
<body>
<p>Exists using Hexadecimal: ∃</p>
<p>Exists using HTML Code: ∃</p>
<p>Exists using HTML Entity: ∃</p>
<p id="point">Exists using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Exists entity is universally supported in modern browsers:
👀 Live Preview
See the existential quantifier (∃) in logic notation and compared with for all (∀):
∃ ∃ vs ∀ ∀∃ ∃🧠 How It Works
Hexadecimal Code
∃ uses the Unicode hexadecimal value 2203 to display the Exists. The x prefix indicates hexadecimal format.
Decimal HTML Code
∃ uses the decimal Unicode value 8707 to display the same character.
Named Entity
∃ is the semantic named entity for the existential quantifier—easiest to read in logic and math markup.
CSS Entity
\2203 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+2203 in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Exists (∃) commonly appears in:
Predicate logic and formal proofs (there exists).
Equations, set theory, and analysis notation.
Algorithms, type theory, and formal methods docs.
Logic courses, textbooks, and tutorial pages.
Papers and technical writing on the web.
Math and logic entity reference pages.
💡 Best Practices
Do
- Use
∃for readable existential quantifier markup - Use
∀(∀) when “for all” is meant - Use math-friendly fonts for clear ∃ rendering
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Add
aria-label(e.g. “there exists”) for accessibility
Don’t
- Confuse ∃ (
∃) with ∀ (∀, for all) - Substitute the letter
Efor the quantifier symbol - Put CSS escape
\2203in HTML text nodes - Assume every font distinguishes ∃ 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
\2203Unicode U+2203 — EXISTS (existential quantifier)
∃ is the standard named entity
Pair with ∀ for complete quantifier notation
❓ Frequently Asked Questions
∃ (hex), ∃ (decimal), ∃ (named), or \2203 in CSS content. All produce ∃.U+2203 (EXISTS, existential quantifier). Mathematical Operators block (U+2200–U+22FF). Hex 2203, decimal 8707. Read as “there exists.”∃ renders ∃ (U+2203, there exists). ∀ renders ∀ (U+2200, for all). Different quantifiers with different meanings in logic.∃, ∃, or ∃) go directly in markup. The CSS escape \2203 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 — logic, math operators, and more.
8 people found this page helpful
