Closed Union With Serifs

Shortcodes

Copy useful codes for closed union with serifs symbol ⩌ to use in websites, apps, blogs, and docs.

Unicode
U+2A4C
HTML Code
⩌
HEX Code
⩌
CSS Code
\2A4C
JS/JSON
\u2A4C
Unix/C/PHP/JAVA
0x2A4C
URL-encode
%E2%A9%8C

Customize Closed Union With Serifs

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩌</span>
HTML Code:
<span>&#10828;</span>
HEX Code:
<span>&#x2A4C;</span>

Add with CSS

.closed-union-with-serifs::before {
  content: '\\2A4C';
}

Set it in JavaScript

document.querySelector('.closed-union-with-serifs').textContent = '⩌';
copied