Angle Bracket Small Right

Shortcodes

Copy and paste codes for Angle Bracket Small Right symbol ❭ to use in your websites, apps, blogs, and more.

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

Customize Angle Bracket Small Right Symbol

Customize ❭ symbol as you like and download Angle Bracket Small Right as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Angle Bracket Small Right symbol in HTML, CSS, and JS?

Insert ❭ Angle Bracket Small Right using HTML

1. Copy-paste Angle Bracket Small Right directly:
<span>❭</span>
2. HTML Decimal Code:
<span>&#10093;</span>
3. Hexadecimal Code:
<span>&#x276D;</span>
Preview:

Add Angle Bracket Small Right symbol with CSS

.angle-bracket-small-right::before {
    content: '\\276D';
}
Preview: Angle Bracket Small Right

Angle Bracket Small Right JavaScript Code

1. Direct Symbol:
document.querySelector('.angle-bracket-small-right').textContent = '❭';
2. Unicode Escape for ❭:
document.querySelector('.angle-bracket-small-right').textContent = '\u276D';
Preview: