Mathematical Left White Tortoise Shell Bracket

Shortcodes

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

Unicode
U+27EC
HTML Code
⟬
HEX Code
⟬
CSS Code
\27EC
JS/JSON
\u27EC
Unix/C/PHP/JAVA
0x27EC
URL-encode
%E2%9F%AC

Customize Mathematical Left White Tortoise Shell Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟬</span>
HTML Code:
<span>&#10220;</span>
HEX Code:
<span>&#x27EC;</span>

Add with CSS

.mathematical-left-white-tortoise-shell-bracket::before {
  content: '\\27EC';
}

Set it in JavaScript

document.querySelector('.mathematical-left-white-tortoise-shell-bracket').textContent = '⟬';
copied