Ornate Right Parenthesis

﴿

Shortcodes

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

Unicode
U+FD3F
HTML Code
﴿
HEX Code
﴿
CSS Code
\FD3F
JS/JSON
\uFD3F
Unix/C/PHP/JAVA
0xFD3F
URL-encode
%EF%B4%BF

Customize Ornate Right Parenthesis

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

﴿
  

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

Insert in HTML

1. Direct symbol:
<span>﴿</span>
HTML Code:
<span>&#64831;</span>
HEX Code:
<span>&#xFD3F;</span>

Add with CSS

.ornate-right-parenthesis::before {
  content: '\\FD3F';
}

Set it in JavaScript

document.querySelector('.ornate-right-parenthesis').textContent = '﴿';
copied