Ampersand vs Cedilla
VS
Property Comparison
| Property | & 0026 | ¸ 00B8 |
|---|---|---|
| Name | Ampersand | Cedilla |
| Category | Latin Extended | Latin Extended |
| Block | Basic Latin | Latin-1 Supplement |
| Script | Zyyy | Zyyy |
| General Category | Other Punctuation (Po) | Modifier Symbol (Sk) |
| Bidirectional | ON | ON |
Encoding Comparison
| Format | 0026 | 00B8 |
|---|---|---|
| Unicode | U+0026 | U+00B8 |
| HTML Decimal | & | ¸ |
| HTML Hex | & | ¸ |
| CSS | \0026 | \00B8 |
| JavaScript | \u{26} | \u{B8} |
| Python | \u0026 | \u00b8 |
| UTF-8 | 26 | c2 b8 |
How to Distinguish
Both Ampersand and Cedilla are in the Latin Extended category but reside in different Unicode blocks. Check the codepoint to tell them apart.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.