| Nome del simbolo | Upwards Arrow |
| Versione Unicode | 1.1 |
| Unicode | U+2191 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2191 |
| Codice esadecimale | 0x2191 |
| Codice HTML | ↑ |
| LaTeX | \uparrow |
| Simbolo | ↑ |
| Codifica URL (percentuale UTF-8) | %E2%86%91 |
| Nome parlato / screen reader | Upwards Arrow |
| UTF-8 | E2 86 91 |
| UTF-16 | 2191 |
| UTF-32 | 00002191 |
1\documentclass{article}2\usepackage{pifont}3\uparrow 4\end{document}Puoi digitare il simbolo upwards arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8593 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "upwards arrow", or use Unicode Hex Input with 2191.
Ctrl + Shift + U, type 2191, 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.upwards-arrow::before { content: "\2191"; }1<span>↑</span>La rappresentazione del simbolo Upwards Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2191' or String.fromCodePoint(8593) |
| Python | '\N{UPWARDS ARROW}' or chr(8593) |
| Rust | '\u{2191}' |
| C / C++ | UTF-8 source or wchar_t with U+2191 |
| Go | string(rune(0x2191)) |
| Ruby | "\u{2191}" |