Bottom Parenthesis

Shortcodes

Copy useful codes for bottom parenthesis symbol ⏝ to use in websites, apps, blogs, and docs.

Unicode
U+23DD
HTML Code
⏝
HEX Code
⏝
CSS Code
\23DD
JS/JSON
\u23DD
Unix/C/PHP/JAVA
0x23DD
URL-encode
%E2%8F%9D

Customize Bottom Parenthesis

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

  

How to use Bottom Parenthesis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⏝</span>
HTML Code:
<span>&#9181;</span>
HEX Code:
<span>&#x23DD;</span>

Add with CSS

.bottom-parenthesis::before {
  content: '\\23DD';
}

Set it in JavaScript

document.querySelector('.bottom-parenthesis').textContent = '⏝';
copied