Unicode Finder

"آ" U+0622(ARABIC LETTER ALEF WITH MADDA ABOVE)

آ
U+0622
שם בלוק
Arabic
שם
ARABIC LETTER ALEF WITH MADDA ABOVE

Programming

C
\u0622
JavaScript
\u0622
Java
\u0622
Json
\u0622
Python
\u0622
Perl
\x{0622}
PHP
\x{0622}
Ruby
\u{0622}
Rust
\u{622}
Go
\u0622

Web

CSS
\000622
HtmlDecimal
آ
HtmlHexadecimal
آ
Url
%D8%A2

Code

MD5
0dbce1e866dbde21dba24419b7cbc790
Sha1
f2f2633911d73e9fd151aecdf31daa5504b6176d
Base64
2KI=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0622';
console.log(char);  // Output: آ

Java:

char c = '\u0622';
System.out.println(c);  // Output: آ

JSON:

{"text": "\u0622"}  // Value: آ

Python:

char = '\u0622'
print(char)  # Output: آ

Perl:

my $char = "\x{0622}";
print $char;  # Output: آ

PHP:

$char = "\x{0622}";
echo $char;  // Output: آ

Ruby:

char = "\u{0622}"
puts char  # Output: آ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000622";  /* Display: آ */
}

HTML Decimal:

<p>HTML decimal: &#1570;</p>  <!-- Display: آ -->

HTML Hexadecimal:

<p>HTML hex: &#x0622;</p>  <!-- Display: آ -->

URL Encoding:

// آ URL encoding
https://unicodefinder.com/search.php?query=%D8%A2

Encodings

MD5:

0dbce1e866dbde21dba24419b7cbc790

SHA1:

f2f2633911d73e9fd151aecdf31daa5504b6176d

Base64:

2KI=