Subset Of With Not Equal To

Shortcodes

Copy useful codes for subset of with not equal to symbol ⊊ to use in websites, apps, blogs, and docs.

Unicode
U+228A
HTML Code
⊊
HEX Code
⊊
CSS Code
\228A
JS/JSON
\u228A
Unix/C/PHP/JAVA
0x228A
URL-encode
%E2%8A%8A

Customize Subset Of With Not Equal To

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

  

How to use Subset Of With Not Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊊</span>
HTML Code:
<span>&#8842;</span>
HEX Code:
<span>&#x228A;</span>

Add with CSS

.subset-of-with-not-equal-to::before {
  content: '\\228A';
}

Set it in JavaScript

document.querySelector('.subset-of-with-not-equal-to').textContent = '⊊';
copied