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