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