Wedge-tailed Rightwards Arrow

Shortcodes

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

Unicode
U+27BC
HTML Code
➼
HEX Code
➼
CSS Code
\27BC
JS/JSON
\u27BC
Unix/C/PHP/JAVA
0x27BC
URL-encode
%E2%9E%BC

Customize Wedge-tailed Rightwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>➼</span>
HTML Code:
<span>&#10172;</span>
HEX Code:
<span>&#x27BC;</span>

Add with CSS

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

Set it in JavaScript

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