Bottom Square Bracket

Shortcodes

Copy and paste codes for Bottom Square Bracket symbol ⎵ to use in your websites, apps, blogs, and more.

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

Customize Bottom Square Bracket Symbol

Customize ⎵ symbol as you like and download Bottom Square Bracket as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Bottom Square Bracket symbol in HTML, CSS, and JS?

Insert ⎵ Bottom Square Bracket using HTML

1. Copy-paste Bottom Square Bracket directly:
<span>⎵</span>
2. HTML Decimal Code:
<span>&#9141;</span>
3. Hexadecimal Code:
<span>&#x23B5;</span>
Preview:

Add Bottom Square Bracket symbol with CSS

.bottom-square-bracket::before {
    content: '\\23B5';
}
Preview: Bottom Square Bracket

Bottom Square Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.bottom-square-bracket').textContent = '⎵';
2. Unicode Escape for ⎵:
document.querySelector('.bottom-square-bracket').textContent = '\u23B5';
Preview: