Right Square Bracket With Tick In Top Corner

Shortcodes

Copy useful codes for right square bracket with tick in top corner symbol ⦐ to use in websites, apps, blogs, and docs.

Unicode
U+2990
HTML Code
⦐
HEX Code
⦐
CSS Code
\2990
JS/JSON
\u2990
Unix/C/PHP/JAVA
0x2990
URL-encode
%E2%A6%90

Customize Right Square Bracket With Tick In Top Corner

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

  

How to use Right Square Bracket With Tick In Top Corner Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦐</span>
HTML Code:
<span>&#10640;</span>
HEX Code:
<span>&#x2990;</span>

Add with CSS

.right-square-bracket-with-tick-in-top-corner::before {
  content: '\\2990';
}

Set it in JavaScript

document.querySelector('.right-square-bracket-with-tick-in-top-corner').textContent = '⦐';
copied