Short Down Tack With Overbar

Shortcodes

Copy useful codes for short down tack with overbar symbol ⫧ to use in websites, apps, blogs, and docs.

Unicode
U+2AE7
HTML Code
⫧
HEX Code
⫧
CSS Code
\2AE7
JS/JSON
\u2AE7
Unix/C/PHP/JAVA
0x2AE7
URL-encode
%E2%AB%A7

Customize Short Down Tack With Overbar

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

  

How to use Short Down Tack With Overbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫧</span>
HTML Code:
<span>&#10983;</span>
HEX Code:
<span>&#x2AE7;</span>

Add with CSS

.short-down-tack-with-overbar::before {
  content: '\\2AE7';
}

Set it in JavaScript

document.querySelector('.short-down-tack-with-overbar').textContent = '⫧';
copied