Unicode Finder

"ځ" U+0681(ARABIC LETTER HAH WITH HAMZA ABOVE)

ځ
U+0681
بلاک کا نام
Arabic
نام
ARABIC LETTER HAH WITH HAMZA ABOVE

Programming

C
\u0681
JavaScript
\u0681
Java
\u0681
Json
\u0681
Python
\u0681
Perl
\x{0681}
PHP
\x{0681}
Ruby
\u{0681}
Rust
\u{681}
Go
\u0681

Web

CSS
\000681
HtmlDecimal
ځ
HtmlHexadecimal
ځ
Url
%DA%81

Code

MD5
fc21f2c05769e69f596f4c052bce945b
Sha1
10dd6ca71f7b70956b90f700ce36bd8e9e29ea6b
Base64
2oE=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0681';
console.log(char);  // Output: ځ

Java:

char c = '\u0681';
System.out.println(c);  // Output: ځ

JSON:

{"text": "\u0681"}  // Value: ځ

Python:

char = '\u0681'
print(char)  # Output: ځ

Perl:

my $char = "\x{0681}";
print $char;  # Output: ځ

PHP:

$char = "\x{0681}";
echo $char;  // Output: ځ

Ruby:

char = "\u{0681}"
puts char  # Output: ځ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000681";  /* Display: ځ */
}

HTML Decimal:

<p>HTML decimal: &#1665;</p>  <!-- Display: ځ -->

HTML Hexadecimal:

<p>HTML hex: &#x0681;</p>  <!-- Display: ځ -->

URL Encoding:

// ځ URL encoding
https://unicodefinder.com/search.php?query=%DA%81

Encodings

MD5:

fc21f2c05769e69f596f4c052bce945b

SHA1:

10dd6ca71f7b70956b90f700ce36bd8e9e29ea6b

Base64:

2oE=