Arabic Letter Teh

ت

Shortcodes

Copy useful codes for arabic letter teh symbol ت to use in websites, apps, blogs, and docs.

Unicode
U+062A
HTML Code
ت
HEX Code
ت
CSS Code
\062A
JS/JSON
\u062A
Unix/C/PHP/JAVA
0x62A
URL-encode
%D8%AA

Customize Arabic Letter Teh

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

ت
  

How to use Arabic Letter Teh Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ت</span>
HTML Code:
<span>&#1578;</span>
HEX Code:
<span>&#x062A;</span>

Add with CSS

.arabic-letter-teh::before {
  content: '\\062A';
}

Set it in JavaScript

document.querySelector('.arabic-letter-teh').textContent = 'ت';
copied