Angle Bracket Small Left

Shortcodes

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

Unicode
U+276C
HTML Code
❬
HEX Code
❬
CSS Code
\276C
JS/JSON
\u276C
Unix/C/PHP/JAVA
0x276C
URL-encode
%E2%9D%AC

Customize Angle Bracket Small Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>❬</span>
HTML Code:
<span>&#10092;</span>
HEX Code:
<span>&#x276C;</span>

Add with CSS

.angle-bracket-small-left::before {
  content: '\\276C';
}

Set it in JavaScript

document.querySelector('.angle-bracket-small-left').textContent = '❬';
copied