Heavy Left-Pointing Angle Quotation Mark Ornament

Shortcodes

Copy useful codes for heavy left-pointing angle quotation mark ornament symbol ❮ to use in websites, apps, blogs, and docs.

Unicode
U+276E
HTML Code
❎
HEX Code
❮
CSS Code
\276E
JS/JSON
\u276E
Unix/C/PHP/JAVA
0x276E
URL-encode
%E2%9E%AE

Customize Heavy Left-Pointing Angle Quotation Mark Ornament

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

  

How to use Heavy Left-Pointing Angle Quotation Mark Ornament Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❮</span>
HTML Code:
<span>&#10062;</span>
HEX Code:
<span>&#x276E;</span>

Add with CSS

.heavy-left-pointing-angle-quotation-mark-ornament::before {
  content: '\\276E';
}

Set it in JavaScript

document.querySelector('.heavy-left-pointing-angle-quotation-mark-ornament').textContent = '❮';
copied