Double Right Arc Less-than Bracket

Shortcodes

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

Unicode
U+2996
HTML Code
⦖
HEX Code
⦖
CSS Code
\2996
JS/JSON
\u2996
Unix/C/PHP/JAVA
0x2996
URL-encode
%E2%A6%96

Customize Double Right Arc Less-than Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦖</span>
HTML Code:
<span>&#10646;</span>
HEX Code:
<span>&#x2996;</span>

Add with CSS

.double-right-arc-less-than-bracket::before {
  content: '\\2996';
}

Set it in JavaScript

document.querySelector('.double-right-arc-less-than-bracket').textContent = '⦖';
copied