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