Right Square Bracket With Tick In Bottom Corner

Shortcodes

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

Unicode
U+298E
HTML Code
⦎
HEX Code
⦎
CSS Code
\298E
JS/JSON
\u298E
Unix/C/PHP/JAVA
0x298E
URL-encode
%E2%A6%8E

Customize Right Square Bracket With Tick In Bottom Corner

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦎</span>
HTML Code:
<span>&#10638;</span>
HEX Code:
<span>&#x298E;</span>

Add with CSS

.right-square-bracket-with-tick-in-bottom-corner::before {
  content: '\\298E';
}

Set it in JavaScript

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