| Nombre del símbolo | Double Oblique Hyphen |
| Versión Unicode | 4.1 |
| Unicode | U+2E17 |
| Bloque Unicode | |
| Categoría general | Dash Punctuation (Pd) |
| Código CSS | \2E17 |
| Código hexadecimal | 0x2E17 |
| Código HTML | ⸗ |
| LaTeX | \text{DOUBLEOBLIQUEHYPHEN} |
| Símbolo | ⸗ |
| Codificación URL (porcentaje UTF-8) | %E2%B8%97 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo double oblique hyphen en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Double Oblique Hyphen en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |