Left Square Bracket With Quill

Shortcodes

Copy useful codes for left square bracket with quill symbol ⁅ to use in websites, apps, blogs, and docs.

Unicode
U+2045
HTML Code
⁅
HEX Code
⁅
CSS Code
\2045
JS/JSON
\u2045
Unix/C/PHP/JAVA
0x2045
URL-encode
%E2%81%85

Customize Left Square Bracket With Quill

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

  

How to use Left Square Bracket With Quill Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁅</span>
HTML Code:
<span>&#8261;</span>
HEX Code:
<span>&#x2045;</span>

Add with CSS

.left-square-bracket-with-quill::before {
  content: '\\2045';
}

Set it in JavaScript

document.querySelector('.left-square-bracket-with-quill').textContent = '⁅';
copied