Notched Upper Right-shadowed White Rightwards Arrow

Shortcodes

Copy useful codes for notched upper right-shadowed white rightwards arrow symbol ➱ to use in websites, apps, blogs, and docs.

Unicode
U+27B1
HTML Code
➱
HEX Code
➱
CSS Code
\27B1
JS/JSON
\u27B1
Unix/C/PHP/JAVA
0x27B1
URL-encode
%E2%9E%B1

Customize Notched Upper Right-shadowed White Rightwards Arrow

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

  

How to use Notched Upper Right-shadowed White Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➱</span>
HTML Code:
<span>&#10161;</span>
HEX Code:
<span>&#x27B1;</span>

Add with CSS

.notched-upper-right-shadowed-white-rightwards-arrow::before {
  content: '\\27B1';
}

Set it in JavaScript

document.querySelector('.notched-upper-right-shadowed-white-rightwards-arrow').textContent = '➱';
copied