| Symboolnaam | Swung Dash |
| Unicode-versie | 4.0 |
| Unicode | U+2053 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \2053 |
| Hexadecimale code | 0x2053 |
| HTML-code | ⁓ |
| LaTeX | \text{SWUNGDASH} |
| Symbool | ⁓ |
| URL-codering (UTF-8 procent) | %E2%81%93 |
| Uitgesproken naam / schermlezer | 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}Je kunt het swung dash-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Swung Dash-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |