Left Angle Bracket With Dot

Shortcodes

Copy useful codes for left angle bracket with dot symbol ⦑ to use in websites, apps, blogs, and docs.

Unicode
U+2991
HTML Code
⦑
HEX Code
⦑
CSS Code
\2991
JS/JSON
\u2991
Unix/C/PHP/JAVA
0x2991
URL-encode
%E2%A6%91

Customize Left Angle Bracket With Dot

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

  

How to use Left Angle Bracket With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦑</span>
HTML Code:
<span>&#10641;</span>
HEX Code:
<span>&#x2991;</span>

Add with CSS

.left-angle-bracket-with-dot::before {
  content: '\\2991';
}

Set it in JavaScript

document.querySelector('.left-angle-bracket-with-dot').textContent = '⦑';
copied