Left White Curly Bracket

Shortcodes

Copy useful codes for left white curly bracket symbol ⦃ to use in websites, apps, blogs, and docs.

Unicode
U+2983
HTML Code
⦣
HEX Code
⦃
CSS Code
\2983
JS/JSON
\u2983
Unix/C/PHP/JAVA
0x2983
URL-encode
%E2%A6%83

Customize Left White Curly Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦃</span>
HTML Code:
<span>&#10659;</span>
HEX Code:
<span>&#x2983;</span>

Add with CSS

.left-white-curly-bracket::before {
  content: '\\2983';
}

Set it in JavaScript

document.querySelector('.left-white-curly-bracket').textContent = '⦃';
copied