Right Double Parenthesis

Shortcodes

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

Unicode
U+2E29
HTML Code
⸩
HEX Code
⸩
CSS Code
\2E29
JS/JSON
\u2E29
Unix/C/PHP/JAVA
0x2E29
URL-encode
%E2%B8%A9

Customize Right Double Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸩</span>
HTML Code:
<span>&#11817;</span>
HEX Code:
<span>&#x2E29;</span>

Add with CSS

.right-double-parenthesis::before {
  content: '\\2E29';
}

Set it in JavaScript

document.querySelector('.right-double-parenthesis').textContent = '⸩';
copied