Mathematical Right White Square Bracket

Shortcodes

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

Unicode
U+27E7
HTML Code
⟧
HEX Code
⟧
CSS Code
\27E7
JS/JSON
\u27E7
Unix/C/PHP/JAVA
0x27E7
URL-encode
%E2%9F%A7

Customize Mathematical Right White Square Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟧</span>
HTML Code:
<span>&#10215;</span>
HEX Code:
<span>&#x27E7;</span>

Add with CSS

.mathematical-right-white-square-bracket::before {
  content: '\\27E7';
}

Set it in JavaScript

document.querySelector('.mathematical-right-white-square-bracket').textContent = '⟧';
copied