| Nom du symbole | Planck Constant |
| Version Unicode | 1.1 |
| Unicode | U+210E |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \210E |
| Code hexadécimal | 0x210E |
| Code HTML | ℎ |
| LaTeX | \mathrm{ℎ} |
| Symbole | ℎ |
| Encodage URL (pourcent UTF-8) | %E2%84%8E |
| Nom oral / lecteur d’écran | Planck Constant |
| UTF-8 | E2 84 8E |
| UTF-16 | 210E |
| UTF-32 | 0000210E |
1\documentclass{article}2\usepackage{pifont}3\mathrm{ℎ}4\end{document}Vous pouvez saisir le symbole planck constant sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Planck Constant dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |