N-ary Union Operator With Dot

Shortcodes

Copy and paste codes for N-ary Union Operator With Dot symbol ⨃ to use in your websites, apps, blogs, and more.

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

Customize N-ary Union Operator With Dot Symbol

Customize ⨃ symbol as you like and download N-ary Union Operator With Dot 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 Union Operator With Dot symbol in HTML, CSS, and JS?

Insert ⨃ N-ary Union Operator With Dot using HTML

1. Copy-paste N-ary Union Operator With Dot directly:
<span>⨃</span>
2. HTML Decimal Code:
<span>&#10755;</span>
3. Hexadecimal Code:
<span>&#x2A03;</span>
Preview:

Add N-ary Union Operator With Dot symbol with CSS

.n-ary-union-operator-with-dot::before {
    content: '\\2A03';
}
Preview: N-ary Union Operator With Dot

N-ary Union Operator With Dot JavaScript Code

1. Direct Symbol:
document.querySelector('.n-ary-union-operator-with-dot').textContent = '⨃';
2. Unicode Escape for ⨃:
document.querySelector('.n-ary-union-operator-with-dot').textContent = '\u2A03';
Preview: