| Symbol Name | Rightwards Arrow With Tail |
| Unicode Version | 1.1 |
| Unicode | U+21A3 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \21A3 |
| Hex Code | 0x21A3 |
| HTML Code | ↣ |
| LaTeX | \text{RIGHTWARDSARROWWITHTAIL} |
| Symbol | ↣ |
| URL encode (UTF-8 percent) | %E2%86%A3 |
| Spoken / screen reader name | Rightwards Arrow With Tail |
| UTF-8 | E2 86 A3 |
| UTF-16 | 21A3 |
| UTF-32 | 000021A3 |
1\documentclass{article}2\usepackage{pifont}3\text{RIGHTWARDSARROWWITHTAIL}4\end{document}You can type the rightwards arrow with tail symbol on most modern devices with the help of following methods:
Alt + 8611 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "rightwards arrow with tail", or use Unicode Hex Input with 21A3.
Ctrl + Shift + U, type 21a3, 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-arrow-with-tail::before { content: "\21A3"; }1<span>↣</span>Rightwards Arrow With Tail symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u21A3' or String.fromCodePoint(8611) |
| Python | '\N{RIGHTWARDS ARROW WITH TAIL}' or chr(8611) |
| Rust | '\u{21A3}' |
| C / C++ | UTF-8 source or wchar_t with U+21A3 |
| Go | string(rune(0x21A3)) |
| Ruby | "\u{21A3}" |