Right S-shaped Bag Delimiter

Shortcodes

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

Unicode
U+27C6
HTML Code
⟆
HEX Code
⟆
CSS Code
\27C6
JS/JSON
\u27C6
Unix/C/PHP/JAVA
0x27C6
URL-encode
%E2%9F%86

Customize Right S-shaped Bag Delimiter

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟆</span>
HTML Code:
<span>&#10182;</span>
HEX Code:
<span>&#x27C6;</span>

Add with CSS

.right-s-shaped-bag-delimiter::before {
  content: '\\27C6';
}

Set it in JavaScript

document.querySelector('.right-s-shaped-bag-delimiter').textContent = '⟆';
copied