| Nom du symbole | Cent Sign |
| Version Unicode | 1.1 |
| Unicode | U+00A2 |
| Bloc Unicode | |
| Catégorie générale | Currency Symbol (Sc) |
| Code CSS | \00A2 |
| Code hexadécimal | 0x00A2 |
| Code HTML | ¢ |
| LaTeX | \cent |
| Symbole | ¢ |
| Encodage URL (pourcent UTF-8) | %C2%A2 |
| Nom oral / lecteur d’écran | Cent Sign |
| UTF-8 | C2 A2 |
| UTF-16 | 00A2 |
| UTF-32 | 000000A2 |
1\documentclass{article}2\usepackage{pifont}3\cent4\end{document}Vous pouvez saisir le symbole cent sign sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 0162 on the numeric keypad, or insert via Character Map.
Option + 4 on most layouts.
Ctrl + Shift + U, type 00a2, then Enter (layout-dependent).
Long-press the $ key, or use the symbol picker.
Long-press the $ key on many keyboards, or paste from this page.
1span.cent::before { content: "\00A2"; }1<span>¢</span>La représentation du symbole Cent Sign dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u00A2' or String.fromCodePoint(0x00A2) |
| Python | '\N{CENT SIGN}' or chr(162) |
| Rust | '\u{00A2}' |
| C / C++ | UTF-8 source or wchar_t with U+00A2 |
| Go | string(rune(0x00A2)) |
| Ruby | "\u00A2" |