| Nom du symbole | Wave Dash |
| Version Unicode | 1.1 |
| Unicode | U+301C |
| Bloc Unicode | |
| Catégorie générale | Dash Punctuation (Pd) |
| Code CSS | \301C |
| Code hexadécimal | 0x301C |
| Code HTML | 〜 |
| LaTeX | \text{WAVEDASH} |
| Symbole | 〜 |
| Encodage URL (pourcent UTF-8) | %E3%80%9C |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole wave dash sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Wave Dash dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |