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