Cent Sign

¢

Shortcodes

Copy and paste codes for Cent Sign symbol ¢ to use in your websites, apps, blogs, and more.

Unicode
U+00A2
Alt Code
162
HTML Code
¢
HTML Entity
¢
HEX Code
¢
CSS Code
\0A2
JS/JSON
\u00A2
Unix/C/PHP/JAVA
0xA2
URL-encode
%C2%A2
copied

Customize Cent Sign Symbol

Customize ¢ symbol as you like and download Cent Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
¢

                        
                    

How to type Cent Sign symbol ¢ ?

Using Cent Sign Alt Code:

You can type the Cent Sign symbol ¢ using your keyboard by using the Alt Code for Cent Sign. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 162 using the Numpad.
  3. Release the Alt key.

This will make the ¢ appear on your screen.

How to add Cent Sign symbol in HTML, CSS, and JS?

Insert ¢ Cent Sign using HTML

1. Copy-paste Cent Sign directly:
<span>¢</span>
2. HTML Decimal Code:
<span>&#162;</span>
3. HTML Entity:
<span>&cent;</span>
4. Hexadecimal Code:
<span>&#x00A2;</span>
Preview: ¢

Add Cent Sign symbol with CSS

.cent-sign::before {
    content: '\\0A2';
}
Preview: Cent Sign

Cent Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.cent-sign').textContent = '¢';
2. Unicode Escape for ¢:
document.querySelector('.cent-sign').textContent = '\u00A2';
Preview: ¢