Left White Corner Bracket

Shortcodes

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

Unicode
U+300E
HTML Code
『
HEX Code
『
CSS Code
\300E
JS/JSON
\u300E
Unix/C/PHP/JAVA
0x300E
URL-encode
%E3%80%8E

Customize Left White Corner Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>『</span>
HTML Code:
<span>&#12302;</span>
HEX Code:
<span>&#x300E;</span>

Add with CSS

.left-white-corner-bracket::before {
  content: '\\300E';
}

Set it in JavaScript

document.querySelector('.left-white-corner-bracket').textContent = '『';
copied