Right Angle Bracket

Shortcodes

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

Unicode
U+3009
HTML Code
〉
HEX Code
〉
CSS Code
\3009
JS/JSON
\u3009
Unix/C/PHP/JAVA
0x3009
URL-encode
%E3%80%A9
copied

Customize Right Angle Bracket Symbol

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

Insert 〉 Right Angle Bracket using HTML

1. Copy-paste Right Angle Bracket directly:
<span>〉</span>
2. HTML Decimal Code:
<span>&#12297;</span>
3. Hexadecimal Code:
<span>&#x3009;</span>
Preview:

Add Right Angle Bracket symbol with CSS

.right-angle-bracket::before {
    content: '\\3009';
}
Preview: Right Angle Bracket

Right Angle Bracket JavaScript Code

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