| Nome del simbolo | Down Fish Tail |
| Versione Unicode | 3.2 |
| Unicode | U+297F |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \297F |
| Codice esadecimale | 0x297F |
| Codice HTML | ⥿ |
| LaTeX | \text{DOWNFISHTAIL} |
| Simbolo | ⥿ |
| Codifica URL (percentuale UTF-8) | %E2%A5%BF |
| Nome parlato / screen reader | Down Fish Tail |
| UTF-8 | E2 A5 BF |
| UTF-16 | 297F |
| UTF-32 | 0000297F |
1\documentclass{article}2\usepackage{pifont}3\text{DOWNFISHTAIL}4\end{document}Puoi digitare il simbolo down fish tail sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 10623 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "down fish tail", or use Unicode Hex Input with 297F.
Ctrl + Shift + U, type 297f, 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.down-fish-tail::before { content: "\297F"; }1<span>⥿</span>La rappresentazione del simbolo Down Fish Tail nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u297F' or String.fromCodePoint(10623) |
| Python | '\N{DOWN FISH TAIL}' or chr(10623) |
| Rust | '\u{297F}' |
| C / C++ | UTF-8 source or wchar_t with U+297F |
| Go | string(rune(0x297F)) |
| Ruby | "\u{297F}" |