| 記号名 | Fullwidth Right Parenthesis |
| Unicodeバージョン | 1.1 |
| Unicode | U+FF09 |
| Unicodeブロック | |
| 一般カテゴリ | Close Punctuation (Pe) |
| CSSコード | \FF09 |
| 16進コード | 0xFF09 |
| HTMLコード | ) |
| LaTeX | \text{FULLWIDTHRIGHTPARENTHESIS} |
| 記号 | ) |
| URLエンコード(UTF-8パーセント) | %EF%BC%89 |
| 読み上げ名 / スクリーンリーダー | Fullwidth Right Parenthesis |
| UTF-8 | EF BC 89 |
| UTF-16 | FF09 |
| UTF-32 | 0000FF09 |
1\documentclass{article}2\usepackage{pifont}3\text{FULLWIDTHRIGHTPARENTHESIS}4\end{document}以下の方法でほとんどの最新デバイスでfullwidth right parenthesis記号を入力できます:
Alt + 65289 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "fullwidth right parenthesis", or use Unicode Hex Input with FF09.
Ctrl + Shift + U, type ff09, 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.fullwidth-right-parenthesis::before { content: "\FF09"; }1<span>)</span>各プログラミング言語におけるFullwidth Right Parenthesis記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uFF09' or String.fromCodePoint(65289) |
| Python | '\N{FULLWIDTH RIGHT PARENTHESIS}' or chr(65289) |
| Rust | '\u{FF09}' |
| C / C++ | UTF-8 source or wchar_t with U+FF09 |
| Go | string(rune(0xFF09)) |
| Ruby | "\u{FF09}" |