Unicode Finder

"ܧ" U+0727(SYRIAC LETTER REVERSED PE)

ܧ
U+0727
نام بلوک
Syriac
نام
SYRIAC LETTER REVERSED PE

Programming

C
\u0727
JavaScript
\u0727
Java
\u0727
Json
\u0727
Python
\u0727
Perl
\x{0727}
PHP
\x{0727}
Ruby
\u{0727}
Rust
\u{727}
Go
\u0727

Web

CSS
\000727
HtmlDecimal
ܧ
HtmlHexadecimal
ܧ
Url
%DC%A7

Code

MD5
0ccb08c5dee6938edf00eee8c6e45e13
Sha1
539c0a4897f6bf551140a81edb1758d4d6de8144
Base64
3Kc=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0727';
console.log(char);  // Output: ܧ

Java:

char c = '\u0727';
System.out.println(c);  // Output: ܧ

JSON:

{"text": "\u0727"}  // Value: ܧ

Python:

char = '\u0727'
print(char)  # Output: ܧ

Perl:

my $char = "\x{0727}";
print $char;  # Output: ܧ

PHP:

$char = "\x{0727}";
echo $char;  // Output: ܧ

Ruby:

char = "\u{0727}"
puts char  # Output: ܧ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000727";  /* Display: ܧ */
}

HTML Decimal:

<p>HTML decimal: &#1831;</p>  <!-- Display: ܧ -->

HTML Hexadecimal:

<p>HTML hex: &#x0727;</p>  <!-- Display: ܧ -->

URL Encoding:

// ܧ URL encoding
https://unicodefinder.com/search.php?query=%DC%A7

Encodings

MD5:

0ccb08c5dee6938edf00eee8c6e45e13

SHA1:

539c0a4897f6bf551140a81edb1758d4d6de8144

Base64:

3Kc=