N-ary Union Operator With Dot

Shortcodes

Copy useful codes for n-ary union operator with dot symbol ⨃ to use in websites, apps, blogs, and docs.

Unicode
U+2A03
HTML Code
⨃
HEX Code
⨃
CSS Code
\2A03
JS/JSON
\u2A03
Unix/C/PHP/JAVA
0x2A03
URL-encode
%E2%A8%83

Customize N-ary Union Operator With Dot

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

  

How to use N-ary Union Operator With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨃</span>
HTML Code:
<span>&#10755;</span>
HEX Code:
<span>&#x2A03;</span>

Add with CSS

.n-ary-union-operator-with-dot::before {
  content: '\\2A03';
}

Set it in JavaScript

document.querySelector('.n-ary-union-operator-with-dot').textContent = '⨃';
copied