Right White Curly Bracket

Shortcodes

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

Unicode
U+2984
HTML Code
⦤
HEX Code
⦄
CSS Code
\2984
JS/JSON
\u2984
Unix/C/PHP/JAVA
0x2984
URL-encode
%E2%A6%84

Customize Right White Curly Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦄</span>
HTML Code:
<span>&#10660;</span>
HEX Code:
<span>&#x2984;</span>

Add with CSS

.right-white-curly-bracket::before {
  content: '\\2984';
}

Set it in JavaScript

document.querySelector('.right-white-curly-bracket').textContent = '⦄';
copied