| Nom du symbole | Power On-Off Symbol |
| Version Unicode | 9.0 |
| Unicode | U+23FC |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \23FC |
| Code hexadécimal | 0x23FC |
| Code HTML | ⏼ |
| LaTeX | \text{POWERON-OFFSYMBOL} |
| Symbole | ⏼ |
| Encodage URL (pourcent UTF-8) | %E2%8F%BC |
| Nom oral / lecteur d’écran | Power On-Off Symbol |
| UTF-8 | E2 8F BC |
| UTF-16 | 23FC |
| UTF-32 | 000023FC |
1\documentclass{article}2\usepackage{pifont}3\text{POWERON-OFFSYMBOL}4\end{document}Vous pouvez saisir le symbole power on-off sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9212 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "power on-off symbol", or use Unicode Hex Input with 23FC.
Ctrl + Shift + U, type 23fc, 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-on-off-symbol::before { content: "\23FC"; }1<span>⏼</span>La représentation du symbole Power On-Off dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u23FC' or String.fromCodePoint(9212) |
| Python | '\N{POWER ON-OFF SYMBOL}' or chr(9212) |
| Rust | '\u{23FC}' |
| C / C++ | UTF-8 source or wchar_t with U+23FC |
| Go | string(rune(0x23FC)) |
| Ruby | "\u{23FC}" |