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