Bottom Square Bracket Over Top Square Bracket

Shortcodes

Copy useful codes for bottom square bracket over top square bracket symbol ⎶ to use in websites, apps, blogs, and docs.

Unicode
U+23B6
HTML Code
⎶
HEX Code
⎶
CSS Code
\23B6
JS/JSON
\u23B6
Unix/C/PHP/JAVA
0x23B6
URL-encode
%E2%8E%B6

Customize Bottom Square Bracket Over Top Square Bracket

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

  

How to use Bottom Square Bracket Over Top Square Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⎶</span>
HTML Code:
<span>&#9142;</span>
HEX Code:
<span>&#x23B6;</span>

Add with CSS

.bottom-square-bracket-over-top-square-bracket::before {
  content: '\\23B6';
}

Set it in JavaScript

document.querySelector('.bottom-square-bracket-over-top-square-bracket').textContent = '⎶';
copied