Left Arc Less-than Bracket

Shortcodes

Copy useful codes for left arc less-than bracket symbol ⦓ to use in websites, apps, blogs, and docs.

Unicode
U+2993
HTML Code
⦓
HEX Code
⦓
CSS Code
\2993
JS/JSON
\u2993
Unix/C/PHP/JAVA
0x2993
URL-encode
%E2%A6%93

Customize Left Arc Less-than Bracket

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

  

How to use Left Arc Less-than Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦓</span>
HTML Code:
<span>&#10643;</span>
HEX Code:
<span>&#x2993;</span>

Add with CSS

.left-arc-less-than-bracket::before {
  content: '\\2993';
}

Set it in JavaScript

document.querySelector('.left-arc-less-than-bracket').textContent = '⦓';
copied