| Symbol Name | Right Parenthesis |
| Unicode Version | 1.1 |
| Unicode | U+0029 |
| Unicode block | |
| General category | Close Punctuation (Pe) |
| CSS Code | \0029 |
| Hex Code | 0x0029 |
| HTML Code | ) |
| LaTeX | ) |
| Symbol | ) |
| URL encode (UTF-8 percent) | %29 |
| Spoken / screen reader name | Right Parenthesis |
| UTF-8 | 29 |
| UTF-16 | 0029 |
| UTF-32 | 00000029 |
1\documentclass{article}2\usepackage{pifont}3)4\end{document}You can type the right parenthesis symbol on most modern devices with the help of following methods:
Alt + 41 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right parenthesis", or use Unicode Hex Input with 0029.
Ctrl + Shift + U, type 0029, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with bracket and quote support.
1span.right-parenthesis::before { content: "\0029"; }1<span>)</span>Right Parenthesis symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u0029' or String.fromCodePoint(41) |
| Python | '\N{RIGHT PARENTHESIS}' or chr(41) |
| Rust | '\u{0029}' |
| C / C++ | UTF-8 source or wchar_t with U+0029 |
| Go | string(rune(0x0029)) |
| Ruby | "\u{0029}" |