Upwards White Arrow From Bar With Horizontal Bar

Shortcodes

Copy useful codes for upwards white arrow from bar with horizontal bar symbol ⮸ to use in websites, apps, blogs, and docs.

Unicode
U+2BB8
HTML Code
⮸
HEX Code
⮸
CSS Code
\2BB8
JS/JSON
\u2BB8
Unix/C/PHP/JAVA
0x2BB8
URL-encode
%E2%AE%B8

Customize Upwards White Arrow From Bar With Horizontal Bar

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

  

How to use Upwards White Arrow From Bar With Horizontal Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⮸</span>
HTML Code:
<span>&#11192;</span>
HEX Code:
<span>&#x2BB8;</span>

Add with CSS

.upwards-white-arrow-from-bar-with-horizontal-bar::before {
  content: '\\2BB8';
}

Set it in JavaScript

document.querySelector('.upwards-white-arrow-from-bar-with-horizontal-bar').textContent = '⮸';
copied