Long Left Tack

Shortcodes

Copy useful codes for long left tack symbol ⟞ to use in websites, apps, blogs, and docs.

Unicode
U+27DE
HTML Code
⟞
HEX Code
⟞
CSS Code
\27DE
JS/JSON
\u27DE
Unix/C/PHP/JAVA
0x27DE
URL-encode
%E2%9F%9E

Customize Long Left Tack

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

  

How to use Long Left Tack Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟞</span>
HTML Code:
<span>&#10206;</span>
HEX Code:
<span>&#x27DE;</span>

Add with CSS

.long-left-tack::before {
  content: '\\27DE';
}

Set it in JavaScript

document.querySelector('.long-left-tack').textContent = '⟞';
copied