Heavy Wedge-tailed Rightwards Arrow

Shortcodes

Copy useful codes for heavy wedge-tailed rightwards arrow symbol ➽ to use in websites, apps, blogs, and docs.

Unicode
U+27BD
HTML Code
➽
HEX Code
➽
CSS Code
\27BD
JS/JSON
\u27BD
Unix/C/PHP/JAVA
0x27BD
URL-encode
%E2%9E%BD

Customize Heavy Wedge-tailed Rightwards Arrow

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

  

How to use Heavy Wedge-tailed Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➽</span>
HTML Code:
<span>&#10173;</span>
HEX Code:
<span>&#x27BD;</span>

Add with CSS

.heavy-wedge-tailed-rightwards-arrow::before {
  content: '\\27BD';
}

Set it in JavaScript

document.querySelector('.heavy-wedge-tailed-rightwards-arrow').textContent = '➽';
copied