Union Beside And Joined With Union

Shortcodes

Copy useful codes for union beside and joined with union symbol ⩊ to use in websites, apps, blogs, and docs.

Unicode
U+2A4A
HTML Code
⩊
HEX Code
⩊
CSS Code
\2A4A
JS/JSON
\u2A4A
Unix/C/PHP/JAVA
0x2A4A
URL-encode
%E2%A9%8A

Customize Union Beside And Joined With Union

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

  

How to use Union Beside And Joined With Union Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩊</span>
HTML Code:
<span>&#10826;</span>
HEX Code:
<span>&#x2A4A;</span>

Add with CSS

.union-beside-and-joined-with-union::before {
  content: '\\2A4A';
}

Set it in JavaScript

document.querySelector('.union-beside-and-joined-with-union').textContent = '⩊';
copied