Downwards Arrow With Horizontal Stroke

Shortcodes

Copy useful codes for downwards arrow with horizontal stroke symbol ⤈ to use in websites, apps, blogs, and docs.

Unicode
U+2908
HTML Code
⤈
HEX Code
⤈
CSS Code
\2908
JS/JSON
\u2908
Unix/C/PHP/JAVA
0x2908
URL-encode
%E2%A4%88

Customize Downwards Arrow With Horizontal Stroke

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

  

How to use Downwards Arrow With Horizontal Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤈</span>
HTML Code:
<span>&#10504;</span>
HEX Code:
<span>&#x2908;</span>

Add with CSS

.downwards-arrow-with-horizontal-stroke::before {
  content: '\\2908';
}

Set it in JavaScript

document.querySelector('.downwards-arrow-with-horizontal-stroke').textContent = '⤈';
copied