| 記号名 | Planck Constant |
| Unicodeバージョン | 1.1 |
| Unicode | U+210E |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \210E |
| 16進コード | 0x210E |
| HTMLコード | ℎ |
| LaTeX | \mathrm{ℎ} |
| 記号 | ℎ |
| URLエンコード(UTF-8パーセント) | %E2%84%8E |
| 読み上げ名 / スクリーンリーダー | Planck Constant |
| UTF-8 | E2 84 8E |
| UTF-16 | 210E |
| UTF-32 | 0000210E |
1\documentclass{article}2\usepackage{pifont}3\mathrm{ℎ}4\end{document}以下の方法でほとんどの最新デバイスでplanck constant記号を入力できます:
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>各プログラミング言語におけるPlanck Constant記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |