Left Angle Bracket

Shortcodes

Copy useful codes for left angle bracket symbol 〈 to use in websites, apps, blogs, and docs.

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

Customize Left Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>〈</span>
HTML Code:
<span>&#12296;</span>
HEX Code:
<span>&#x3008;</span>

Add with CSS

.left-angle-bracket::before {
  content: '\\3008';
}

Set it in JavaScript

document.querySelector('.left-angle-bracket').textContent = '〈';
copied