| Nome del simbolo | Latin Small Letter K |
| Versione Unicode | 1.1 |
| Unicode | U+006B |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \006B |
| Codice esadecimale | 0x006B |
| Codice HTML | k |
| LaTeX | k |
| Simbolo | k |
| Codifica URL (percentuale UTF-8) | %6B |
| Nome parlato / screen reader | Latin Small Letter K |
| UTF-8 | 6B |
| UTF-16 | 006B |
| UTF-32 | 0000006B |
1\documentclass{article}2\usepackage{pifont}3k4\end{document}Puoi digitare il simbolo latin small letter k sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 107 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter k", or use Unicode Hex Input with 006B.
Ctrl + Shift + U, type 006b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.k::before { content: "\006B"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>k</span>La rappresentazione del simbolo Latin Small Letter K nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u006B' or String.fromCodePoint(107) |
| Python | '\N{LATIN SMALL LETTER K}' or chr(107) |
| Rust | '\u{006B}' |
| C / C++ | UTF-8 source or wchar_t with U+006B |
| Go | string(rune(0x006B)) |
| Ruby | "\u{006B}" |