Left Angle Bracket

Shortcodes

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

Unicode
U+3008
HTML Code
〈
HEX Code
〈
CSS Code
\3008
JS/JSON
\u3008
Unix/C/PHP/JAVA
0x3008
URL-encode
%E3%80%A8
copied

Customize Left Angle Bracket Symbol

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

Insert 〈 Left Angle Bracket using HTML

1. Copy-paste Left Angle Bracket directly:
<span>〈</span>
2. HTML Decimal Code:
<span>&#12296;</span>
3. Hexadecimal Code:
<span>&#x3008;</span>
Preview:

Add Left Angle Bracket symbol with CSS

.left-angle-bracket::before {
    content: '\\3008';
}
Preview: Left Angle Bracket

Left Angle Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.left-angle-bracket').textContent = '〈';
2. Unicode Escape for 〈:
document.querySelector('.left-angle-bracket').textContent = '\u3008';
Preview: