| Nom du symbole | Rightwards White Arrow |
| Version Unicode | 1.1 |
| Unicode | U+21E8 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \21E8 |
| Code hexadécimal | 0x21E8 |
| Code HTML | ⇨ |
| LaTeX | \text{RIGHTWARDSWHITEARROW} |
| Symbole | ⇨ |
| Encodage URL (pourcent UTF-8) | %E2%87%A8 |
| Nom oral / lecteur d’écran | Rightwards White Arrow |
| UTF-8 | E2 87 A8 |
| UTF-16 | 21E8 |
| UTF-32 | 000021E8 |
1\documentclass{article}2\usepackage{pifont}3\text{RIGHTWARDSWHITEARROW}4\end{document}Vous pouvez saisir le symbole rightwards white arrow sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8680 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "rightwards white arrow", or use Unicode Hex Input with 21E8.
Ctrl + Shift + U, type 21e8, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with arrow symbol support.
1span.rightwards-white-arrow::before { content: "\21E8"; }1<span>⇨</span>La représentation du symbole Rightwards White Arrow dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u21E8' or String.fromCodePoint(8680) |
| Python | '\N{RIGHTWARDS WHITE ARROW}' or chr(8680) |
| Rust | '\u{21E8}' |
| C / C++ | UTF-8 source or wchar_t with U+21E8 |
| Go | string(rune(0x21E8)) |
| Ruby | "\u{21E8}" |