| Nome del simbolo | Wave Dash |
| Versione Unicode | 1.1 |
| Unicode | U+301C |
| Blocco Unicode | |
| Categoria generale | Dash Punctuation (Pd) |
| Codice CSS | \301C |
| Codice esadecimale | 0x301C |
| Codice HTML | 〜 |
| LaTeX | \text{WAVEDASH} |
| Simbolo | 〜 |
| Codifica URL (percentuale UTF-8) | %E3%80%9C |
| Nome parlato / screen reader | Wave Dash |
| UTF-8 | E3 80 9C |
| UTF-16 | 301C |
| UTF-32 | 0000301C |
1\documentclass{article}2\usepackage{pifont}3\text{WAVEDASH}4\end{document}Puoi digitare il simbolo wave dash sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 12316 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "wave dash", or use Unicode Hex Input with 301C.
Ctrl + Shift + U, type 301c, 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.wave-dash::before { content: "\301C"; }1<span>〜</span>La rappresentazione del simbolo Wave Dash nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u301C' or String.fromCodePoint(12316) |
| Python | '\N{WAVE DASH}' or chr(12316) |
| Rust | '\u{301C}' |
| C / C++ | UTF-8 source or wchar_t with U+301C |
| Go | string(rune(0x301C)) |
| Ruby | "\u{301C}" |