Left Square Bracket With Tick In Bottom Corner

Shortcodes

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

Unicode
U+298F
HTML Code
⦏
HEX Code
⦏
CSS Code
\298F
JS/JSON
\u298F
Unix/C/PHP/JAVA
0x298F
URL-encode
%E2%A6%8F

Customize Left Square Bracket With Tick In Bottom Corner

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦏</span>
HTML Code:
<span>&#10639;</span>
HEX Code:
<span>&#x298F;</span>

Add with CSS

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

Set it in JavaScript

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