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