Parenthesis Small Left

Shortcodes

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

Unicode
U+276A
HTML Code
❪
HEX Code
❪
CSS Code
\276A
JS/JSON
\u276A
Unix/C/PHP/JAVA
0x276A
URL-encode
%E2%9D%AA

Customize Parenthesis Small Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>❪</span>
HTML Code:
<span>&#10090;</span>
HEX Code:
<span>&#x276A;</span>

Add with CSS

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

Set it in JavaScript

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