N-ary Union Operator With Plus

Shortcodes

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

Unicode
U+2A04
HTML Code
⨄
HEX Code
⨄
CSS Code
\2A04
JS/JSON
\u2A04
Unix/C/PHP/JAVA
0x2A04
URL-encode
%E2%A8%84

Customize N-ary Union Operator With Plus

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨄</span>
HTML Code:
<span>&#10756;</span>
HEX Code:
<span>&#x2A04;</span>

Add with CSS

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

Set it in JavaScript

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