Element Of With Two Horizontal Strokes

Shortcodes

Copy useful codes for element of with two horizontal strokes symbol ⋹ to use in websites, apps, blogs, and docs.

Unicode
U+22F9
HTML Code
⋹
HEX Code
⋹
CSS Code
\22F9
JS/JSON
\u22F9
Unix/C/PHP/JAVA
0x22F9
URL-encode
%E2%8B%B9

Customize Element Of With Two Horizontal Strokes

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

  

How to use Element Of With Two Horizontal Strokes Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋹</span>
HTML Code:
<span>&#8953;</span>
HEX Code:
<span>&#x22F9;</span>

Add with CSS

.element-of-with-two-horizontal-strokes::before {
  content: '\\22F9';
}

Set it in JavaScript

document.querySelector('.element-of-with-two-horizontal-strokes').textContent = '⋹';
copied