Left White Lenticular Bracket

Shortcodes

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

Unicode
U+3016
HTML Code
〖
HEX Code
〖
CSS Code
\3016
JS/JSON
\u3016
Unix/C/PHP/JAVA
0x3016
URL-encode
%E3%80%96

Customize Left White Lenticular Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>〖</span>
HTML Code:
<span>&#12310;</span>
HEX Code:
<span>&#x3016;</span>

Add with CSS

.left-white-lenticular-bracket::before {
  content: '\\3016';
}

Set it in JavaScript

document.querySelector('.left-white-lenticular-bracket').textContent = '〖';
copied