Small Right Parenthesis

Shortcodes

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

Unicode
U+FE5A
HTML Code
﹚
HEX Code
﹚
CSS Code
\FE5A
JS/JSON
\uFE5A
Unix/C/PHP/JAVA
0xFE5A
URL-encode
%EF%B9%9A

Customize Small Right Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>﹚</span>
HTML Code:
<span>&#65114;</span>
HEX Code:
<span>&#xFE5A;</span>

Add with CSS

.small-right-parenthesis::before {
  content: '\\FE5A';
}

Set it in JavaScript

document.querySelector('.small-right-parenthesis').textContent = '﹚';
copied