Medium Flattened Left Parenthesis Ornament

Shortcodes

Copy useful codes for medium flattened left parenthesis ornament 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 Medium Flattened Left Parenthesis Ornament

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

  

How to use Medium Flattened Left Parenthesis Ornament 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

.medium-flattened-left-parenthesis-ornament::before {
  content: '\\276A';
}

Set it in JavaScript

document.querySelector('.medium-flattened-left-parenthesis-ornament').textContent = '❪';
copied