Left Tack

Shortcodes

Copy and paste codes for Left Tack symbol ⊣ to use in your websites, apps, blogs, and more.

Unicode
U+22A3
HTML Code
⊣
HEX Code
⊣
CSS Code
\22A3
JS/JSON
\u22A3
Unix/C/PHP/JAVA
0x22A3
URL-encode
%E2%8A%A3
copied

Customize Left Tack Symbol

Customize ⊣ symbol as you like and download Left Tack as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Left Tack symbol in HTML, CSS, and JS?

Insert ⊣ Left Tack using HTML

1. Copy-paste Left Tack directly:
<span>⊣</span>
2. HTML Decimal Code:
<span>&#8867;</span>
3. Hexadecimal Code:
<span>&#x22A3;</span>
Preview:

Add Left Tack symbol with CSS

.left-tack::before {
    content: '\\22A3';
}
Preview: Left Tack

Left Tack JavaScript Code

1. Direct Symbol:
document.querySelector('.left-tack').textContent = '⊣';
2. Unicode Escape for ⊣:
document.querySelector('.left-tack').textContent = '\u22A3';
Preview: