Unicode Finder

"ࠡ" U+0821(SAMARITAN VOWEL SIGN OVERLONG A)

U+0821
اسم الكتلة
Samaritan
الاسم
SAMARITAN VOWEL SIGN OVERLONG A

Programming

C
\u0821
JavaScript
\u0821
Java
\u0821
Json
\u0821
Python
\u0821
Perl
\x{0821}
PHP
\x{0821}
Ruby
\u{0821}
Rust
\u{821}
Go
\u0821

Web

CSS
\000821
HtmlDecimal
ࠡ
HtmlHexadecimal
ࠡ
Url
%E0%A0%A1

Code

MD5
3cd5b67a53dfd7747c52693a77a28652
Sha1
cfd56310b0d698d7a0782e92c97fddc5cf05ff1c
Base64
4KCh

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u0821';
console.log(char);  // Output: ࠡ

Java:

char c = '\u0821';
System.out.println(c);  // Output: ࠡ

JSON:

{"text": "\u0821"}  // Value: ࠡ

Python:

char = '\u0821'
print(char)  # Output: ࠡ

Perl:

my $char = "\x{0821}";
print $char;  # Output: ࠡ

PHP:

$char = "\x{0821}";
echo $char;  // Output: ࠡ

Ruby:

char = "\u{0821}"
puts char  # Output: ࠡ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000821";  /* Display: ࠡ */
}

HTML Decimal:

<p>HTML decimal: &#2081;</p>  <!-- Display: ࠡ -->

HTML Hexadecimal:

<p>HTML hex: &#x0821;</p>  <!-- Display: ࠡ -->

URL Encoding:

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

Encodings

MD5:

3cd5b67a53dfd7747c52693a77a28652

SHA1:

cfd56310b0d698d7a0782e92c97fddc5cf05ff1c

Base64:

4KCh