| Nombre del símbolo | Greek Capital Letter Kappa |
| Versión Unicode | 1.1 |
| Unicode | U+039A |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \039A |
| Código hexadecimal | 0x039A |
| Código HTML | Κ |
| LaTeX | K |
| Símbolo | Κ |
| Codificación URL (porcentaje UTF-8) | %CE%9A |
| Nombre oral / lector de pantalla | Greek Capital Letter Kappa |
| UTF-8 | CE 9A |
| UTF-16 | 039A |
| UTF-32 | 0000039A |
1\documentclass{article}2\usepackage{pifont}3K4\end{document}Puedes escribir el símbolo greek capital letter kappa en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Greek Capital Letter Kappa en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |