Unicode Finder

"ؙ" U+0619(ARABIC SMALL DAMMA)

ؙ
U+0619
שם בלוק
Arabic
שם
ARABIC SMALL DAMMA

Programming

C
\u0619
JavaScript
\u0619
Java
\u0619
Json
\u0619
Python
\u0619
Perl
\x{0619}
PHP
\x{0619}
Ruby
\u{0619}
Rust
\u{619}
Go
\u0619

Web

CSS
\000619
HtmlDecimal
ؙ
HtmlHexadecimal
ؙ
Url
%D8%99

Code

MD5
2ed23c62d4f9c39f8b5280643cc7688a
Sha1
bd58abea544491b14702739738536a39587c304b
Base64
2Jk=

דוגמאות שימוש

Programming Languages

C:

char c = '\u0619';
printf("%c\n", c);  // Output: ؙ

JavaScript:

const char = '\u0619';
console.log(char);  // Output: ؙ

Java:

char c = '\u0619';
System.out.println(c);  // Output: ؙ

JSON:

{"text": "\u0619"}  // Value: ؙ

Python:

char = '\u0619'
print(char)  # Output: ؙ

Perl:

my $char = "\x{0619}";
print $char;  # Output: ؙ

PHP:

$char = "\x{0619}";
echo $char;  // Output: ؙ

Ruby:

char = "\u{0619}"
puts char  # Output: ؙ

Rust:

let c = '\u{619}';
println!("{}", c);  // Output: ؙ

Go:

char := '\u0619'
fmt.Printf("%c\n", char)  // Output: ؙ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000619";  /* Display: ؙ */
}

HTML Decimal:

<p>HTML decimal: &#1561;</p>  <!-- Display: ؙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0619;</p>  <!-- Display: ؙ -->

URL Encoding:

// ؙ URL encoding
https://unicodefinder.com/search.php?query=%D8%99

Encodings

MD5:

2ed23c62d4f9c39f8b5280643cc7688a

SHA1:

bd58abea544491b14702739738536a39587c304b

Base64:

2Jk=