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