| Symbol Name | Power On Symbol |
| Unicode Version | 9.0 |
| Unicode | U+23FD |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \23FD |
| Hex Code | 0x23FD |
| HTML Code | ⏽ |
| LaTeX | \text{POWERONSYMBOL} |
| Symbol | ⏽ |
| URL encode (UTF-8 percent) | %E2%8F%BD |
| Spoken / screen reader name | 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}You can type the power on symbol on most modern devices with the help of following methods:
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>Power On symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |