| 記号名 | Eighth Note |
| Unicodeバージョン | 1.1 |
| Unicode | U+266A |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \266A |
| 16進コード | 0x266A |
| HTMLコード | ♪ |
| LaTeX | \text{EIGHTHNOTE} |
| 記号 | ♪ |
| URLエンコード(UTF-8パーセント) | %E2%99%AA |
| 読み上げ名 / スクリーンリーダー | Eighth Note |
| UTF-8 | E2 99 AA |
| UTF-16 | 266A |
| UTF-32 | 0000266A |
1\documentclass{article}2\usepackage{pifont}3\text{EIGHTHNOTE}4\end{document}以下の方法でほとんどの最新デバイスでeighth note記号を入力できます:
Alt + 9834 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "eighth note", or use Unicode Hex Input with 266A.
Ctrl + Shift + U, type 266a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with musical notation symbol support.
1span.eighth-note::before { content: "\266A"; font-family: "Bravura Text", "Segoe UI Symbol", serif; }1<span>♪</span>各プログラミング言語におけるEighth Note記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u266A' or String.fromCodePoint(9834) |
| Python | '\N{EIGHTH NOTE}' or chr(9834) |
| Rust | '\u{266A}' |
| C / C++ | UTF-8 source or wchar_t with U+266A |
| Go | string(rune(0x266A)) |
| Ruby | "\u{266A}" |