Arabic Decimal Separator

٫

Shortcodes

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

Unicode
U+066B
HTML Code
٫
HEX Code
٫
CSS Code
\066B
JS/JSON
\u066B
Unix/C/PHP/JAVA
0x66B
URL-encode
%D9%AB

Customize Arabic Decimal Separator

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

٫
  

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

Insert in HTML

1. Direct symbol:
<span>٫</span>
HTML Code:
<span>&#1643;</span>
HEX Code:
<span>&#x066B;</span>

Add with CSS

.arabic-decimal-separator::before {
  content: '\\066B';
}

Set it in JavaScript

document.querySelector('.arabic-decimal-separator').textContent = '٫';
copied