Left White Square Bracket

Shortcodes

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

Unicode
U+301A
HTML Code
〚
HEX Code
〚
CSS Code
\301A
JS/JSON
\u301A
Unix/C/PHP/JAVA
0x301A
URL-encode
%E3%80%9A

Customize Left White Square Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>〚</span>
HTML Code:
<span>&#12314;</span>
HEX Code:
<span>&#x301A;</span>

Add with CSS

.left-white-square-bracket::before {
  content: '\\301A';
}

Set it in JavaScript

document.querySelector('.left-white-square-bracket').textContent = '〚';
copied