| Nome del simbolo | Swung Dash |
| Versione Unicode | 4.0 |
| Unicode | U+2053 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2053 |
| Codice esadecimale | 0x2053 |
| Codice HTML | ⁓ |
| LaTeX | \text{SWUNGDASH} |
| Simbolo | ⁓ |
| Codifica URL (percentuale UTF-8) | %E2%81%93 |
| Nome parlato / screen reader | Swung Dash |
| UTF-8 | E2 81 93 |
| UTF-16 | 2053 |
| UTF-32 | 00002053 |
1\documentclass{article}2\usepackage{pifont}3\text{SWUNGDASH}4\end{document}Puoi digitare il simbolo swung dash sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8275 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "swung dash", or use Unicode Hex Input with 2053.
Ctrl + Shift + U, type 2053, 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 geometric symbol support.
1span.swung-dash::before { content: "\2053"; }1<span>⁓</span>La rappresentazione del simbolo Swung Dash nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2053' or String.fromCodePoint(8275) |
| Python | '\N{SWUNG DASH}' or chr(8275) |
| Rust | '\u{2053}' |
| C / C++ | UTF-8 source or wchar_t with U+2053 |
| Go | string(rune(0x2053)) |
| Ruby | "\u{2053}" |