Right White Parenthesis

Shortcodes

Copy useful codes for right white parenthesis symbol ⦆ to use in websites, apps, blogs, and docs.

Unicode
U+2986
HTML Code
⦦
HEX Code
⦆
CSS Code
\2986
JS/JSON
\u2986
Unix/C/PHP/JAVA
0x2986
URL-encode
%E2%A6%86

Customize Right White Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦆</span>
HTML Code:
<span>&#10662;</span>
HEX Code:
<span>&#x2986;</span>

Add with CSS

.right-white-parenthesis::before {
  content: '\\2986';
}

Set it in JavaScript

document.querySelector('.right-white-parenthesis').textContent = '⦆';
copied