Percent Sign

%

Shortcodes

Copy useful codes for percent sign % to use in websites, apps, blogs, and docs.

Unicode
U+0025
Alt Code
37
HTML Code
%
HEX Code
%
CSS Code
\0025
JS/JSON
\u0025
Unix/C/PHP/JAVA
0x25
URL-encode
%25

Customize Percent Sign

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

%
  

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

Insert in HTML

1. Direct symbol:
<span>%</span>
HTML Code:
<span>&#37;</span>
HEX Code:
<span>&#x0025;</span>

Add with CSS

.percent-sign::before {
  content: '\\0025';
}

Set it in JavaScript

document.querySelector('.percent-sign').textContent = '%';
copied