Union With Overbar

Shortcodes

Copy useful codes for union with overbar symbol ⩂ to use in websites, apps, blogs, and docs.

Unicode
U+2A42
HTML Code
⩂
HEX Code
⩂
CSS Code
\2A42
JS/JSON
\u2A42
Unix/C/PHP/JAVA
0x2A42
URL-encode
%E2%A9%82

Customize Union With Overbar

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

  

How to use Union With Overbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩂</span>
HTML Code:
<span>&#10818;</span>
HEX Code:
<span>&#x2A42;</span>

Add with CSS

.union-with-overbar::before {
  content: '\\2A42';
}

Set it in JavaScript

document.querySelector('.union-with-overbar').textContent = '⩂';
copied