Upper Right Or Lower Left Curly Bracket Section

Shortcodes

Copy useful codes for upper right or lower left curly bracket section symbol ⎱ to use in websites, apps, blogs, and docs.

Unicode
U+23B1
HTML Code
⎱
HEX Code
⎱
CSS Code
\23B1
JS/JSON
\u23B1
Unix/C/PHP/JAVA
0x23B1
URL-encode
%E2%8E%B1

Customize Upper Right Or Lower Left Curly Bracket Section

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

  

How to use Upper Right Or Lower Left Curly Bracket Section Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⎱</span>
HTML Code:
<span>&#9137;</span>
HEX Code:
<span>&#x23B1;</span>

Add with CSS

.upper-right-or-lower-left-curly-bracket-section::before {
  content: '\\23B1';
}

Set it in JavaScript

document.querySelector('.upper-right-or-lower-left-curly-bracket-section').textContent = '⎱';
copied