Unicode Finder

"ࡅ" U+0845(MANDAIC LETTER USHENNA)

U+0845
بلاک کا نام
Mandaic
نام
MANDAIC LETTER USHENNA

Programming

C
\u0845
JavaScript
\u0845
Java
\u0845
Json
\u0845
Python
\u0845
Perl
\x{0845}
PHP
\x{0845}
Ruby
\u{0845}
Rust
\u{845}
Go
\u0845

Web

CSS
\000845
HtmlDecimal
ࡅ
HtmlHexadecimal
ࡅ
Url
%E0%A1%85

Code

MD5
423b246a12f2c72dbf6177adf4ca0452
Sha1
5028ed89897cd562d93a414c9689cf77d6e1c763
Base64
4KGF

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

Programming Languages

C:

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

JavaScript:

const char = '\u0845';
console.log(char);  // Output: ࡅ

Java:

char c = '\u0845';
System.out.println(c);  // Output: ࡅ

JSON:

{"text": "\u0845"}  // Value: ࡅ

Python:

char = '\u0845'
print(char)  # Output: ࡅ

Perl:

my $char = "\x{0845}";
print $char;  # Output: ࡅ

PHP:

$char = "\x{0845}";
echo $char;  // Output: ࡅ

Ruby:

char = "\u{0845}"
puts char  # Output: ࡅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000845";  /* Display: ࡅ */
}

HTML Decimal:

<p>HTML decimal: &#2117;</p>  <!-- Display: ࡅ -->

HTML Hexadecimal:

<p>HTML hex: &#x0845;</p>  <!-- Display: ࡅ -->

URL Encoding:

// ࡅ URL encoding
https://unicodefinder.com/search.php?query=%E0%A1%85

Encodings

MD5:

423b246a12f2c72dbf6177adf4ca0452

SHA1:

5028ed89897cd562d93a414c9689cf77d6e1c763

Base64:

4KGF