Normal Subgroup Of Or Equal To

Shortcodes

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

Unicode
U+22B4
HTML Code
⊴
HEX Code
⊴
CSS Code
\22B4
JS/JSON
\u22B4
Unix/C/PHP/JAVA
0x22B4
URL-encode
%E2%8A%B4

Customize Normal Subgroup Of Or Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊴</span>
HTML Code:
<span>&#8884;</span>
HEX Code:
<span>&#x22B4;</span>

Add with CSS

.normal-subgroup-of-or-equal-to::before {
  content: '\\22B4';
}

Set it in JavaScript

document.querySelector('.normal-subgroup-of-or-equal-to').textContent = '⊴';
copied