There Does Not Exist

Shortcodes

Copy useful codes for there does not exist symbol ∄ to use in websites, apps, blogs, and docs.

Unicode
U+2204
HTML Code
∄
HEX Code
∄
CSS Code
\2204
JS/JSON
\u2204
Unix/C/PHP/JAVA
0x2204
URL-encode
%E2%88%84

Customize There Does Not Exist

Customize ∄, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use There Does Not Exist Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∄</span>
HTML Code:
<span>&#8708;</span>
HEX Code:
<span>&#x2204;</span>

Add with CSS

.there-does-not-exist::before {
  content: '\\2204';
}

Set it in JavaScript

document.querySelector('.there-does-not-exist').textContent = '∄';
copied