Left Double Parenthesis

Shortcodes

Copy useful codes for left double parenthesis symbol ⸨ to use in websites, apps, blogs, and docs.

Unicode
U+2E28
HTML Code
⸨
HEX Code
⸨
CSS Code
\2E28
JS/JSON
\u2E28
Unix/C/PHP/JAVA
0x2E28
URL-encode
%E2%B8%A8

Customize Left Double Parenthesis

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

  

How to use Left Double Parenthesis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸨</span>
HTML Code:
<span>&#11816;</span>
HEX Code:
<span>&#x2E28;</span>

Add with CSS

.left-double-parenthesis::before {
  content: '\\2E28';
}

Set it in JavaScript

document.querySelector('.left-double-parenthesis').textContent = '⸨';
copied