Right Normal Factor Semidirect Product

Shortcodes

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

Unicode
U+22CA
HTML Code
⋊
HEX Code
⋊
CSS Code
\22CA
JS/JSON
\u22CA
Unix/C/PHP/JAVA
0x22CA
URL-encode
%E2%8B%8A

Customize Right Normal Factor Semidirect Product

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋊</span>
HTML Code:
<span>&#8906;</span>
HEX Code:
<span>&#x22CA;</span>

Add with CSS

.right-normal-factor-semidirect-product::before {
  content: '\\22CA';
}

Set it in JavaScript

document.querySelector('.right-normal-factor-semidirect-product').textContent = '⋊';
copied