Arabic Thousands Separator

٬

Shortcodes

Copy useful codes for arabic thousands separator symbol ٬ to use in websites, apps, blogs, and docs.

Unicode
U+066C
HTML Code
٬
HEX Code
٬
CSS Code
\066C
JS/JSON
\u066C
Unix/C/PHP/JAVA
0x66C
URL-encode
%D9%AC

Customize Arabic Thousands Separator

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

٬
  

How to use Arabic Thousands Separator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>٬</span>
HTML Code:
<span>&#1644;</span>
HEX Code:
<span>&#x066C;</span>

Add with CSS

.arabic-thousands-separator::before {
  content: '\\066C';
}

Set it in JavaScript

document.querySelector('.arabic-thousands-separator').textContent = '٬';
copied