Unicode Finder

"ܖ" U+0716(SYRIAC LETTER DOTLESS DALATH RISH)

ܖ
U+0716
نام بلوک
Syriac
نام
SYRIAC LETTER DOTLESS DALATH RISH

Programming

C
\u0716
JavaScript
\u0716
Java
\u0716
Json
\u0716
Python
\u0716
Perl
\x{0716}
PHP
\x{0716}
Ruby
\u{0716}
Rust
\u{716}
Go
\u0716

Web

CSS
\000716
HtmlDecimal
ܖ
HtmlHexadecimal
ܖ
Url
%DC%96

Code

MD5
601a56e9130e6572e1ad34456ee89951
Sha1
6dabf1231c81952307330047bb913e7ab331f708
Base64
3JY=

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u0716';
console.log(char);  // Output: ܖ

Java:

char c = '\u0716';
System.out.println(c);  // Output: ܖ

JSON:

{"text": "\u0716"}  // Value: ܖ

Python:

char = '\u0716'
print(char)  # Output: ܖ

Perl:

my $char = "\x{0716}";
print $char;  # Output: ܖ

PHP:

$char = "\x{0716}";
echo $char;  // Output: ܖ

Ruby:

char = "\u{0716}"
puts char  # Output: ܖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000716";  /* Display: ܖ */
}

HTML Decimal:

<p>HTML decimal: &#1814;</p>  <!-- Display: ܖ -->

HTML Hexadecimal:

<p>HTML hex: &#x0716;</p>  <!-- Display: ܖ -->

URL Encoding:

// ܖ URL encoding
https://unicodefinder.com/search.php?query=%DC%96

Encodings

MD5:

601a56e9130e6572e1ad34456ee89951

SHA1:

6dabf1231c81952307330047bb913e7ab331f708

Base64:

3JY=