Closed Union With Serifs And Smash Product

Shortcodes

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

Unicode
U+2A50
HTML Code
⩐
HEX Code
⩐
CSS Code
\2A50
JS/JSON
\u2A50
Unix/C/PHP/JAVA
0x2A50
URL-encode
%E2%A9%90

Customize Closed Union With Serifs And Smash Product

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩐</span>
HTML Code:
<span>&#10832;</span>
HEX Code:
<span>&#x2A50;</span>

Add with CSS

.closed-union-with-serifs-and-smash-product::before {
  content: '\\2A50';
}

Set it in JavaScript

document.querySelector('.closed-union-with-serifs-and-smash-product').textContent = '⩐';
copied