| Symboolnaam | Kelvin Sign |
| Unicode-versie | 1.1 |
| Unicode | U+212A |
| Unicode-blok | |
| Algemene categorie | Uppercase Letter (Lu) |
| CSS-code | \212A |
| Hexadecimale code | 0x212A |
| HTML-code | K |
| LaTeX | \mathrm{K} |
| Symbool | K |
| URL-codering (UTF-8 procent) | %E2%84%AA |
| Uitgesproken naam / schermlezer | 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}Je kunt het kelvin sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Kelvin Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |