| 記号名 | Power Symbol |
| Unicodeバージョン | 9.0 |
| Unicode | U+23FB |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \23FB |
| 16進コード | 0x23FB |
| HTMLコード | ⏻ |
| LaTeX | \text{POWERSYMBOL} |
| 記号 | ⏻ |
| URLエンコード(UTF-8パーセント) | %E2%8F%BB |
| 読み上げ名 / スクリーンリーダー | Power Symbol |
| UTF-8 | E2 8F BB |
| UTF-16 | 23FB |
| UTF-32 | 000023FB |
1\documentclass{article}2\usepackage{pifont}3\text{POWERSYMBOL}4\end{document}以下の方法でほとんどの最新デバイスでpower記号を入力できます:
Alt + 9211 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "power symbol", or use Unicode Hex Input with 23FB.
Ctrl + Shift + U, type 23fb, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with power and UI symbol support.
1span.power-symbol::before { content: "\23FB"; }1<span>⏻</span>各プログラミング言語におけるPower記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u23FB' or String.fromCodePoint(9211) |
| Python | '\N{POWER SYMBOL}' or chr(9211) |
| Rust | '\u{23FB}' |
| C / C++ | UTF-8 source or wchar_t with U+23FB |
| Go | string(rune(0x23FB)) |
| Ruby | "\u{23FB}" |