Does Not Contain As Member

Shortcodes

Copy useful codes for does not contain as member symbol ∌ to use in websites, apps, blogs, and docs.

Unicode
U+220C
HTML Code
∌
HEX Code
∌
CSS Code
\220C
JS/JSON
\u220C
Unix/C/PHP/JAVA
0x220C
URL-encode
%E2%88%8C

Customize Does Not Contain As Member

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

  

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

Insert in HTML

1. Direct symbol:
<span>∌</span>
HTML Code:
<span>&#8716;</span>
HEX Code:
<span>&#x220C;</span>

Add with CSS

.does-not-contain-as-member::before {
  content: '\\220C';
}

Set it in JavaScript

document.querySelector('.does-not-contain-as-member').textContent = '∌';
copied