Left And Right Tack

Shortcodes

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

Unicode
U+27DB
HTML Code
⟛
HEX Code
⟛
CSS Code
\27DB
JS/JSON
\u27DB
Unix/C/PHP/JAVA
0x27DB
URL-encode
%E2%9F%9B

Customize Left And Right Tack

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟛</span>
HTML Code:
<span>&#10203;</span>
HEX Code:
<span>&#x27DB;</span>

Add with CSS

.left-and-right-tack::before {
  content: '\\27DB';
}

Set it in JavaScript

document.querySelector('.left-and-right-tack').textContent = '⟛';
copied