| Nombre del símbolo | Triple Prime |
| Versión Unicode | 1.1 |
| Unicode | U+2034 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \2034 |
| Código hexadecimal | 0x2034 |
| Código HTML | ‴ |
| LaTeX | ''' |
| Símbolo | ‴ |
| Codificación URL (porcentaje UTF-8) | %E2%80%B4 |
| Nombre oral / lector de pantalla | Triple Prime |
| UTF-8 | E2 80 B4 |
| UTF-16 | 2034 |
| UTF-32 | 00002034 |
1\documentclass{article}2\usepackage{pifont}3'''4\end{document}Puedes escribir el símbolo triple prime en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8244 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "triple prime", or use Unicode Hex Input.
Ctrl + Shift + U, type 2034, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.triple-prime::before { content: "\2034"; }1<span>‴</span>La representación del símbolo Triple Prime en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2034' or String.fromCodePoint(0x2034) |
| Python | '\N{TRIPLE PRIME}' or chr(8244) |
| Rust | '\u{2034}' |
| C / C++ | UTF-8 source or wchar_t with U+2034 |
| Go | string(rune(0x2034)) |
| Ruby | "\u2034" |