| Symbolname | Rightwards Triple Arrow |
| Unicode-Version | 1.1 |
| Unicode | U+21DB |
| Unicode-Block | |
| Allgemeine Kategorie | Other Symbol (So) |
| CSS-Code | \21DB |
| Hexadezimalcode | 0x21DB |
| HTML-Code | ⇛ |
| LaTeX | \text{RIGHTWARDSTRIPLEARROW} |
| Symbol | ⇛ |
| URL-Kodierung (UTF-8-Prozent) | %E2%87%9B |
| Ansagename (Screenreader) | Rightwards Triple Arrow |
| UTF-8 | E2 87 9B |
| UTF-16 | 21DB |
| UTF-32 | 000021DB |
1\documentclass{article}2\usepackage{pifont}3\text{RIGHTWARDSTRIPLEARROW}4\end{document}Sie können das Symbol rightwards triple arrow auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8667 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "rightwards triple arrow", or use Unicode Hex Input with 21DB.
Ctrl + Shift + U, type 21db, 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-triple-arrow::before { content: "\21DB"; }1<span>⇛</span>Die Darstellung des Symbols Rightwards Triple Arrow in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u21DB' or String.fromCodePoint(8667) |
| Python | '\N{RIGHTWARDS TRIPLE ARROW}' or chr(8667) |
| Rust | '\u{21DB}' |
| C / C++ | UTF-8 source or wchar_t with U+21DB |
| Go | string(rune(0x21DB)) |
| Ruby | "\u{21DB}" |