| Symbol Name | Upwards White Arrow |
| Unicode Version | 1.1 |
| Unicode | U+21E7 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \21E7 |
| Hex Code | 0x21E7 |
| HTML Code | ⇧ |
| LaTeX | \text{UPWARDSWHITEARROW} |
| Symbol | ⇧ |
| URL encode (UTF-8 percent) | %E2%87%A7 |
| Spoken / screen reader name | Upwards White Arrow |
| UTF-8 | E2 87 A7 |
| UTF-16 | 21E7 |
| UTF-32 | 000021E7 |
1\documentclass{article}2\usepackage{pifont}3\text{UPWARDSWHITEARROW}4\end{document}You can type the upwards white arrow symbol on most modern devices with the help of following methods:
Alt + 8679 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "upwards white arrow", or use Unicode Hex Input with 21E7.
Ctrl + Shift + U, type 21e7, 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-white-arrow::before { content: "\21E7"; }1<span>⇧</span>Upwards White Arrow symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u21E7' or String.fromCodePoint(8679) |
| Python | '\N{UPWARDS WHITE ARROW}' or chr(8679) |
| Rust | '\u{21E7}' |
| C / C++ | UTF-8 source or wchar_t with U+21E7 |
| Go | string(rune(0x21E7)) |
| Ruby | "\u{21E7}" |