Left S-shaped Bag Delimiter

Shortcodes

Copy useful codes for left s-shaped bag delimiter symbol ⟅ to use in websites, apps, blogs, and docs.

Unicode
U+27C5
HTML Code
⟅
HEX Code
⟅
CSS Code
\27C5
JS/JSON
\u27C5
Unix/C/PHP/JAVA
0x27C5
URL-encode
%E2%9F%85

Customize Left S-shaped Bag Delimiter

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

  

How to use Left S-shaped Bag Delimiter Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟅</span>
HTML Code:
<span>&#10181;</span>
HEX Code:
<span>&#x27C5;</span>

Add with CSS

.left-s-shaped-bag-delimiter::before {
  content: '\\27C5';
}

Set it in JavaScript

document.querySelector('.left-s-shaped-bag-delimiter').textContent = '⟅';
copied