| Symboolnaam | Right Parenthesis |
| Unicode-versie | 1.1 |
| Unicode | U+0029 |
| Unicode-blok | |
| Algemene categorie | Close Punctuation (Pe) |
| CSS-code | \0029 |
| Hexadecimale code | 0x0029 |
| HTML-code | ) |
| LaTeX | ) |
| Symbool | ) |
| URL-codering (UTF-8 procent) | %29 |
| Uitgesproken naam / schermlezer | Right Parenthesis |
| UTF-8 | 29 |
| UTF-16 | 0029 |
| UTF-32 | 00000029 |
1\documentclass{article}2\usepackage{pifont}3)4\end{document}Je kunt het right parenthesis-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Right Parenthesis-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |