Black-feathered South East Arrow

Shortcodes

Copy useful codes for black-feathered south east arrow symbol ➴ to use in websites, apps, blogs, and docs.

Unicode
U+27B4
HTML Code
➴
HEX Code
➴
CSS Code
\27B4
JS/JSON
\u27B4
Unix/C/PHP/JAVA
0x27B4
URL-encode
%E2%9E%B4

Customize Black-feathered South East Arrow

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

  

How to use Black-feathered South East Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➴</span>
HTML Code:
<span>&#10164;</span>
HEX Code:
<span>&#x27B4;</span>

Add with CSS

.black-feathered-south-east-arrow::before {
  content: '\\27B4';
}

Set it in JavaScript

document.querySelector('.black-feathered-south-east-arrow').textContent = '➴';
copied