Unicode Finder

"ղ" U+0572(ARMENIAN SMALL LETTER GHAD)

ղ
U+0572
Όνομα Μπλοκ
Armenian
Όνομα
ARMENIAN SMALL LETTER GHAD

Programming

C
\u0572
JavaScript
\u0572
Java
\u0572
Json
\u0572
Python
\u0572
Perl
\x{0572}
PHP
\x{0572}
Ruby
\u{0572}
Rust
\u{572}
Go
\u0572

Web

CSS
\000572
HtmlDecimal
ղ
HtmlHexadecimal
ղ
Url
%D5%B2

Code

MD5
e6852385a6261da83bcfcfae4e70d242
Sha1
5634ebacd758329e68fd05ccc529f0f40ae9a2dd
Base64
1bI=

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u0572';
console.log(char);  // Output: ղ

Java:

char c = '\u0572';
System.out.println(c);  // Output: ղ

JSON:

{"text": "\u0572"}  // Value: ղ

Python:

char = '\u0572'
print(char)  # Output: ղ

Perl:

my $char = "\x{0572}";
print $char;  # Output: ղ

PHP:

$char = "\x{0572}";
echo $char;  // Output: ղ

Ruby:

char = "\u{0572}"
puts char  # Output: ղ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000572";  /* Display: ղ */
}

HTML Decimal:

<p>HTML decimal: &#1394;</p>  <!-- Display: ղ -->

HTML Hexadecimal:

<p>HTML hex: &#x0572;</p>  <!-- Display: ղ -->

URL Encoding:

// ղ URL encoding
https://unicodefinder.com/search.php?query=%D5%B2

Encodings

MD5:

e6852385a6261da83bcfcfae4e70d242

SHA1:

5634ebacd758329e68fd05ccc529f0f40ae9a2dd

Base64:

1bI=