Angle Bracket Small Right

Shortcodes

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

Unicode
U+276D
HTML Code
❭
HEX Code
❭
CSS Code
\276D
JS/JSON
\u276D
Unix/C/PHP/JAVA
0x276D
URL-encode
%E2%9D%AD

Customize Angle Bracket Small Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>❭</span>
HTML Code:
<span>&#10093;</span>
HEX Code:
<span>&#x276D;</span>

Add with CSS

.angle-bracket-small-right::before {
  content: '\\276D';
}

Set it in JavaScript

document.querySelector('.angle-bracket-small-right').textContent = '❭';
copied