Top Left Half Bracket

Shortcodes

Copy and paste codes for Top Left Half Bracket symbol ⸢ to use in your websites, apps, blogs, and more.

Unicode
U+2E22
HTML Code
⸢
HEX Code
⸢
CSS Code
\2E22
JS/JSON
\u2E22
Unix/C/PHP/JAVA
0x2E22
URL-encode
%E2%B8%A2
copied

Customize Top Left Half Bracket Symbol

Customize ⸢ symbol as you like and download Top Left Half 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 Top Left Half Bracket symbol in HTML, CSS, and JS?

Insert ⸢ Top Left Half Bracket using HTML

1. Copy-paste Top Left Half Bracket directly:
<span>⸢</span>
2. HTML Decimal Code:
<span>&#11810;</span>
3. Hexadecimal Code:
<span>&#x2E22;</span>
Preview:

Add Top Left Half Bracket symbol with CSS

.top-left-half-bracket::before {
    content: '\\2E22';
}
Preview: Top Left Half Bracket

Top Left Half Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.top-left-half-bracket').textContent = '⸢';
2. Unicode Escape for ⸢:
document.querySelector('.top-left-half-bracket').textContent = '\u2E22';
Preview: