Left Double Angle Bracket

Shortcodes

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

Unicode
U+300A
HTML Code
《
HEX Code
《
CSS Code
\300A
JS/JSON
\u300A
Unix/C/PHP/JAVA
0x300A
URL-encode
%E3%80%8A

Customize Left Double Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>《</span>
HTML Code:
<span>&#12298;</span>
HEX Code:
<span>&#x300A;</span>

Add with CSS

.left-double-angle-bracket::before {
  content: '\\300A';
}

Set it in JavaScript

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