Left Corner Bracket

Shortcodes

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

Unicode
U+300C
HTML Code
「
HEX Code
「
CSS Code
\300C
JS/JSON
\u300C
Unix/C/PHP/JAVA
0x300C
URL-encode
%E3%80%8C

Customize Left Corner Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>「</span>
HTML Code:
<span>&#12300;</span>
HEX Code:
<span>&#x300C;</span>

Add with CSS

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

Set it in JavaScript

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