Black Rightwards Arrowhead

Shortcodes

Copy useful codes for black rightwards arrowhead symbol ➤ to use in websites, apps, blogs, and docs.

Unicode
U+27A4
HTML Code
➤
HEX Code
➤
CSS Code
\27A4
JS/JSON
\u27A4
Unix/C/PHP/JAVA
0x27A4
URL-encode
%E2%9E%A4

Customize Black Rightwards Arrowhead

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

  

How to use Black Rightwards Arrowhead Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➤</span>
HTML Code:
<span>&#10148;</span>
HEX Code:
<span>&#x27A4;</span>

Add with CSS

.black-rightwards-arrowhead::before {
  content: '\\27A4';
}

Set it in JavaScript

document.querySelector('.black-rightwards-arrowhead').textContent = '➤';
copied