Long Dash From Left Member Of Double Vertical

Shortcodes

Copy useful codes for long dash from left member of double vertical symbol ⫦ to use in websites, apps, blogs, and docs.

Unicode
U+2AE6
HTML Code
⫦
HEX Code
⫦
CSS Code
\2AE6
JS/JSON
\u2AE6
Unix/C/PHP/JAVA
0x2AE6
URL-encode
%E2%AB%A6

Customize Long Dash From Left Member Of Double Vertical

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

  

How to use Long Dash From Left Member Of Double Vertical Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫦</span>
HTML Code:
<span>&#10982;</span>
HEX Code:
<span>&#x2AE6;</span>

Add with CSS

.long-dash-from-left-member-of-double-vertical::before {
  content: '\\2AE6';
}

Set it in JavaScript

document.querySelector('.long-dash-from-left-member-of-double-vertical').textContent = '⫦';
copied