Right Angle Dotted Substitution Marker

Shortcodes

Copy useful codes for right angle dotted substitution marker symbol ⸁ to use in websites, apps, blogs, and docs.

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

Customize Right Angle Dotted Substitution Marker

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

  

How to use Right Angle Dotted Substitution Marker Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸁</span>
HTML Code:
<span>&#11777;</span>
HEX Code:
<span>&#x2E01;</span>

Add with CSS

.right-angle-dotted-substitution-marker::before {
  content: '\\2E01';
}

Set it in JavaScript

document.querySelector('.right-angle-dotted-substitution-marker').textContent = '⸁';
copied