Upper Left Or Lower Right Curly Bracket Section

Shortcodes

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

Unicode
U+23B0
HTML Code
⎰
HEX Code
⎰
CSS Code
\23B0
JS/JSON
\u23B0
Unix/C/PHP/JAVA
0x23B0
URL-encode
%E2%8E%B0

Customize Upper Left Or Lower Right Curly Bracket Section

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

  

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

Insert in HTML

1. Direct symbol:
<span>⎰</span>
HTML Code:
<span>&#9136;</span>
HEX Code:
<span>&#x23B0;</span>

Add with CSS

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

Set it in JavaScript

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