| Nombre del símbolo | Power On Symbol |
| Versión Unicode | 9.0 |
| Unicode | U+23FD |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \23FD |
| Código hexadecimal | 0x23FD |
| Código HTML | ⏽ |
| LaTeX | \text{POWERONSYMBOL} |
| Símbolo | ⏽ |
| Codificación URL (porcentaje UTF-8) | %E2%8F%BD |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo power on en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Power On en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |