Mathematical Left White Square Bracket

Shortcodes

Copy useful codes for mathematical left white square bracket symbol ⟦ to use in websites, apps, blogs, and docs.

Unicode
U+27E6
HTML Code
⟦
HEX Code
⟦
CSS Code
\27E6
JS/JSON
\u27E6
Unix/C/PHP/JAVA
0x27E6
URL-encode
%E2%9F%A6

Customize Mathematical Left White Square Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟦</span>
HTML Code:
<span>&#10214;</span>
HEX Code:
<span>&#x27E6;</span>

Add with CSS

.mathematical-left-white-square-bracket::before {
  content: '\\27E6';
}

Set it in JavaScript

document.querySelector('.mathematical-left-white-square-bracket').textContent = '⟦';
copied