Reverse Solidus With Horizontal Stroke

Shortcodes

Copy useful codes for reverse solidus with horizontal stroke symbol ⧷ to use in websites, apps, blogs, and docs.

Unicode
U+29F7
HTML Code
⧷
HEX Code
⧷
CSS Code
\29F7
JS/JSON
\u29F7
Unix/C/PHP/JAVA
0x29F7
URL-encode
%E2%A7%B7

Customize Reverse Solidus With Horizontal Stroke

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

  

How to use Reverse Solidus With Horizontal Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧷</span>
HTML Code:
<span>&#10743;</span>
HEX Code:
<span>&#x29F7;</span>

Add with CSS

.reverse-solidus-with-horizontal-stroke::before {
  content: '\\29F7';
}

Set it in JavaScript

document.querySelector('.reverse-solidus-with-horizontal-stroke').textContent = '⧷';
copied