Heavy Right-pointing Angle Bracket Ornament

Shortcodes

Copy useful codes for heavy right-pointing angle bracket ornament symbol ❱ to use in websites, apps, blogs, and docs.

Unicode
U+2771
HTML Code
❱
HEX Code
❱
CSS Code
\2771
JS/JSON
\u2771
Unix/C/PHP/JAVA
0x2771
URL-encode
%E2%9D%B1

Customize Heavy Right-pointing Angle Bracket Ornament

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

  

How to use Heavy Right-pointing Angle Bracket Ornament Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❱</span>
HTML Code:
<span>&#10097;</span>
HEX Code:
<span>&#x2771;</span>

Add with CSS

.heavy-right-pointing-angle-bracket-ornament::before {
  content: '\\2771';
}

Set it in JavaScript

document.querySelector('.heavy-right-pointing-angle-bracket-ornament').textContent = '❱';
copied