Unicode Finder

"ٲ" U+0672(ARABIC LETTER ALEF WITH WAVY HAMZA ABOVE)

ٲ
U+0672
اسم الكتلة
Arabic
الاسم
ARABIC LETTER ALEF WITH WAVY HAMZA ABOVE

Programming

C
\u0672
JavaScript
\u0672
Java
\u0672
Json
\u0672
Python
\u0672
Perl
\x{0672}
PHP
\x{0672}
Ruby
\u{0672}
Rust
\u{672}
Go
\u0672

Web

CSS
\000672
HtmlDecimal
ٲ
HtmlHexadecimal
ٲ
Url
%D9%B2

Code

MD5
ff67932e78be9f6f558cc4802e7606d4
Sha1
feb6ffd486e8d087ca233ee7f367d0ce781c4c0a
Base64
2bI=

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u0672';
console.log(char);  // Output: ٲ

Java:

char c = '\u0672';
System.out.println(c);  // Output: ٲ

JSON:

{"text": "\u0672"}  // Value: ٲ

Python:

char = '\u0672'
print(char)  # Output: ٲ

Perl:

my $char = "\x{0672}";
print $char;  # Output: ٲ

PHP:

$char = "\x{0672}";
echo $char;  // Output: ٲ

Ruby:

char = "\u{0672}"
puts char  # Output: ٲ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000672";  /* Display: ٲ */
}

HTML Decimal:

<p>HTML decimal: &#1650;</p>  <!-- Display: ٲ -->

HTML Hexadecimal:

<p>HTML hex: &#x0672;</p>  <!-- Display: ٲ -->

URL Encoding:

// ٲ URL encoding
https://unicodefinder.com/search.php?query=%D9%B2

Encodings

MD5:

ff67932e78be9f6f558cc4802e7606d4

SHA1:

feb6ffd486e8d087ca233ee7f367d0ce781c4c0a

Base64:

2bI=