Top Square Bracket

Shortcodes

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

Unicode
U+23B4
HTML Code
⎴
HEX Code
⎴
CSS Code
\23B4
JS/JSON
\u23B4
Unix/C/PHP/JAVA
0x23B4
URL-encode
%E2%8E%B4

Customize Top Square Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⎴</span>
HTML Code:
<span>&#9140;</span>
HEX Code:
<span>&#x23B4;</span>

Add with CSS

.top-square-bracket::before {
  content: '\\23B4';
}

Set it in JavaScript

document.querySelector('.top-square-bracket').textContent = '⎴';
copied