Unicode Finder

"ա" U+0561(ARMENIAN SMALL LETTER AYB)

ա
U+0561
Bloknaam
Armenian
Naam
ARMENIAN SMALL LETTER AYB

Programming

C
\u0561
JavaScript
\u0561
Java
\u0561
Json
\u0561
Python
\u0561
Perl
\x{0561}
PHP
\x{0561}
Ruby
\u{0561}
Rust
\u{561}
Go
\u0561

Web

CSS
\000561
HtmlDecimal
ա
HtmlHexadecimal
ա
Url
%D5%A1

Code

MD5
a6fdaa20605ca142bc36e9784f44e53e
Sha1
f1cba4bca6145f46a8db5a72f0ccd9e7022dc2ca
Base64
1aE=

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u0561';
console.log(char);  // Output: ա

Java:

char c = '\u0561';
System.out.println(c);  // Output: ա

JSON:

{"text": "\u0561"}  // Value: ա

Python:

char = '\u0561'
print(char)  # Output: ա

Perl:

my $char = "\x{0561}";
print $char;  # Output: ա

PHP:

$char = "\x{0561}";
echo $char;  // Output: ա

Ruby:

char = "\u{0561}"
puts char  # Output: ա

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000561";  /* Display: ա */
}

HTML Decimal:

<p>HTML decimal: &#1377;</p>  <!-- Display: ա -->

HTML Hexadecimal:

<p>HTML hex: &#x0561;</p>  <!-- Display: ա -->

URL Encoding:

// ա URL encoding
https://unicodefinder.com/search.php?query=%D5%A1

Encodings

MD5:

a6fdaa20605ca142bc36e9784f44e53e

SHA1:

f1cba4bca6145f46a8db5a72f0ccd9e7022dc2ca

Base64:

1aE=