| 記号名 | Greek Tonos |
| Unicodeバージョン | 1.1 |
| Unicode | U+0384 |
| Unicodeブロック | |
| 一般カテゴリ | Modifier Symbol (Sk) |
| CSSコード | \0384 |
| 16進コード | 0x0384 |
| HTMLコード | ΄ |
| LaTeX | \text{GREEKTONOS} |
| 記号 | ΄ |
| URLエンコード(UTF-8パーセント) | %CE%84 |
| 読み上げ名 / スクリーンリーダー | Greek Tonos |
| UTF-8 | CE 84 |
| UTF-16 | 0384 |
| UTF-32 | 00000384 |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKTONOS}4\end{document}以下の方法でほとんどの最新デバイスでgreek tonos記号を入力できます:
Alt + 900 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek tonos", or use Unicode Hex Input with 0384.
Ctrl + Shift + U, type 0384, 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-tonos::before { content: "\0384"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>΄</span>各プログラミング言語におけるGreek Tonos記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0384' or String.fromCodePoint(900) |
| Python | '\N{GREEK TONOS}' or chr(900) |
| Rust | '\u{0384}' |
| C / C++ | UTF-8 source or wchar_t with U+0384 |
| Go | string(rune(0x0384)) |
| Ruby | "\u{0384}" |