Left-shaded White Rightwards Arrow

Shortcodes

Copy useful codes for left-shaded white rightwards arrow symbol ➪ to use in websites, apps, blogs, and docs.

Unicode
U+27AA
HTML Code
➪
HEX Code
➪
CSS Code
\27AA
JS/JSON
\u27AA
Unix/C/PHP/JAVA
0x27AA
URL-encode
%E2%9E%AA

Customize Left-shaded White Rightwards Arrow

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

  

How to use Left-shaded White Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➪</span>
HTML Code:
<span>&#10154;</span>
HEX Code:
<span>&#x27AA;</span>

Add with CSS

.left-shaded-white-rightwards-arrow::before {
  content: '\\27AA';
}

Set it in JavaScript

document.querySelector('.left-shaded-white-rightwards-arrow').textContent = '➪';
copied