Ornate Left Parenthesis

Shortcodes

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

Unicode
U+FD3E
HTML Code
﴾
HEX Code
﴾
CSS Code
\FD3E
JS/JSON
\uFD3E
Unix/C/PHP/JAVA
0xFD3E
URL-encode
%EF%B4%BE

Customize Ornate Left Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>﴾</span>
HTML Code:
<span>&#64830;</span>
HEX Code:
<span>&#xFD3E;</span>

Add with CSS

.ornate-left-parenthesis::before {
  content: '\\FD3E';
}

Set it in JavaScript

document.querySelector('.ornate-left-parenthesis').textContent = '﴾';
copied