Top Parenthesis

Shortcodes

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

Unicode
U+23DC
HTML Code
⏜
HEX Code
⏜
CSS Code
\23DC
JS/JSON
\u23DC
Unix/C/PHP/JAVA
0x23DC
URL-encode
%E2%8F%9C

Customize Top Parenthesis

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏜</span>
HTML Code:
<span>&#9180;</span>
HEX Code:
<span>&#x23DC;</span>

Add with CSS

.top-parenthesis::before {
  content: '\\23DC';
}

Set it in JavaScript

document.querySelector('.top-parenthesis').textContent = '⏜';
copied