Bottom Square Bracket

Shortcodes

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

Unicode
U+23B5
HTML Code
⎵
HEX Code
⎵
CSS Code
\23B5
JS/JSON
\u23B5
Unix/C/PHP/JAVA
0x23B5
URL-encode
%E2%8E%B5

Customize Bottom Square Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⎵</span>
HTML Code:
<span>&#9141;</span>
HEX Code:
<span>&#x23B5;</span>

Add with CSS

.bottom-square-bracket::before {
  content: '\\23B5';
}

Set it in JavaScript

document.querySelector('.bottom-square-bracket').textContent = '⎵';
copied