Left Substitution Bracket

Shortcodes

Copy and paste codes for Left Substitution Bracket symbol ⸂ to use in your websites, apps, blogs, and more.

Unicode
U+2E02
HTML Code
⸂
HEX Code
⸂
CSS Code
\2E02
JS/JSON
\u2E02
Unix/C/PHP/JAVA
0x2E02
URL-encode
%E2%B8%82
copied

Customize Left Substitution Bracket Symbol

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

Insert ⸂ Left Substitution Bracket using HTML

1. Copy-paste Left Substitution Bracket directly:
<span>⸂</span>
2. HTML Decimal Code:
<span>&#11778;</span>
3. Hexadecimal Code:
<span>&#x2E02;</span>
Preview:

Add Left Substitution Bracket symbol with CSS

.left-substitution-bracket::before {
    content: '\\2E02';
}
Preview: Left Substitution Bracket

Left Substitution Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.left-substitution-bracket').textContent = '⸂';
2. Unicode Escape for ⸂:
document.querySelector('.left-substitution-bracket').textContent = '\u2E02';
Preview: