Right Parenthesis

)

Shortcodes

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

Unicode
U+0029
Alt Code
41
HTML Code
)
HEX Code
)
CSS Code
\0029
JS/JSON
\u0029
Unix/C/PHP/JAVA
0x0029
URL-encode
%29

Customize Right Parenthesis

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

)
  

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

Insert in HTML

1. Direct symbol:
<span>)</span>
HTML Code:
<span>&#41;</span>
HEX Code:
<span>&#x0029;</span>

Add with CSS

.right-parenthesis::before {
  content: '\\0029';
}

Set it in JavaScript

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