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