Does Not Contain As Normal Subgroup

Shortcodes

Copy useful codes for does not contain as normal subgroup symbol ⋫ to use in websites, apps, blogs, and docs.

Unicode
U+22EB
HTML Code
⋫
HEX Code
⋫
CSS Code
\22EB
JS/JSON
\u22EB
Unix/C/PHP/JAVA
0x22EB
URL-encode
%E2%8B%AB

Customize Does Not Contain As Normal Subgroup

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

  

How to use Does Not Contain As Normal Subgroup Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋫</span>
HTML Code:
<span>&#8939;</span>
HEX Code:
<span>&#x22EB;</span>

Add with CSS

.does-not-contain-as-normal-subgroup::before {
  content: '\\22EB';
}

Set it in JavaScript

document.querySelector('.does-not-contain-as-normal-subgroup').textContent = '⋫';
copied