Cent Sign

¢

Shortcodes

Copy useful codes for cent sign ¢ to use in websites, apps, blogs, and docs.

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

Customize Cent Sign

Customize ¢, download it as SVG or PNG, or copy the generated HTML snippet.

¢
  

How to use Cent Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>¢</span>
HTML Code:
<span>&#162;</span>
HTML Entity:
<span>&cent;</span>
HEX Code:
<span>&#x00A2;</span>

Add with CSS

.cent-sign::before {
  content: '\\00A2';
}

Set it in JavaScript

document.querySelector('.cent-sign').textContent = '¢';
copied