Left Black Lenticular Bracket

Shortcodes

Copy useful codes for left black lenticular bracket symbol 【 to use in websites, apps, blogs, and docs.

Unicode
U+3010
HTML Code
【
HEX Code
【
CSS Code
\3010
JS/JSON
\u3010
Unix/C/PHP/JAVA
0x3010
URL-encode
%E3%80%90

Customize Left Black Lenticular Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>【</span>
HTML Code:
<span>&#12304;</span>
HEX Code:
<span>&#x3010;</span>

Add with CSS

.left-black-lenticular-bracket::before {
  content: '\\3010';
}

Set it in JavaScript

document.querySelector('.left-black-lenticular-bracket').textContent = '【';
copied