Small Left Tortoise Shell Bracket

Shortcodes

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

Unicode
U+FE5D
HTML Code
﹝
HEX Code
﹝
CSS Code
\FE5D
JS/JSON
\uFE5D
Unix/C/PHP/JAVA
0xFE5D
URL-encode
%EF%B9%9D

Customize Small Left Tortoise Shell Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>﹝</span>
HTML Code:
<span>&#65117;</span>
HEX Code:
<span>&#xFE5D;</span>

Add with CSS

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

Set it in JavaScript

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