Small Left Parenthesis

Shortcodes

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

Unicode
U+FE59
HTML Code
﹙
HEX Code
﹙
CSS Code
\FE59
JS/JSON
\uFE59
Unix/C/PHP/JAVA
0xFE59
URL-encode
%EF%B9%99

Customize Small Left Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>﹙</span>
HTML Code:
<span>&#65113;</span>
HEX Code:
<span>&#xFE59;</span>

Add with CSS

.small-left-parenthesis::before {
  content: '\\FE59';
}

Set it in JavaScript

document.querySelector('.small-left-parenthesis').textContent = '﹙';
copied