Heavy Concave-pointed Black Rightwards Arrow

Shortcodes

Copy useful codes for heavy concave-pointed black rightwards arrow symbol ➨ to use in websites, apps, blogs, and docs.

Unicode
U+27A8
HTML Code
➨
HEX Code
➨
CSS Code
\27A8
JS/JSON
\u27A8
Unix/C/PHP/JAVA
0x27A8
URL-encode
%E2%9E%A8

Customize Heavy Concave-pointed Black Rightwards Arrow

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

  

How to use Heavy Concave-pointed Black Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➨</span>
HTML Code:
<span>&#10152;</span>
HEX Code:
<span>&#x27A8;</span>

Add with CSS

.heavy-concave-pointed-black-rightwards-arrow::before {
  content: '\\27A8';
}

Set it in JavaScript

document.querySelector('.heavy-concave-pointed-black-rightwards-arrow').textContent = '➨';
copied