| Nome del simbolo | Double Oblique Hyphen |
| Versione Unicode | 4.1 |
| Unicode | U+2E17 |
| Blocco Unicode | |
| Categoria generale | Dash Punctuation (Pd) |
| Codice CSS | \2E17 |
| Codice esadecimale | 0x2E17 |
| Codice HTML | ⸗ |
| LaTeX | \text{DOUBLEOBLIQUEHYPHEN} |
| Simbolo | ⸗ |
| Codifica URL (percentuale UTF-8) | %E2%B8%97 |
| Nome parlato / screen reader | Double Oblique Hyphen |
| UTF-8 | E2 B8 97 |
| UTF-16 | 2E17 |
| UTF-32 | 00002E17 |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLEOBLIQUEHYPHEN}4\end{document}Puoi digitare il simbolo double oblique hyphen sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 11799 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "double oblique hyphen", or use Unicode Hex Input with 2E17.
Ctrl + Shift + U, type 2e17, 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.double-oblique-hyphen::before { content: "\2E17"; }1<span>⸗</span>La rappresentazione del simbolo Double Oblique Hyphen nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2E17' or String.fromCodePoint(11799) |
| Python | '\N{DOUBLE OBLIQUE HYPHEN}' or chr(11799) |
| Rust | '\u{2E17}' |
| C / C++ | UTF-8 source or wchar_t with U+2E17 |
| Go | string(rune(0x2E17)) |
| Ruby | "\u{2E17}" |