Small Element Of

Shortcodes

Copy useful codes for small element of symbol ∊ to use in websites, apps, blogs, and docs.

Unicode
U+220A
HTML Code
∊
HEX Code
∊
CSS Code
\220A
JS/JSON
\u220A
Unix/C/PHP/JAVA
0x220A
URL-encode
%E2%88%8A

Customize Small Element Of

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

  

How to use Small Element Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∊</span>
HTML Code:
<span>&#8714;</span>
HEX Code:
<span>&#x220A;</span>

Add with CSS

.small-element-of::before {
  content: '\\220A';
}

Set it in JavaScript

document.querySelector('.small-element-of').textContent = '∊';
copied