Upwards Arrow With Horizontal Stroke

Shortcodes

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

Unicode
U+2909
HTML Code
⤉
HEX Code
⤉
CSS Code
\2909
JS/JSON
\u2909
Unix/C/PHP/JAVA
0x2909
URL-encode
%E2%A4%89

Customize Upwards Arrow With Horizontal Stroke

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤉</span>
HTML Code:
<span>&#10505;</span>
HEX Code:
<span>&#x2909;</span>

Add with CSS

.upwards-arrow-with-horizontal-stroke::before {
  content: '\\2909';
}

Set it in JavaScript

document.querySelector('.upwards-arrow-with-horizontal-stroke').textContent = '⤉';
copied