Up Arrowhead In A Rectangle Box

Shortcodes

Copy useful codes for up arrowhead in a rectangle box symbol ⮹ to use in websites, apps, blogs, and docs.

Unicode
U+2BB9
HTML Code
⮹
HEX Code
⮹
CSS Code
\2BB9
JS/JSON
\u2BB9
Unix/C/PHP/JAVA
0x2BB9
URL-encode
%E2%AE%B9

Customize Up Arrowhead In A Rectangle Box

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

  

How to use Up Arrowhead In A Rectangle Box Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⮹</span>
HTML Code:
<span>&#11193;</span>
HEX Code:
<span>&#x2BB9;</span>

Add with CSS

.up-arrowhead-in-a-rectangle-box::before {
  content: '\\2BB9';
}

Set it in JavaScript

document.querySelector('.up-arrowhead-in-a-rectangle-box').textContent = '⮹';
copied