| Symbol Name | Greek Capital Kai Symbol |
| Unicode Version | 5.1 |
| Unicode | U+03CF |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \03CF |
| Hex Code | 0x03CF |
| HTML Code | Ϗ |
| LaTeX | \text{GREEKCAPITALKAISYMBOL} |
| Symbol | Ϗ |
| URL encode (UTF-8 percent) | %CF%8F |
| Spoken / screen reader name | Greek Capital Kai Symbol |
| UTF-8 | CF 8F |
| UTF-16 | 03CF |
| UTF-32 | 000003CF |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKCAPITALKAISYMBOL}4\end{document}You can type the greek capital kai symbol on most modern devices with the help of following methods:
Alt + 975 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital kai symbol", or use Unicode Hex Input with 03CF.
Ctrl + Shift + U, type 03cf, 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.greek-capital-kai-symbol::before { content: "\03CF"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ϗ</span>Greek Capital Kai symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u03CF' or String.fromCodePoint(975) |
| Python | '\N{GREEK CAPITAL KAI SYMBOL}' or chr(975) |
| Rust | '\u{03CF}' |
| C / C++ | UTF-8 source or wchar_t with U+03CF |
| Go | string(rune(0x03CF)) |
| Ruby | "\u{03CF}" |