| Nombre del símbolo | Ditto Mark |
| Versión Unicode | 1.1 |
| Unicode | U+3003 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \3003 |
| Código hexadecimal | 0x3003 |
| Código HTML | 〃 |
| LaTeX | \text{DITTOMARK} |
| Símbolo | 〃 |
| Codificación URL (porcentaje UTF-8) | %E3%80%83 |
| Nombre oral / lector de pantalla | Ditto Mark |
| UTF-8 | E3 80 83 |
| UTF-16 | 3003 |
| UTF-32 | 00003003 |
1\documentclass{article}2\usepackage{pifont}3\text{DITTOMARK}4\end{document}Puedes escribir el símbolo ditto mark en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 12291 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "ditto mark", or use Unicode Hex Input with 3003.
Ctrl + Shift + U, type 3003, 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 punctuation support.
1span.ditto-mark::before { content: "\3003"; }1<span>〃</span>La representación del símbolo Ditto Mark en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u3003' or String.fromCodePoint(12291) |
| Python | '\N{DITTO MARK}' or chr(12291) |
| Rust | '\u{3003}' |
| C / C++ | UTF-8 source or wchar_t with U+3003 |
| Go | string(rune(0x3003)) |
| Ruby | "\u{3003}" |