Right Arc Greater-than Bracket

Shortcodes

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

Unicode
U+2994
HTML Code
⦔
HEX Code
⦔
CSS Code
\2994
JS/JSON
\u2994
Unix/C/PHP/JAVA
0x2994
URL-encode
%E2%A6%94

Customize Right Arc Greater-than Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦔</span>
HTML Code:
<span>&#10644;</span>
HEX Code:
<span>&#x2994;</span>

Add with CSS

.right-arc-greater-than-bracket::before {
  content: '\\2994';
}

Set it in JavaScript

document.querySelector('.right-arc-greater-than-bracket').textContent = '⦔';
copied