| Symbol Name | Clear Screen Symbol |
| Unicode Version | 3.0 |
| Unicode | U+239A |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \239A |
| Hex Code | 0x239A |
| HTML Code | ⎚ |
| LaTeX | \text{CLEARSCREENSYMBOL} |
| Symbol | ⎚ |
| URL encode (UTF-8 percent) | %E2%8E%9A |
| Spoken / screen reader name | Clear Screen Symbol |
| UTF-8 | E2 8E 9A |
| UTF-16 | 239A |
| UTF-32 | 0000239A |
1\documentclass{article}2\usepackage{pifont}3\text{CLEARSCREENSYMBOL}4\end{document}You can type the clear screen symbol on most modern devices with the help of following methods:
Alt + 9114 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "clear screen symbol", or use Unicode Hex Input with 239A.
Ctrl + Shift + U, type 239a, 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 technical symbol support.
1span.clear-screen-symbol::before { content: "\239A"; }1<span>⎚</span>Clear Screen symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u239A' or String.fromCodePoint(9114) |
| Python | '\N{CLEAR SCREEN SYMBOL}' or chr(9114) |
| Rust | '\u{239A}' |
| C / C++ | UTF-8 source or wchar_t with U+239A |
| Go | string(rune(0x239A)) |
| Ruby | "\u{239A}" |