Large Down Tack

Shortcodes

Copy useful codes for large down tack symbol ⟙ to use in websites, apps, blogs, and docs.

Unicode
U+27D9
HTML Code
⟙
HEX Code
⟙
CSS Code
\27D9
JS/JSON
\u27D9
Unix/C/PHP/JAVA
0x27D9
URL-encode
%E2%9F%99

Customize Large Down Tack

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

  

How to use Large Down Tack Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟙</span>
HTML Code:
<span>&#10201;</span>
HEX Code:
<span>&#x27D9;</span>

Add with CSS

.large-down-tack::before {
  content: '\\27D9';
}

Set it in JavaScript

document.querySelector('.large-down-tack').textContent = '⟙';
copied