Right Angle Substitution Marker

Shortcodes

Copy and paste codes for Right Angle Substitution Marker symbol ⸀ to use in your websites, apps, blogs, and more.

Unicode
U+2E00
HTML Code
⸀
HEX Code
⸀
CSS Code
\2E00
JS/JSON
\u2E00
Unix/C/PHP/JAVA
0x2E00
URL-encode
%E2%B8%80
copied

Customize Right Angle Substitution Marker Symbol

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

Insert ⸀ Right Angle Substitution Marker using HTML

1. Copy-paste Right Angle Substitution Marker directly:
<span>⸀</span>
2. HTML Decimal Code:
<span>&#11776;</span>
3. Hexadecimal Code:
<span>&#x2E00;</span>
Preview:

Add Right Angle Substitution Marker symbol with CSS

.right-angle-substitution-marker::before {
    content: '\\2E00';
}
Preview: Right Angle Substitution Marker

Right Angle Substitution Marker JavaScript Code

1. Direct Symbol:
document.querySelector('.right-angle-substitution-marker').textContent = '⸀';
2. Unicode Escape for ⸀:
document.querySelector('.right-angle-substitution-marker').textContent = '\u2E00';
Preview: