Left White Parenthesis

Shortcodes

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

Unicode
U+2985
HTML Code
⦥
HEX Code
⦅
CSS Code
\2985
JS/JSON
\u2985
Unix/C/PHP/JAVA
0x2985
URL-encode
%E2%A6%85

Customize Left White Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦅</span>
HTML Code:
<span>&#10661;</span>
HEX Code:
<span>&#x2985;</span>

Add with CSS

.left-white-parenthesis::before {
  content: '\\2985';
}

Set it in JavaScript

document.querySelector('.left-white-parenthesis').textContent = '⦅';
copied