Element Of With Long Horizontal Stroke

Shortcodes

Copy useful codes for element of with long horizontal stroke symbol ⋲ to use in websites, apps, blogs, and docs.

Unicode
U+22F2
HTML Code
⋲
HEX Code
⋲
CSS Code
\22F2
JS/JSON
\u22F2
Unix/C/PHP/JAVA
0x22F2
URL-encode
%E2%8B%B2

Customize Element Of With Long Horizontal Stroke

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

  

How to use Element Of With Long Horizontal Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋲</span>
HTML Code:
<span>&#8946;</span>
HEX Code:
<span>&#x22F2;</span>

Add with CSS

.element-of-with-long-horizontal-stroke::before {
  content: '\\22F2';
}

Set it in JavaScript

document.querySelector('.element-of-with-long-horizontal-stroke').textContent = '⋲';
copied