Angle Bracket Left Double

Shortcodes

Copy useful codes for angle bracket left double symbol ❮ to use in websites, apps, blogs, and docs.

Unicode
U+276E
HTML Code
❮
HEX Code
❮
CSS Code
\276E
JS/JSON
\u276E
Unix/C/PHP/JAVA
0x276E
URL-encode
%E2%9D%AE

Customize Angle Bracket Left Double

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

  

How to use Angle Bracket Left Double Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❮</span>
HTML Code:
<span>&#10094;</span>
HEX Code:
<span>&#x276E;</span>

Add with CSS

.angle-bracket-left-double::before {
  content: '\\276E';
}

Set it in JavaScript

document.querySelector('.angle-bracket-left-double').textContent = '❮';
copied