Heavy Left-pointing Angle Bracket Ornament

Shortcodes

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

Unicode
U+2770
HTML Code
❰
HEX Code
❰
CSS Code
\2770
JS/JSON
\u2770
Unix/C/PHP/JAVA
0x2770
URL-encode
%E2%9D%B0

Customize Heavy Left-pointing Angle Bracket Ornament

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

  

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

Insert in HTML

1. Direct symbol:
<span>❰</span>
HTML Code:
<span>&#10096;</span>
HEX Code:
<span>&#x2770;</span>

Add with CSS

.heavy-left-pointing-angle-bracket-ornament::before {
  content: '\\2770';
}

Set it in JavaScript

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