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