| Nom du symbole | Comma |
| Version Unicode | 1.1 |
| Unicode | U+002C |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \002C |
| Code hexadécimal | 0x002C |
| Code HTML | , |
| LaTeX | , |
| Symbole | , |
| Encodage URL (pourcent UTF-8) | %2C |
| Nom oral / lecteur d’écran | Comma |
| UTF-8 | 2C |
| UTF-16 | 002C |
| UTF-32 | 0000002C |
1\documentclass{article}2\usepackage{pifont}3,4\end{document}Vous pouvez saisir le symbole comma sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Comma dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |