Rightwards Arrow From Bar To Black Diamond

Shortcodes

Copy useful codes for rightwards arrow from bar to black diamond symbol ⤠ to use in websites, apps, blogs, and docs.

Unicode
U+2920
HTML Code
⤠
HEX Code
⤠
CSS Code
\2920
JS/JSON
\u2920
Unix/C/PHP/JAVA
0x2920
URL-encode
%E2%A4%A0

Customize Rightwards Arrow From Bar To Black Diamond

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

  

How to use Rightwards Arrow From Bar To Black Diamond Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤠</span>
HTML Code:
<span>&#10528;</span>
HEX Code:
<span>&#x2920;</span>

Add with CSS

.rightwards-arrow-from-bar-to-black-diamond::before {
  content: '\\2920';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-from-bar-to-black-diamond').textContent = '⤠';
copied