Small Contains With Vertical Bar At End Of Horizontal Stroke

Shortcodes

Copy useful codes for small contains with vertical bar at end of horizontal stroke symbol ⋼ to use in websites, apps, blogs, and docs.

Unicode
U+22FC
HTML Code
⋼
HEX Code
⋼
CSS Code
\22FC
JS/JSON
\u22FC
Unix/C/PHP/JAVA
0x22FC
URL-encode
%E2%8B%BC

Customize Small Contains With Vertical Bar At End Of Horizontal Stroke

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

  

How to use Small Contains With Vertical Bar At End Of Horizontal Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋼</span>
HTML Code:
<span>&#8956;</span>
HEX Code:
<span>&#x22FC;</span>

Add with CSS

.small-contains-with-vertical-bar-at-end-of-horizontal-stroke::before {
  content: '\\22FC';
}

Set it in JavaScript

document.querySelector('.small-contains-with-vertical-bar-at-end-of-horizontal-stroke').textContent = '⋼';
copied