Right Angle Substitution Marker

Shortcodes

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

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

Customize Right Angle Substitution Marker

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸀</span>
HTML Code:
<span>&#11776;</span>
HEX Code:
<span>&#x2E00;</span>

Add with CSS

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

Set it in JavaScript

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