Amalgamation Or Coproduct

⨿

Shortcodes

Copy useful codes for amalgamation or coproduct symbol ⨿ to use in websites, apps, blogs, and docs.

Unicode
U+2A3F
HTML Code
⨿
HEX Code
⨿
CSS Code
\2A3F
JS/JSON
\u2A3F
Unix/C/PHP/JAVA
0x2A3F
URL-encode
%E2%A8%BF

Customize Amalgamation Or Coproduct

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

⨿
  

How to use Amalgamation Or Coproduct Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨿</span>
HTML Code:
<span>&#10815;</span>
HEX Code:
<span>&#x2A3F;</span>

Add with CSS

.amalgamation-or-coproduct::before {
  content: '\\2A3F';
}

Set it in JavaScript

document.querySelector('.amalgamation-or-coproduct').textContent = '⨿';
copied