Right Substitution Bracket

Shortcodes

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

Unicode
U+2E03
HTML Code
⸃
HEX Code
⸃
CSS Code
\2E03
JS/JSON
\u2E03
Unix/C/PHP/JAVA
0x2E03
URL-encode
%E2%B8%83
copied

Customize Right Substitution Bracket Symbol

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

Insert ⸃ Right Substitution Bracket using HTML

1. Copy-paste Right Substitution Bracket directly:
<span>⸃</span>
2. HTML Decimal Code:
<span>&#11779;</span>
3. Hexadecimal Code:
<span>&#x2E03;</span>
Preview:

Add Right Substitution Bracket symbol with CSS

.right-substitution-bracket::before {
    content: '\\2E03';
}
Preview: Right Substitution Bracket

Right Substitution Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.right-substitution-bracket').textContent = '⸃';
2. Unicode Escape for ⸃:
document.querySelector('.right-substitution-bracket').textContent = '\u2E03';
Preview: