Unicode Finder

"ٱ" U+0671(ARABIC LETTER ALEF WASLA)

ٱ
U+0671
بلاک کا نام
Arabic
نام
ARABIC LETTER ALEF WASLA

Programming

C
\u0671
JavaScript
\u0671
Java
\u0671
Json
\u0671
Python
\u0671
Perl
\x{0671}
PHP
\x{0671}
Ruby
\u{0671}
Rust
\u{671}
Go
\u0671

Web

CSS
\000671
HtmlDecimal
ٱ
HtmlHexadecimal
ٱ
Url
%D9%B1

Code

MD5
4980f686c371ae44198a553115e71eab
Sha1
0b122b3a295f97fadc244432d40bc5900cb2ff1b
Base64
2bE=

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0671';
console.log(char);  // Output: ٱ

Java:

char c = '\u0671';
System.out.println(c);  // Output: ٱ

JSON:

{"text": "\u0671"}  // Value: ٱ

Python:

char = '\u0671'
print(char)  # Output: ٱ

Perl:

my $char = "\x{0671}";
print $char;  # Output: ٱ

PHP:

$char = "\x{0671}";
echo $char;  // Output: ٱ

Ruby:

char = "\u{0671}"
puts char  # Output: ٱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000671";  /* Display: ٱ */
}

HTML Decimal:

<p>HTML decimal: &#1649;</p>  <!-- Display: ٱ -->

HTML Hexadecimal:

<p>HTML hex: &#x0671;</p>  <!-- Display: ٱ -->

URL Encoding:

// ٱ URL encoding
https://unicodefinder.com/search.php?query=%D9%B1

Encodings

MD5:

4980f686c371ae44198a553115e71eab

SHA1:

0b122b3a295f97fadc244432d40bc5900cb2ff1b

Base64:

2bE=