HTML Entity for Exists (∃)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2203

What Is Exists?

Exists (∃) is the Unicode character at U+2203 in Mathematical Operators. Official name: THERE EXISTS. HTML5 names it ∃ (alias ∃). It is the existential quantifier: “there exists.”

Remember
Character     ∃
Unicode       U+2203
Named entity  ∃
Aliases       ∃
Hex entity    ∃
Decimal       ∃
CSS escape    \2203
Not the same  ∀ (∀) · ∄ (∄)

Prefer ∃ in HTML markup. You can also use ∃ / ∃, or type ∃ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity∃HTML markup (preferred)
Alias∃Same glyph as ∃
Hex entity∃HTML markup
Decimal entity∃HTML markup
Direct character∃HTML text (UTF-8)
CSS escape\2203Stylesheet content

When to Use Which

SituationUse
Existential quantifier (“there exists”)∃ or type ∃
Universal quantifier (“for all”)For all (∀, ∀)
Does not existDoes not exist (∄, ∄)
Element of a setElement of (∈, ∈)
Generated text via ::before / ::aftercontent: "\2203"

Live Preview

Exists rendered alone, in a sample formula, and compared with related logic symbols.

Glyph ∃
Large glyph ∃
Sample ∃x P(x)
Compared ∃   ∀   ∄   ∈
With entities Named: ∃ | Hex: ∃ | Decimal: ∃

Complete HTML Example

One page that shows Exists with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to display ∃ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Exists (U+2203) in HTML</title>
  <style>
    #point::after {
      content: "\2203";
    }
  </style>
</head>
<body>
  <p>Built with Named: &exist;</p>
  <p>Built with Hex: &#x2203;</p>
  <p>Built with Decimal: &#8707;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ∃</p>
  <p>Logic: &exist;x P(x)</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &exist; is the preferred HTML5 name for U+2203 → ∃.

2. Hex: &#x2203; inserts the same code point. Same visual as named.

3. Decimal: same code point as 8707 → &#8707;.

4. CSS: use \2203 in content (not an HTML entity). #point::after appends ∃.

5. Typed: paste ∃ in a UTF-8 document, or write a formula like &exist;x P(x).

Pitfalls & Tips

Common mistakes when working with Exists.

Name

Prefer &exist;

&exist; is the clear HTML5 named form. &Exists; is a valid alias. Do not use &exists; — that name is not standard.

∀

Not for all

U+2200 (&forall;) is the universal quantifier. ∃ means “there exists,” not “for all.”

∄

Not does-not-exist

U+2204 (&nexist;) is the negated form. Prefer it over inventing a crossed-out ∃.

CSS vs HTML

Do not mix escapes

\2203 belongs in CSS strings. &exist; / &#x2203; / &#8707; belong in HTML.

Fonts

Math operator coverage

Some fonts omit Mathematical Operators. Prefer a font with solid math coverage for logic pages.

a11y

Add accessible text

Screen readers may not announce ∃ clearly. Prefer nearby prose (for example “there exists”) when the symbol carries meaning.

Semicolon

End references

Always finish entities with ; — write &exist;, not &exist.

Browser Support

Exists (U+2203) and its entity forms (&exist;, &#x2203;, &#8707;, CSS \\2203) are supported in all mainstream browsers. Visible glyphs depend on Mathematical Operators font coverage.

✓ Universal support

Exists (&#x2203;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2203 / &exist; Full support

Bottom line: Prefer &exist; in HTML. Use &#x2203; / &#8707; when numeric form is required, and \\2203 only inside CSS content.

Key Takeaways

  • Unicode: exists is U+2203 (decimal 8707) — glyph ∃.
  • HTML: prefer &exist; (alias &Exists;).
  • CSS: use \2203 inside content for generated text.
  • Meaning: ∃ ≠ for all ∀ ≠ does not exist ∄.

One line: U+2203 → &exist; / &#x2203; / CSS \2203.

Frequently Asked Questions

Use &exist; (named), &#x2203; (hex), &#8707; (decimal), type ∃ directly in UTF-8, or the CSS escape \2203 in content. Alias &Exists; also resolves to U+2203.
U+2203 (THERE EXISTS). Hex 2203, decimal 8707. It belongs to the Mathematical Operators block (U+2200–U+22FF).
Yes. &exist; is the preferred HTML5 named entity for U+2203. &Exists; is a valid alias. Note: &exists; (all lowercase s) is not a standard named entity.
Use it for the existential quantifier in logic and math (for example ∃x P(x)). Prefer &forall; for universal quantification, and &nexist; when you need “does not exist.”
HTML entities (&exist;, &#8707;, or &#x2203;) go in markup. The CSS escape \2203 goes in stylesheet strings (usually content on ::before/::after).
No. U+2203 is ∃ (there exists). U+2200 is ∀ (for all). U+2204 is ∄ (there does not exist).

Did you know?

Exists is Unicode U+2203 (decimal 8707) — glyph ∃ (THERE EXISTS) in Mathematical Operators. HTML5 names it &exist; (alias &Exists;). It is the existential quantifier in logic. Negation is &nexist; / &nexists; (∄). Pair with for all (&forall;, ∀).

Next: Ezh Curl

Learn the HTML entity for ezh curl (U+0293).

Ezh Curl tutorial →

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