| 記号名 | Planck Constant Over Two Pi |
| Unicodeバージョン | 1.1 |
| Unicode | U+210F |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \210F |
| 16進コード | 0x210F |
| HTMLコード | ℏ |
| LaTeX | \mathrm{\hbar} |
| 記号 | ℏ |
| URLエンコード(UTF-8パーセント) | %E2%84%8F |
| 読み上げ名 / スクリーンリーダー | Planck Constant Over Two Pi |
| UTF-8 | E2 84 8F |
| UTF-16 | 210F |
| UTF-32 | 0000210F |
1\documentclass{article}2\usepackage{pifont}3\mathrm{\hbar}4\end{document}以下の方法でほとんどの最新デバイスでplanck constant over two pi記号を入力できます:
Alt + 8463 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "planck constant over two pi", or use Unicode Hex Input with 210F.
Ctrl + Shift + U, type 210f, 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-over-two-pi::before { content: "\210F"; }1<span>ℏ</span>各プログラミング言語におけるPlanck Constant Over Two Pi記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u210F' or String.fromCodePoint(0x210F) |
| Python | '\N{PLANCK CONSTANT OVER TWO PI}' or chr(8463) |
| Rust | '\u{210F}' |
| C / C++ | UTF-8 source or wchar_t with U+210F |
| Go | string(rune(0x210F)) |
| Ruby | "\u210F" |