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