Intersection

Shortcodes

Copy useful codes for intersection symbol ∩ to use in websites, apps, blogs, and docs.

Unicode
U+2229
Alt Code
239
HTML Code
∩
HEX Code
∩
CSS Code
\2229
JS/JSON
\u2229
Unix/C/PHP/JAVA
0x2229
URL-encode
%E2%88%A9

Customize Intersection

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

  

How to use Intersection Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∩</span>
HTML Code:
<span>&#8745;</span>
HEX Code:
<span>&#x2229;</span>

Add with CSS

.intersection::before {
  content: '\\2229';
}

Set it in JavaScript

document.querySelector('.intersection').textContent = '∩';
copied