| 記号名 | Right Parenthesis |
| Unicodeバージョン | 1.1 |
| Unicode | U+0029 |
| Unicodeブロック | |
| 一般カテゴリ | Close Punctuation (Pe) |
| CSSコード | \0029 |
| 16進コード | 0x0029 |
| HTMLコード | ) |
| LaTeX | ) |
| 記号 | ) |
| URLエンコード(UTF-8パーセント) | %29 |
| 読み上げ名 / スクリーンリーダー | Right Parenthesis |
| UTF-8 | 29 |
| UTF-16 | 0029 |
| UTF-32 | 00000029 |
1\documentclass{article}2\usepackage{pifont}3)4\end{document}以下の方法でほとんどの最新デバイスでright parenthesis記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |