Double Oblique Hyphen

Shortcodes

Copy useful codes for double oblique hyphen symbol ⸗ to use in websites, apps, blogs, and docs.

Unicode
U+2E17
HTML Code
⸗
HEX Code
⸗
CSS Code
\2E17
JS/JSON
\u2E17
Unix/C/PHP/JAVA
0x2E17
URL-encode
%E2%B8%97

Customize Double Oblique Hyphen

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

  

How to use Double Oblique Hyphen Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸗</span>
HTML Code:
<span>&#11799;</span>
HEX Code:
<span>&#x2E17;</span>

Add with CSS

.double-oblique-hyphen::before {
  content: '\\2E17';
}

Set it in JavaScript

document.querySelector('.double-oblique-hyphen').textContent = '⸗';
copied