Union With Minus Sign

Shortcodes

Copy useful codes for union with minus sign ⩁ to use in websites, apps, blogs, and docs.

Unicode
U+2A41
HTML Code
⩁
HEX Code
⩁
CSS Code
\2A41
JS/JSON
\u2A41
Unix/C/PHP/JAVA
0x2A41
URL-encode
%E2%A9%81

Customize Union With Minus Sign

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

  

How to use Union With Minus Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩁</span>
HTML Code:
<span>&#10817;</span>
HEX Code:
<span>&#x2A41;</span>

Add with CSS

.union-with-minus-sign::before {
  content: '\\2A41';
}

Set it in JavaScript

document.querySelector('.union-with-minus-sign').textContent = '⩁';
copied