Left White Parenthesis

Shortcodes

Copy and paste codes for Left White Parenthesis symbol ⦅ to use in your websites, apps, blogs, and more.

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

Customize Left White Parenthesis Symbol

Customize ⦅ symbol as you like and download Left White Parenthesis as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Left White Parenthesis symbol in HTML, CSS, and JS?

Insert ⦅ Left White Parenthesis using HTML

1. Copy-paste Left White Parenthesis directly:
<span>⦅</span>
2. HTML Decimal Code:
<span>&#10661;</span>
3. Hexadecimal Code:
<span>&#x2985;</span>
Preview:

Add Left White Parenthesis symbol with CSS

.left-white-parenthesis::before {
    content: '\\2985';
}
Preview: Left White Parenthesis

Left White Parenthesis JavaScript Code

1. Direct Symbol:
document.querySelector('.left-white-parenthesis').textContent = '⦅';
2. Unicode Escape for ⦅:
document.querySelector('.left-white-parenthesis').textContent = '\u2985';
Preview: