Subscript Left Parenthesis

Shortcodes

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

Unicode
U+208D
HTML Code
₍
HEX Code
₍
CSS Code
\208D
JS/JSON
\u208D
Unix/C/PHP/JAVA
0x208D
URL-encode
%E2%82%8D
copied

Customize Subscript Left Parenthesis Symbol

Customize ₍ symbol as you like and download Subscript Left 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 Subscript Left Parenthesis symbol in HTML, CSS, and JS?

Insert ₍ Subscript Left Parenthesis using HTML

1. Copy-paste Subscript Left Parenthesis directly:
<span>₍</span>
2. HTML Decimal Code:
<span>&#8333;</span>
3. Hexadecimal Code:
<span>&#x208D;</span>
Preview:

Add Subscript Left Parenthesis symbol with CSS

.subscript-left-parenthesis::before {
    content: '\\208D';
}
Preview: Subscript Left Parenthesis

Subscript Left Parenthesis JavaScript Code

1. Direct Symbol:
document.querySelector('.subscript-left-parenthesis').textContent = '₍';
2. Unicode Escape for ₍:
document.querySelector('.subscript-left-parenthesis').textContent = '\u208D';
Preview: