Arabic Full Stop

۔

Shortcodes

Copy useful codes for arabic full stop symbol ۔ to use in websites, apps, blogs, and docs.

Unicode
U+06D4
HTML Code
۔
HEX Code
۔
CSS Code
\06D4
JS/JSON
\u06D4
Unix/C/PHP/JAVA
0x6D4
URL-encode
%DB%94

Customize Arabic Full Stop

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

۔
  

How to use Arabic Full Stop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>۔</span>
HTML Code:
<span>&#1748;</span>
HEX Code:
<span>&#x06D4;</span>

Add with CSS

.arabic-full-stop::before {
  content: '\\06D4';
}

Set it in JavaScript

document.querySelector('.arabic-full-stop').textContent = '۔';
copied