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