| Nome del simbolo | Planck Constant |
| Versione Unicode | 1.1 |
| Unicode | U+210E |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \210E |
| Codice esadecimale | 0x210E |
| Codice HTML | ℎ |
| LaTeX | \mathrm{ℎ} |
| Simbolo | ℎ |
| Codifica URL (percentuale UTF-8) | %E2%84%8E |
| Nome parlato / screen reader | Planck Constant |
| UTF-8 | E2 84 8E |
| UTF-16 | 210E |
| UTF-32 | 0000210E |
1\documentclass{article}2\usepackage{pifont}3\mathrm{ℎ}4\end{document}Puoi digitare il simbolo planck constant sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8462 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "planck constant", or use Unicode Hex Input with 210E.
Ctrl + Shift + U, type 210e, 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.planck-constant::before { content: "\210E"; }1<span>ℎ</span>La rappresentazione del simbolo Planck Constant nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u210E' or String.fromCodePoint(0x210E) |
| Python | '\N{PLANCK CONSTANT}' or chr(8462) |
| Rust | '\u{210E}' |
| C / C++ | UTF-8 source or wchar_t with U+210E |
| Go | string(rune(0x210E)) |
| Ruby | "\u210E" |