Solidus With Overbar

Shortcodes

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

Unicode
U+29F6
HTML Code
⧶
HEX Code
⧶
CSS Code
\29F6
JS/JSON
\u29F6
Unix/C/PHP/JAVA
0x29F6
URL-encode
%E2%A7%B6

Customize Solidus With Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧶</span>
HTML Code:
<span>&#10742;</span>
HEX Code:
<span>&#x29F6;</span>

Add with CSS

.solidus-with-overbar::before {
  content: '\\29F6';
}

Set it in JavaScript

document.querySelector('.solidus-with-overbar').textContent = '⧶';
copied