Left Dotted Substitution Bracket

Shortcodes

Copy useful codes for left dotted substitution bracket symbol ⸄ to use in websites, apps, blogs, and docs.

Unicode
U+2E04
HTML Code
⸄
HEX Code
⸄
CSS Code
\2E04
JS/JSON
\u2E04
Unix/C/PHP/JAVA
0x2E04
URL-encode
%E2%B8%84

Customize Left Dotted Substitution Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸄</span>
HTML Code:
<span>&#11780;</span>
HEX Code:
<span>&#x2E04;</span>

Add with CSS

.left-dotted-substitution-bracket::before {
  content: '\\2E04';
}

Set it in JavaScript

document.querySelector('.left-dotted-substitution-bracket').textContent = '⸄';
copied