| Nome del simbolo | Greek Capital Letter Kappa |
| Versione Unicode | 1.1 |
| Unicode | U+039A |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \039A |
| Codice esadecimale | 0x039A |
| Codice HTML | Κ |
| LaTeX | K |
| Simbolo | Κ |
| Codifica URL (percentuale UTF-8) | %CE%9A |
| Nome parlato / screen reader | Greek Capital Letter Kappa |
| UTF-8 | CE 9A |
| UTF-16 | 039A |
| UTF-32 | 0000039A |
1\documentclass{article}2\usepackage{pifont}3K4\end{document}Puoi digitare il simbolo greek capital letter kappa sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Greek Capital Letter Kappa nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |