cent-sign (¢)

Codes for the "cent-sign" Symbol

Click on a green box to copy its contents.
Formal Name:
cent-sign
The symbol:
¢
The Alt Code:
Alt 162
The HTML Code:
¢
HTML Entity:
¢
CSS Code:
\00A2
Hex Code:
¢
Unicode:
U+000A2
cent-sign

Test Your Knowledge of the Currency Symbols

Here is a quick quiz to test your knowledge of the currency symbols.
Getting ready...

View the Symbol in Different Sizes and Fonts

ABC ¢ 123
ABC ¢ 123
AttributeSettingChange
Font Size
Font Family
Arial
Color/Colour
#000000
 
 
 

Video Explaining How to Insert Special Symbols

This video explains 7 ways to insert a special symbol into an MS Office application (e.g., Word) or a website using HTML, CSS, or JavaScript:

How To Insert the ¢ Symbol

(Method 1) Copy and paste the symbol.

Click on the ¢ symbol from the table above. Press the "Copy" button, and then paste the symbol into your document.

(Method 2) Use the "Alt Code."

The Alt Code for ¢ is Alt 162. If you have a keyboard with a numeric pad, you can use this method. Simply hold down the Alt Key and type 162. When you lift the Alt Key, ¢ appears. ("Num Lock" must be on.)

(Method 3) Use the HTML Decimal Code (for webpages).

HTML TextOutput
¢¢

(Method 4) Use the HTML Entity Code (for webpages).

HTML TextOutput
¢¢

(Method 5) Use the CSS Code (for webpages).

CSS and HTML TextOutput
<style>
span:after {
content: "\00A2";}
</style>
<span>Symbol:</span>
Symbol: ¢

(Method 6) Use the HTML Hex Code (for webpages and HTML canvas).

HTML TextOutput
&#xA2;¢
On the assumption that you already have your canvas and the context set up, use the Hex code in the format 0xA2 to place the ¢ symbol on your canvas. For example:
JavaScript Text
const x = "0x"+"A2"
ctx.fillText(String.fromCodePoint(x), 5, 5);
Output

¢

(Method 7) Use the Unicode (for various, e.g. Microsoft Office, JavaScript, Perl).

The Unicode for ¢ is U+000A2. The important part is the hexadecimal number after the U+, which is used in various formats. For example, in Microsoft Office applications (e.g. Word, PowerPoint), do the following:
TypeOutput
000A2
[Hold down Alt]
[Press x]
¢
(Note that you can omit any leading zeros.)
In JavaScript, the syntax is \uXXXX. So, our example would be \u00A2. (Note that the format is 4 hexadecimal characters.)
JavaScript TextOutput
let str = "\u00A2"
document.write("My symbol: " + str)
My symbol: ¢

(Method 8) Use an Image (for various).

HTML TextOutput
<img src = "myImg.png"/>¢

Help Us Improve Cyber Definitions

  • Do you disagree with something on this page?
  • Did you spot a typo?
  • Do you know a slang term that we've missed?
Please tell us using this form.