Left Square Bracket With Tick In Top Corner

Shortcodes

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

Unicode
U+298D
HTML Code
⦍
HEX Code
⦍
CSS Code
\298D
JS/JSON
\u298D
Unix/C/PHP/JAVA
0x298D
URL-encode
%E2%A6%8D

Customize Left Square Bracket With Tick In Top Corner

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦍</span>
HTML Code:
<span>&#10637;</span>
HEX Code:
<span>&#x298D;</span>

Add with CSS

.left-square-bracket-with-tick-in-top-corner::before {
  content: '\\298D';
}

Set it in JavaScript

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