Left Square Bracket With Underbar

Shortcodes

Copy useful codes for left square bracket with underbar symbol ⦋ to use in websites, apps, blogs, and docs.

Unicode
U+298B
HTML Code
⦋
HEX Code
⦋
CSS Code
\298B
JS/JSON
\u298B
Unix/C/PHP/JAVA
0x298B
URL-encode
%E2%A6%8B

Customize Left Square Bracket With Underbar

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

  

How to use Left Square Bracket With Underbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦋</span>
HTML Code:
<span>&#10635;</span>
HEX Code:
<span>&#x298B;</span>

Add with CSS

.left-square-bracket-with-underbar::before {
  content: '\\298B';
}

Set it in JavaScript

document.querySelector('.left-square-bracket-with-underbar').textContent = '⦋';
copied