Normal Subgroup Of

Shortcodes

Copy useful codes for normal subgroup of symbol ⊲ to use in websites, apps, blogs, and docs.

Unicode
U+22B2
HTML Code
⊲
HEX Code
⊲
CSS Code
\22B2
JS/JSON
\u22B2
Unix/C/PHP/JAVA
0x22B2
URL-encode
%E2%8A%B2

Customize Normal Subgroup Of

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

  

How to use Normal Subgroup Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊲</span>
HTML Code:
<span>&#8882;</span>
HEX Code:
<span>&#x22B2;</span>

Add with CSS

.normal-subgroup-of::before {
  content: '\\22B2';
}

Set it in JavaScript

document.querySelector('.normal-subgroup-of').textContent = '⊲';
copied