Small Left Curly Bracket

Shortcodes

Copy useful codes for small left curly bracket symbol ﹛ to use in websites, apps, blogs, and docs.

Unicode
U+FE5B
HTML Code
﹛
HEX Code
﹛
CSS Code
\FE5B
JS/JSON
\uFE5B
Unix/C/PHP/JAVA
0xFE5B
URL-encode
%EF%B9%9B

Customize Small Left Curly Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>﹛</span>
HTML Code:
<span>&#65115;</span>
HEX Code:
<span>&#xFE5B;</span>

Add with CSS

.small-left-curly-bracket::before {
  content: '\\FE5B';
}

Set it in JavaScript

document.querySelector('.small-left-curly-bracket').textContent = '﹛';
copied