Angle Bracket Right Double

Shortcodes

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

Unicode
U+276F
HTML Code
❯
HEX Code
❯
CSS Code
\276F
JS/JSON
\u276F
Unix/C/PHP/JAVA
0x276F
URL-encode
%E2%9D%AF
copied

Customize Angle Bracket Right Double Symbol

Customize ❯ symbol as you like and download Angle Bracket Right Double 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 Right Double symbol in HTML, CSS, and JS?

Insert ❯ Angle Bracket Right Double using HTML

1. Copy-paste Angle Bracket Right Double directly:
<span>❯</span>
2. HTML Decimal Code:
<span>&#10095;</span>
3. Hexadecimal Code:
<span>&#x276F;</span>
Preview:

Add Angle Bracket Right Double symbol with CSS

.angle-bracket-right-double::before {
    content: '\\276F';
}
Preview: Angle Bracket Right Double

Angle Bracket Right Double JavaScript Code

1. Direct Symbol:
document.querySelector('.angle-bracket-right-double').textContent = '❯';
2. Unicode Escape for ❯:
document.querySelector('.angle-bracket-right-double').textContent = '\u276F';
Preview: