Unicode Finder

"څ" U+0685(ARABIC LETTER HAH WITH THREE DOTS ABOVE)

څ
U+0685
بلاک کا نام
Arabic
نام
ARABIC LETTER HAH WITH THREE DOTS ABOVE

Programming

C
\u0685
JavaScript
\u0685
Java
\u0685
Json
\u0685
Python
\u0685
Perl
\x{0685}
PHP
\x{0685}
Ruby
\u{0685}
Rust
\u{685}
Go
\u0685

Web

CSS
\000685
HtmlDecimal
څ
HtmlHexadecimal
څ
Url
%DA%85

Code

MD5
cacddf3743af5f403016f2668d6ef22d
Sha1
390c6c40c95a98e18270377e4e88a3dea99d2113
Base64
2oU=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0685';
console.log(char);  // Output: څ

Java:

char c = '\u0685';
System.out.println(c);  // Output: څ

JSON:

{"text": "\u0685"}  // Value: څ

Python:

char = '\u0685'
print(char)  # Output: څ

Perl:

my $char = "\x{0685}";
print $char;  # Output: څ

PHP:

$char = "\x{0685}";
echo $char;  // Output: څ

Ruby:

char = "\u{0685}"
puts char  # Output: څ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000685";  /* Display: څ */
}

HTML Decimal:

<p>HTML decimal: &#1669;</p>  <!-- Display: څ -->

HTML Hexadecimal:

<p>HTML hex: &#x0685;</p>  <!-- Display: څ -->

URL Encoding:

// څ URL encoding
https://unicodefinder.com/search.php?query=%DA%85

Encodings

MD5:

cacddf3743af5f403016f2668d6ef22d

SHA1:

390c6c40c95a98e18270377e4e88a3dea99d2113

Base64:

2oU=