Contains With Long Horizontal Stroke

Shortcodes

Copy useful codes for contains with long horizontal stroke symbol ⋺ to use in websites, apps, blogs, and docs.

Unicode
U+22FA
HTML Code
⋺
HEX Code
⋺
CSS Code
\22FA
JS/JSON
\u22FA
Unix/C/PHP/JAVA
0x22FA
URL-encode
%E2%8B%BA

Customize Contains With Long Horizontal Stroke

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋺</span>
HTML Code:
<span>&#8954;</span>
HEX Code:
<span>&#x22FA;</span>

Add with CSS

.contains-with-long-horizontal-stroke::before {
  content: '\\22FA';
}

Set it in JavaScript

document.querySelector('.contains-with-long-horizontal-stroke').textContent = '⋺';
copied