Contains With Overbar

Shortcodes

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

Unicode
U+22FD
HTML Code
⋽
HEX Code
⋽
CSS Code
\22FD
JS/JSON
\u22FD
Unix/C/PHP/JAVA
0x22FD
URL-encode
%E2%8B%BD

Customize Contains With Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋽</span>
HTML Code:
<span>&#8957;</span>
HEX Code:
<span>&#x22FD;</span>

Add with CSS

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

Set it in JavaScript

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