| Symbol Name | Cent Sign |
| Unicode Version | 1.1 |
| Unicode | U+00A2 |
| Unicode block | |
| General category | Currency Symbol (Sc) |
| CSS Code | \00A2 |
| Hex Code | 0x00A2 |
| HTML Code | ¢ |
| LaTeX | \cent |
| Symbol | ¢ |
| URL encode (UTF-8 percent) | %C2%A2 |
| Spoken / screen reader name | Cent Sign |
| UTF-8 | C2 A2 |
| UTF-16 | 00A2 |
| UTF-32 | 000000A2 |
1\documentclass{article}2\usepackage{pifont}3\cent4\end{document}You can type the cent sign symbol on most modern devices with the help of following methods:
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>Cent Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |