Right Substitution Bracket

Shortcodes

Copy useful codes for right substitution bracket symbol ⸃ to use in websites, apps, blogs, and docs.

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

Customize Right Substitution Bracket

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

  

How to use Right Substitution Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸃</span>
HTML Code:
<span>&#11779;</span>
HEX Code:
<span>&#x2E03;</span>

Add with CSS

.right-substitution-bracket::before {
  content: '\\2E03';
}

Set it in JavaScript

document.querySelector('.right-substitution-bracket').textContent = '⸃';
copied