Unicode Finder

"ܦ" U+0726(SYRIAC LETTER PE)

ܦ
U+0726
نام بلوک
Syriac
نام
SYRIAC LETTER PE

Programming

C
\u0726
JavaScript
\u0726
Java
\u0726
Json
\u0726
Python
\u0726
Perl
\x{0726}
PHP
\x{0726}
Ruby
\u{0726}
Rust
\u{726}
Go
\u0726

Web

CSS
\000726
HtmlDecimal
ܦ
HtmlHexadecimal
ܦ
Url
%DC%A6

Code

MD5
05b1c520a3fec7ffa69f152822857acf
Sha1
ab33893a24ad23c12dbe426ea6c1e56d4ba519f2
Base64
3KY=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0726';
console.log(char);  // Output: ܦ

Java:

char c = '\u0726';
System.out.println(c);  // Output: ܦ

JSON:

{"text": "\u0726"}  // Value: ܦ

Python:

char = '\u0726'
print(char)  # Output: ܦ

Perl:

my $char = "\x{0726}";
print $char;  # Output: ܦ

PHP:

$char = "\x{0726}";
echo $char;  // Output: ܦ

Ruby:

char = "\u{0726}"
puts char  # Output: ܦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000726";  /* Display: ܦ */
}

HTML Decimal:

<p>HTML decimal: &#1830;</p>  <!-- Display: ܦ -->

HTML Hexadecimal:

<p>HTML hex: &#x0726;</p>  <!-- Display: ܦ -->

URL Encoding:

// ܦ URL encoding
https://unicodefinder.com/search.php?query=%DC%A6

Encodings

MD5:

05b1c520a3fec7ffa69f152822857acf

SHA1:

ab33893a24ad23c12dbe426ea6c1e56d4ba519f2

Base64:

3KY=