Arabic Percent Sign

٪

Shortcodes

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

Unicode
U+066A
HTML Code
٪
HEX Code
٪
CSS Code
\066A
JS/JSON
\u066A
Unix/C/PHP/JAVA
0x66A
URL-encode
%D9%AA

Customize Arabic Percent Sign

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

٪
  

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

Insert in HTML

1. Direct symbol:
<span>٪</span>
HTML Code:
<span>&#1642;</span>
HEX Code:
<span>&#x066A;</span>

Add with CSS

.arabic-percent-sign::before {
  content: '\\066A';
}

Set it in JavaScript

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