Arabic Semicolon

؛

Shortcodes

Copy useful codes for arabic semicolon symbol ؛ to use in websites, apps, blogs, and docs.

Unicode
U+061B
HTML Code
؛
HEX Code
؛
CSS Code
\061B
JS/JSON
\u061B
Unix/C/PHP/JAVA
0x61B
URL-encode
%D8%9B

Customize Arabic Semicolon

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

؛
  

How to use Arabic Semicolon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>؛</span>
HTML Code:
<span>&#1563;</span>
HEX Code:
<span>&#x061B;</span>

Add with CSS

.arabic-semicolon::before {
  content: '\\061B';
}

Set it in JavaScript

document.querySelector('.arabic-semicolon').textContent = '؛';
copied