Unicode Finder

"ڏ" U+068F(ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARDS)

ڏ
U+068F
بلاک کا نام
Arabic
نام
ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARDS

Programming

C
\u068F
JavaScript
\u068F
Java
\u068F
Json
\u068F
Python
\u068F
Perl
\x{068F}
PHP
\x{068F}
Ruby
\u{068F}
Rust
\u{68F}
Go
\u068F

Web

CSS
\00068F
HtmlDecimal
ڏ
HtmlHexadecimal
ڏ
Url
%DA%8F

Code

MD5
a3cfd8259a6c0e55f74b47d0e877fc10
Sha1
ea9284c8def6f4ca5fca66bc1c46d77c513dc999
Base64
2o8=

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

Programming Languages

C:

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

JavaScript:

const char = '\u068F';
console.log(char);  // Output: ڏ

Java:

char c = '\u068F';
System.out.println(c);  // Output: ڏ

JSON:

{"text": "\u068F"}  // Value: ڏ

Python:

char = '\u068F'
print(char)  # Output: ڏ

Perl:

my $char = "\x{068F}";
print $char;  # Output: ڏ

PHP:

$char = "\x{068F}";
echo $char;  // Output: ڏ

Ruby:

char = "\u{068F}"
puts char  # Output: ڏ

Rust:

let c = '\u{68F}';
println!("{}", c);  // Output: ڏ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00068F";  /* Display: ڏ */
}

HTML Decimal:

<p>HTML decimal: &#1679;</p>  <!-- Display: ڏ -->

HTML Hexadecimal:

<p>HTML hex: &#x068F;</p>  <!-- Display: ڏ -->

URL Encoding:

// ڏ URL encoding
https://unicodefinder.com/search.php?query=%DA%8F

Encodings

MD5:

a3cfd8259a6c0e55f74b47d0e877fc10

SHA1:

ea9284c8def6f4ca5fca66bc1c46d77c513dc999

Base64:

2o8=