Right Angle Dotted Substitution Marker

Shortcodes

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

Unicode
U+2E01
HTML Code
⸁
HEX Code
⸁
CSS Code
\2E01
JS/JSON
\u2E01
Unix/C/PHP/JAVA
0x2E01
URL-encode
%E2%B8%81
copied

Customize Right Angle Dotted Substitution Marker Symbol

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

Insert ⸁ Right Angle Dotted Substitution Marker using HTML

1. Copy-paste Right Angle Dotted Substitution Marker directly:
<span>⸁</span>
2. HTML Decimal Code:
<span>&#11777;</span>
3. Hexadecimal Code:
<span>&#x2E01;</span>
Preview:

Add Right Angle Dotted Substitution Marker symbol with CSS

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

Right Angle Dotted Substitution Marker JavaScript Code

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