Cent Sign vs Pound Sign
VS
Property Comparison
| Property | ¢ 00A2 | £ 00A3 |
|---|---|---|
| Name | Cent Sign | Pound Sign |
| Category | Currency Signs | Currency Signs |
| Block | Latin-1 Supplement | Latin-1 Supplement |
| Script | Zyyy | Zyyy |
| General Category | Currency Symbol (Sc) | Currency Symbol (Sc) |
| Bidirectional | ET | ET |
Encoding Comparison
| Format | 00A2 | 00A3 |
|---|---|---|
| Unicode | U+00A2 | U+00A3 |
| HTML Decimal | ¢ | £ |
| HTML Hex | ¢ | £ |
| CSS | \00A2 | \00A3 |
| JavaScript | \u{A2} | \u{A3} |
| Python | \u00a2 | \u00a3 |
| UTF-8 | c2 a2 | c2 a3 |
How to Distinguish
Both Cent Sign and Pound Sign belong to the Currency Signs category and the Latin-1 Supplement block. Compare their codepoints and visual rendering to distinguish them.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.