| Symbolname | Cent Sign |
| Unicode-Version | 1.1 |
| Unicode | U+00A2 |
| Unicode-Block | |
| Allgemeine Kategorie | Currency Symbol (Sc) |
| CSS-Code | \00A2 |
| Hexadezimalcode | 0x00A2 |
| HTML-Code | ¢ |
| LaTeX | \cent |
| Symbol | ¢ |
| URL-Kodierung (UTF-8-Prozent) | %C2%A2 |
| Ansagename (Screenreader) | Cent Sign |
| UTF-8 | C2 A2 |
| UTF-16 | 00A2 |
| UTF-32 | 000000A2 |
1\documentclass{article}2\usepackage{pifont}3\cent4\end{document}Sie können das Symbol cent sign auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Cent Sign in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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" |