| Symbol Name | Wave Dash |
| Unicode Version | 1.1 |
| Unicode | U+301C |
| Unicode block | |
| General category | Dash Punctuation (Pd) |
| CSS Code | \301C |
| Hex Code | 0x301C |
| HTML Code | 〜 |
| LaTeX | \text{WAVEDASH} |
| Symbol | 〜 |
| URL encode (UTF-8 percent) | %E3%80%9C |
| Spoken / screen reader name | 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}You can type the wave dash symbol on most modern devices with the help of following methods:
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>Wave Dash symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |