| Nome del simbolo | Kelvin Sign |
| Versione Unicode | 1.1 |
| Unicode | U+212A |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \212A |
| Codice esadecimale | 0x212A |
| Codice HTML | K |
| LaTeX | \mathrm{K} |
| Simbolo | K |
| Codifica URL (percentuale UTF-8) | %E2%84%AA |
| Nome parlato / screen reader | Kelvin Sign |
| UTF-8 | E2 84 AA |
| UTF-16 | 212A |
| UTF-32 | 0000212A |
1\documentclass{article}2\usepackage{pifont}3\mathrm{K}4\end{document}Puoi digitare il simbolo kelvin sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8490 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "kelvin sign", or use Unicode Hex Input with 212A.
Ctrl + Shift + U, type 212a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.kelvin-sign::before { content: "\212A"; }1<span>K</span>La rappresentazione del simbolo Kelvin Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u212A' or String.fromCodePoint(0x212A) |
| Python | '\N{KELVIN SIGN}' or chr(8490) |
| Rust | '\u{212A}' |
| C / C++ | UTF-8 source or wchar_t with U+212A |
| Go | string(rune(0x212A)) |
| Ruby | "\u212A" |