Double Left Arc Greater-than Bracket

Shortcodes

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

Unicode
U+2995
HTML Code
⦕
HEX Code
⦕
CSS Code
\2995
JS/JSON
\u2995
Unix/C/PHP/JAVA
0x2995
URL-encode
%E2%A6%95

Customize Double Left Arc Greater-than Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦕</span>
HTML Code:
<span>&#10645;</span>
HEX Code:
<span>&#x2995;</span>

Add with CSS

.double-left-arc-greater-than-bracket::before {
  content: '\\2995';
}

Set it in JavaScript

document.querySelector('.double-left-arc-greater-than-bracket').textContent = '⦕';
copied