Subscript Left Parenthesis

Shortcodes

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

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

Customize Subscript Left Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>₍</span>
HTML Code:
<span>&#8333;</span>
HEX Code:
<span>&#x208D;</span>

Add with CSS

.subscript-left-parenthesis::before {
  content: '\\208D';
}

Set it in JavaScript

document.querySelector('.subscript-left-parenthesis').textContent = '₍';
copied