Small Contains With Overbar

Shortcodes

Copy useful codes for small contains with overbar symbol ⋾ to use in websites, apps, blogs, and docs.

Unicode
U+22FE
HTML Code
⋾
HEX Code
⋾
CSS Code
\22FE
JS/JSON
\u22FE
Unix/C/PHP/JAVA
0x22FE
URL-encode
%E2%8B%BE

Customize Small Contains With Overbar

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

  

How to use Small Contains With Overbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋾</span>
HTML Code:
<span>&#8958;</span>
HEX Code:
<span>&#x22FE;</span>

Add with CSS

.small-contains-with-overbar::before {
  content: '\\22FE';
}

Set it in JavaScript

document.querySelector('.small-contains-with-overbar').textContent = '⋾';
copied