Arabic Date Separator

؍

Shortcodes

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

Unicode
U+060D
HTML Code
؍
HEX Code
؍
CSS Code
\060D
JS/JSON
\u060D
Unix/C/PHP/JAVA
0x60D
URL-encode
%D8%8D

Customize Arabic Date Separator

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

؍
  

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

Insert in HTML

1. Direct symbol:
<span>؍</span>
HTML Code:
<span>&#1549;</span>
HEX Code:
<span>&#x060D;</span>

Add with CSS

.arabic-date-separator::before {
  content: '\\060D';
}

Set it in JavaScript

document.querySelector('.arabic-date-separator').textContent = '؍';
copied