Semidirect Product With Bottom Closed

Shortcodes

Copy useful codes for semidirect product with bottom closed symbol ⨲ to use in websites, apps, blogs, and docs.

Unicode
U+2A32
HTML Code
⨲
HEX Code
⨲
CSS Code
\2A32
JS/JSON
\u2A32
Unix/C/PHP/JAVA
0x2A32
URL-encode
%E2%A8%B2

Customize Semidirect Product With Bottom Closed

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

  

How to use Semidirect Product With Bottom Closed Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨲</span>
HTML Code:
<span>&#10802;</span>
HEX Code:
<span>&#x2A32;</span>

Add with CSS

.semidirect-product-with-bottom-closed::before {
  content: '\\2A32';
}

Set it in JavaScript

document.querySelector('.semidirect-product-with-bottom-closed').textContent = '⨲';
copied