| Nom du symbole | Clear Screen Symbol |
| Version Unicode | 3.0 |
| Unicode | U+239A |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \239A |
| Code hexadécimal | 0x239A |
| Code HTML | ⎚ |
| LaTeX | \text{CLEARSCREENSYMBOL} |
| Symbole | ⎚ |
| Encodage URL (pourcent UTF-8) | %E2%8E%9A |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole clear screen sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Clear Screen dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |