Arabic Five Pointed Star

٭

Shortcodes

Copy useful codes for arabic five pointed star symbol ٭ to use in websites, apps, blogs, and docs.

Unicode
U+066D
HTML Code
٭
HEX Code
٭
CSS Code
\066D
JS/JSON
\u066D
Unix/C/PHP/JAVA
0x66D
URL-encode
%D9%AD

Customize Arabic Five Pointed Star

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

٭
  

How to use Arabic Five Pointed Star Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>٭</span>
HTML Code:
<span>&#1645;</span>
HEX Code:
<span>&#x066D;</span>

Add with CSS

.arabic-five-pointed-star::before {
  content: '\\066D';
}

Set it in JavaScript

document.querySelector('.arabic-five-pointed-star').textContent = '٭';
copied