| Nome del simbolo | Clear Screen Symbol |
| Versione Unicode | 3.0 |
| Unicode | U+239A |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \239A |
| Codice esadecimale | 0x239A |
| Codice HTML | ⎚ |
| LaTeX | \text{CLEARSCREENSYMBOL} |
| Simbolo | ⎚ |
| Codifica URL (percentuale UTF-8) | %E2%8E%9A |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo clear screen sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Clear Screen nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |