Left Tortoise Shell Bracket

Shortcodes

Copy useful codes for left tortoise shell bracket symbol 〔 to use in websites, apps, blogs, and docs.

Unicode
U+3014
HTML Code
〔
HEX Code
〔
CSS Code
\3014
JS/JSON
\u3014
Unix/C/PHP/JAVA
0x3014
URL-encode
%E3%80%94

Customize Left Tortoise Shell Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>〔</span>
HTML Code:
<span>&#12308;</span>
HEX Code:
<span>&#x3014;</span>

Add with CSS

.left-tortoise-shell-bracket::before {
  content: '\\3014';
}

Set it in JavaScript

document.querySelector('.left-tortoise-shell-bracket').textContent = '〔';
copied