Currency
¢

Cent Sign (¢)

Fractional currency symbol representing one one-hundredth of a dollar or peso.

One-Click Copyable Code Formats

HTML Named Entity
¢
HTML Decimal Code
¢
HTML Hex Code
¢
CSS content (\XXXX)
\00A2
JavaScript Unicode (\uXXXX)
\u00A2
URL Percent Encoded
%C2%A2

Real-World Implementation Snippets

HTML5 Document
<p>Example: &cent;</p>
CSS ::before / ::after
.badge::before { content: '\00A2 '; }
React JSX / TypeScript
<span>{"\u00A2"}</span>
Frequently Asked Questions

Cent Sign (¢) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&cent;". If using numeric codes, you can use the decimal code "&#162;" or hex code "&#xA2;".