| Nom du symbole | Next Page |
| Version Unicode | 3.0 |
| Unicode | U+2398 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2398 |
| Code hexadécimal | 0x2398 |
| Code HTML | ⎘ |
| LaTeX | \text{NEXTPAGE} |
| Symbole | ⎘ |
| Encodage URL (pourcent UTF-8) | %E2%8E%98 |
| Nom oral / lecteur d’écran | Next Page |
| UTF-8 | E2 8E 98 |
| UTF-16 | 2398 |
| UTF-32 | 00002398 |
1\documentclass{article}2\usepackage{pifont}3\text{NEXTPAGE}4\end{document}Vous pouvez saisir le symbole next page sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9112 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "next page", or use Unicode Hex Input with 2398.
Ctrl + Shift + U, type 2398, 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.next-page::before { content: "\2398"; }1<span>⎘</span>La représentation du symbole Next Page dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2398' or String.fromCodePoint(9112) |
| Python | '\N{NEXT PAGE}' or chr(9112) |
| Rust | '\u{2398}' |
| C / C++ | UTF-8 source or wchar_t with U+2398 |
| Go | string(rune(0x2398)) |
| Ruby | "\u{2398}" |