Unicode Finder

"ܨ" U+0728(SYRIAC LETTER SADHE)

ܨ
U+0728
بلاک کا نام
Syriac
نام
SYRIAC LETTER SADHE

Programming

C
\u0728
JavaScript
\u0728
Java
\u0728
Json
\u0728
Python
\u0728
Perl
\x{0728}
PHP
\x{0728}
Ruby
\u{0728}
Rust
\u{728}
Go
\u0728

Web

CSS
\000728
HtmlDecimal
ܨ
HtmlHexadecimal
ܨ
Url
%DC%A8

Code

MD5
2fe3f1956b547a0bf9aa933ba0f91908
Sha1
af2ad67cc2f5948e6bebac0f8844771fe0348b16
Base64
3Kg=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0728';
console.log(char);  // Output: ܨ

Java:

char c = '\u0728';
System.out.println(c);  // Output: ܨ

JSON:

{"text": "\u0728"}  // Value: ܨ

Python:

char = '\u0728'
print(char)  # Output: ܨ

Perl:

my $char = "\x{0728}";
print $char;  # Output: ܨ

PHP:

$char = "\x{0728}";
echo $char;  // Output: ܨ

Ruby:

char = "\u{0728}"
puts char  # Output: ܨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000728";  /* Display: ܨ */
}

HTML Decimal:

<p>HTML decimal: &#1832;</p>  <!-- Display: ܨ -->

HTML Hexadecimal:

<p>HTML hex: &#x0728;</p>  <!-- Display: ܨ -->

URL Encoding:

// ܨ URL encoding
https://unicodefinder.com/search.php?query=%DC%A8

Encodings

MD5:

2fe3f1956b547a0bf9aa933ba0f91908

SHA1:

af2ad67cc2f5948e6bebac0f8844771fe0348b16

Base64:

3Kg=