| Nome del simbolo | Cent Sign |
| Versione Unicode | 1.1 |
| Unicode | U+00A2 |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \00A2 |
| Codice esadecimale | 0x00A2 |
| Codice HTML | ¢ |
| LaTeX | \cent |
| Simbolo | ¢ |
| Codifica URL (percentuale UTF-8) | %C2%A2 |
| Nome parlato / screen reader | Cent Sign |
| UTF-8 | C2 A2 |
| UTF-16 | 00A2 |
| UTF-32 | 000000A2 |
1\documentclass{article}2\usepackage{pifont}3\cent4\end{document}Puoi digitare il simbolo cent sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Cent Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |