Unicode Finder

"ئ" U+0626(ARABIC LETTER YEH WITH HAMZA ABOVE)

ئ
U+0626
שם בלוק
Arabic
שם
ARABIC LETTER YEH WITH HAMZA ABOVE

Programming

C
\u0626
JavaScript
\u0626
Java
\u0626
Json
\u0626
Python
\u0626
Perl
\x{0626}
PHP
\x{0626}
Ruby
\u{0626}
Rust
\u{626}
Go
\u0626

Web

CSS
\000626
HtmlDecimal
ئ
HtmlHexadecimal
ئ
Url
%D8%A6

Code

MD5
93012fefc305ee2dd4038594621467c4
Sha1
46e5a9a911202a8b9740ad337dd732cf13bd0f47
Base64
2KY=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0626';
console.log(char);  // Output: ئ

Java:

char c = '\u0626';
System.out.println(c);  // Output: ئ

JSON:

{"text": "\u0626"}  // Value: ئ

Python:

char = '\u0626'
print(char)  # Output: ئ

Perl:

my $char = "\x{0626}";
print $char;  # Output: ئ

PHP:

$char = "\x{0626}";
echo $char;  // Output: ئ

Ruby:

char = "\u{0626}"
puts char  # Output: ئ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000626";  /* Display: ئ */
}

HTML Decimal:

<p>HTML decimal: &#1574;</p>  <!-- Display: ئ -->

HTML Hexadecimal:

<p>HTML hex: &#x0626;</p>  <!-- Display: ئ -->

URL Encoding:

// ئ URL encoding
https://unicodefinder.com/search.php?query=%D8%A6

Encodings

MD5:

93012fefc305ee2dd4038594621467c4

SHA1:

46e5a9a911202a8b9740ad337dd732cf13bd0f47

Base64:

2KY=