For All

Shortcodes

Copy and paste codes for For All symbol ∀ to use in your websites, apps, blogs, and more.

Unicode
U+2200
HTML Code
∀
HEX Code
∀
CSS Code
\2200
JS/JSON
\u2200
Unix/C/PHP/JAVA
0x2200
URL-encode
%E2%88%80
copied

Customize For All Symbol

Customize ∀ symbol as you like and download For All as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add For All symbol in HTML, CSS, and JS?

Insert ∀ For All using HTML

1. Copy-paste For All directly:
<span>∀</span>
2. HTML Decimal Code:
<span>&#8704;</span>
3. Hexadecimal Code:
<span>&#x2200;</span>
Preview:

Add For All symbol with CSS

.for-all::before {
    content: '\\2200';
}
Preview: For All

For All JavaScript Code

1. Direct Symbol:
document.querySelector('.for-all').textContent = '∀';
2. Unicode Escape for ∀:
document.querySelector('.for-all').textContent = '\u2200';
Preview: