| Nombre del símbolo | Swung Dash |
| Versión Unicode | 4.0 |
| Unicode | U+2053 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \2053 |
| Código hexadecimal | 0x2053 |
| Código HTML | ⁓ |
| LaTeX | \text{SWUNGDASH} |
| Símbolo | ⁓ |
| Codificación URL (porcentaje UTF-8) | %E2%81%93 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo swung dash en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Swung Dash en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |