N-ary Intersection

Shortcodes

Copy and paste codes for N-ary Intersection symbol ⋂ to use in your websites, apps, blogs, and more.

Unicode
U+22C2
HTML Code
⋂
HEX Code
⋂
CSS Code
\22C2
JS/JSON
\u22C2
Unix/C/PHP/JAVA
0x22C2
URL-encode
%E2%8B%82
copied

Customize N-ary Intersection Symbol

Customize ⋂ symbol as you like and download N-ary Intersection 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 N-ary Intersection symbol in HTML, CSS, and JS?

Insert ⋂ N-ary Intersection using HTML

1. Copy-paste N-ary Intersection directly:
<span>⋂</span>
2. HTML Decimal Code:
<span>&#8898;</span>
3. Hexadecimal Code:
<span>&#x22C2;</span>
Preview:

Add N-ary Intersection symbol with CSS

.n-ary-intersection::before {
    content: '\\22C2';
}
Preview: N-ary Intersection

N-ary Intersection JavaScript Code

1. Direct Symbol:
document.querySelector('.n-ary-intersection').textContent = '⋂';
2. Unicode Escape for ⋂:
document.querySelector('.n-ary-intersection').textContent = '\u22C2';
Preview: