Right Tack

Shortcodes

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

Unicode
U+22A2
HTML Code
⊢
HEX Code
⊢
CSS Code
\22A2
JS/JSON
\u22A2
Unix/C/PHP/JAVA
0x22A2
URL-encode
%E2%8A%A2
copied

Customize Right Tack Symbol

Customize ⊢ symbol as you like and download Right 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 Right Tack symbol in HTML, CSS, and JS?

Insert ⊢ Right Tack using HTML

1. Copy-paste Right Tack directly:
<span>⊢</span>
2. HTML Decimal Code:
<span>&#8866;</span>
3. Hexadecimal Code:
<span>&#x22A2;</span>
Preview:

Add Right Tack symbol with CSS

.right-tack::before {
    content: '\\22A2';
}
Preview: Right Tack

Right Tack JavaScript Code

1. Direct Symbol:
document.querySelector('.right-tack').textContent = '⊢';
2. Unicode Escape for ⊢:
document.querySelector('.right-tack').textContent = '\u22A2';
Preview: