| Nombre del símbolo | Wave Dash |
| Versión Unicode | 1.1 |
| Unicode | U+301C |
| Bloque Unicode | |
| Categoría general | Dash Punctuation (Pd) |
| Código CSS | \301C |
| Código hexadecimal | 0x301C |
| Código HTML | 〜 |
| LaTeX | \text{WAVEDASH} |
| Símbolo | 〜 |
| Codificación URL (porcentaje UTF-8) | %E3%80%9C |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo wave dash en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Wave Dash en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |