HTML Entity for Exists (∃)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2203

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

Unicode U+2203

Mathematical Operators

Hex Code ∃

Hexadecimal reference

HTML Code ∃

Decimal reference

Named Entity ∃

There exists / existential

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2203
Hex code       ∃
HTML code      ∃
Named entity   ∃
CSS code       \2203
Meaning        Existential quantifier (there exists)
Related        U+2200 = For all (∀, ∀)
1

Complete HTML Example

This example demonstrates the Exists (∃) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2203";
  }
 </style>
</head>
<body>
<p>Exists using Hexadecimal: &#x2203;</p>
<p>Exists using HTML Code: &#8707;</p>
<p>Exists using HTML Entity: &exist;</p>
<p id="point">Exists using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Exists entity is universally supported in modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the existential quantifier (∃) in logic notation and compared with for all (∀):

Predicate logic x P(x)
Large glyph
vs for all &exist; ∃   vs   &forall;
Entities &exist;
Numeric refs &#x2203; &#8707; &exist;

🧠 How It Works

1

Hexadecimal Code

&#x2203; uses the Unicode hexadecimal value 2203 to display the Exists. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8707; uses the decimal Unicode value 8707 to display the same character.

HTML markup
3

Named Entity

&exist; is the semantic named entity for the existential quantifier—easiest to read in logic and math markup.

HTML markup
4

CSS Entity

\2203 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📐 Logic

Predicate logic and formal proofs (there exists).

📝 Mathematics

Equations, set theory, and analysis notation.

💻 CS

Algorithms, type theory, and formal methods docs.

🎓 Education

Logic courses, textbooks, and tutorial pages.

📰 Research

Papers and technical writing on the web.

🌐 Symbol guides

Math and logic entity reference pages.

💡 Best Practices

Do

  • Use &exist; for readable existential quantifier markup
  • Use &forall; (∀) 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 ∃ (&exist;) with ∀ (&forall;, for all)
  • Substitute the letter E for the quantifier symbol
  • Put CSS escape \2203 in HTML text nodes
  • Assume every font distinguishes ∃ and ∀ clearly
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references plus CSS all render ∃

&#x2203; &#8707; &exist;
2

For CSS stylesheets, use the escape in the content property

\2203
3

Unicode U+2203 — EXISTS (existential quantifier)

4

&exist; is the standard named entity

5

Pair with ∀ for complete quantifier notation

❓ Frequently Asked Questions

Use &#x2203; (hex), &#8707; (decimal), &exist; (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.”
When your content requires the existential quantifier in logic, mathematics, computer science, formal proofs, or educational material on predicate logic.
&exist; renders ∃ (U+2203, there exists). &forall; renders ∀ (U+2200, for all). Different quantifiers with different meanings in logic.
HTML entities (&#8707;, &#x2203;, or &exist;) 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful