| Nome del simbolo | Greek Small Letter Kappa |
| Versione Unicode | 1.1 |
| Unicode | U+03BA |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \03BA |
| Codice esadecimale | 0x03BA |
| Codice HTML | κ |
| LaTeX | \kappa |
| Simbolo | κ |
| Codifica URL (percentuale UTF-8) | %CE%BA |
| Nome parlato / screen reader | Greek Small Letter Kappa |
| UTF-8 | CE BA |
| UTF-16 | 03BA |
| UTF-32 | 000003BA |
1\documentclass{article}2\usepackage{pifont}3\kappa4\end{document}Puoi digitare il simbolo greek small letter kappa sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 954 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter kappa", or use Unicode Hex Input with 03BA.
Ctrl + Shift + U, type 03ba, 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.kappa::before { content: "\03BA"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>κ</span>La rappresentazione del simbolo Greek Small Letter Kappa nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u03BA' or String.fromCodePoint(954) |
| Python | '\N{GREEK SMALL LETTER KAPPA}' or chr(954) |
| Rust | '\u{03BA}' |
| C / C++ | UTF-8 source or wchar_t with U+03BA |
| Go | string(rune(0x03BA)) |
| Ruby | "\u{03BA}" |