| 記号名 | Greek Question Mark |
| Unicodeバージョン | 1.1 |
| Unicode | U+037E |
| Unicodeブロック | |
| 一般カテゴリ | Punctuation (Po) |
| CSSコード | \037E |
| 16進コード | 0x037E |
| HTMLコード | ; |
| LaTeX | \text{GREEKQUESTIONMARK} |
| 記号 | ; |
| URLエンコード(UTF-8パーセント) | %CD%BE |
| 読み上げ名 / スクリーンリーダー | Greek Question Mark |
| UTF-8 | CD BE |
| UTF-16 | 037E |
| UTF-32 | 0000037E |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKQUESTIONMARK}4\end{document}以下の方法でほとんどの最新デバイスでgreek question mark記号を入力できます:
Alt + 894 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek question mark", or use Unicode Hex Input with 037E.
Ctrl + Shift + U, type 037e, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.greek-question-mark::before { content: "\037E"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>;</span>各プログラミング言語におけるGreek Question Mark記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u037E' or String.fromCodePoint(894) |
| Python | '\N{GREEK QUESTION MARK}' or chr(894) |
| Rust | '\u{037E}' |
| C / C++ | UTF-8 source or wchar_t with U+037E |
| Go | string(rune(0x037E)) |
| Ruby | "\u{037E}" |