| 記号名 | Latin Capital Letter Omega |
| Unicodeバージョン | 8.0 |
| Unicode | U+A7B6 |
| Unicodeブロック | |
| 一般カテゴリ | Uppercase Letter (Lu) |
| CSSコード | \A7B6 |
| 16進コード | 0xA7B6 |
| HTMLコード | Ꞷ |
| LaTeX | \text{LATINCAPITALLETTEROMEGA} |
| 記号 | Ꞷ |
| URLエンコード(UTF-8パーセント) | %EA%9E%B6 |
| 読み上げ名 / スクリーンリーダー | Latin Capital Letter Omega |
| UTF-8 | EA 9E B6 |
| UTF-16 | A7B6 |
| UTF-32 | 0000A7B6 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINCAPITALLETTEROMEGA}4\end{document}以下の方法でほとんどの最新デバイスでlatin capital letter omega記号を入力できます:
Alt + 42934 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin capital letter omega", or use Unicode Hex Input with A7B6.
Ctrl + Shift + U, type a7b6, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-capital-letter-omega::before { content: "\A7B6"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>Ꞷ</span>各プログラミング言語におけるLatin Capital Letter Omega記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uA7B6' or String.fromCodePoint(42934) |
| Python | '\N{LATIN CAPITAL LETTER OMEGA}' or chr(42934) |
| Rust | '\u{A7B6}' |
| C / C++ | UTF-8 source or wchar_t with U+A7B6 |
| Go | string(rune(0xA7B6)) |
| Ruby | "\u{A7B6}" |