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