Right Square Bracket With Quill

Shortcodes

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

Unicode
U+2046
HTML Code
⁆
HEX Code
⁆
CSS Code
\2046
JS/JSON
\u2046
Unix/C/PHP/JAVA
0x2046
URL-encode
%E2%81%86

Customize Right Square Bracket With Quill

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁆</span>
HTML Code:
<span>&#8262;</span>
HEX Code:
<span>&#x2046;</span>

Add with CSS

.right-square-bracket-with-quill::before {
  content: '\\2046';
}

Set it in JavaScript

document.querySelector('.right-square-bracket-with-quill').textContent = '⁆';
copied