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