Right Semidirect Product

Shortcodes

Copy useful codes for right semidirect product symbol ⋌ to use in websites, apps, blogs, and docs.

Unicode
U+22CC
HTML Code
⋌
HEX Code
⋌
CSS Code
\22CC
JS/JSON
\u22CC
Unix/C/PHP/JAVA
0x22CC
URL-encode
%E2%8B%8C

Customize Right Semidirect Product

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

  

How to use Right Semidirect Product Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋌</span>
HTML Code:
<span>&#8908;</span>
HEX Code:
<span>&#x22CC;</span>

Add with CSS

.right-semidirect-product::before {
  content: '\\22CC';
}

Set it in JavaScript

document.querySelector('.right-semidirect-product').textContent = '⋌';
copied