Parenthesis Small Right

Shortcodes

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

Unicode
U+276B
HTML Code
❫
HEX Code
❫
CSS Code
\276B
JS/JSON
\u276B
Unix/C/PHP/JAVA
0x276B
URL-encode
%E2%9D%AB

Customize Parenthesis Small Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>❫</span>
HTML Code:
<span>&#10091;</span>
HEX Code:
<span>&#x276B;</span>

Add with CSS

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

Set it in JavaScript

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