Small Element Of With Overbar

Shortcodes

Copy useful codes for small element of with overbar symbol ⋷ to use in websites, apps, blogs, and docs.

Unicode
U+22F7
HTML Code
⋷
HEX Code
⋷
CSS Code
\22F7
JS/JSON
\u22F7
Unix/C/PHP/JAVA
0x22F7
URL-encode
%E2%8B%B7

Customize Small Element Of With Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋷</span>
HTML Code:
<span>&#8951;</span>
HEX Code:
<span>&#x22F7;</span>

Add with CSS

.small-element-of-with-overbar::before {
  content: '\\22F7';
}

Set it in JavaScript

document.querySelector('.small-element-of-with-overbar').textContent = '⋷';
copied