Upwards Arrow To Bar

Shortcodes

Copy useful codes for upwards arrow to bar symbol ⤒ to use in websites, apps, blogs, and docs.

Unicode
U+2912
HTML Code
⤒
HEX Code
⤒
CSS Code
\2912
JS/JSON
\u2912
Unix/C/PHP/JAVA
0x2912
URL-encode
%E2%A4%92

Customize Upwards Arrow To Bar

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

  

How to use Upwards Arrow To Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤒</span>
HTML Code:
<span>&#10514;</span>
HEX Code:
<span>&#x2912;</span>

Add with CSS

.upwards-arrow-to-bar::before {
  content: '\\2912';
}

Set it in JavaScript

document.querySelector('.upwards-arrow-to-bar').textContent = '⤒';
copied