Unicode Finder

"շ" U+0577(ARMENIAN SMALL LETTER SHA)

շ
U+0577
Block Name
Armenian
Name
ARMENIAN SMALL LETTER SHA

Programming

C
\u0577
JavaScript
\u0577
Java
\u0577
Json
\u0577
Python
\u0577
Perl
\x{0577}
PHP
\x{0577}
Ruby
\u{0577}
Rust
\u{577}
Go
\u0577

Web

CSS
\000577
HtmlDecimal
շ
HtmlHexadecimal
շ
Url
%D5%B7

Code

MD5
6830360a4ebf9289839dda4a08f77aed
Sha1
0511397ab65f7496791ad3b99fd32179da144932
Base64
1bc=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0577';
console.log(char);  // Output: շ

Java:

char c = '\u0577';
System.out.println(c);  // Output: շ

JSON:

{"text": "\u0577"}  // Value: շ

Python:

char = '\u0577'
print(char)  # Output: շ

Perl:

my $char = "\x{0577}";
print $char;  # Output: շ

PHP:

$char = "\x{0577}";
echo $char;  // Output: շ

Ruby:

char = "\u{0577}"
puts char  # Output: շ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000577";  /* Display: շ */
}

HTML Decimal:

<p>HTML decimal: &#1399;</p>  <!-- Display: շ -->

HTML Hexadecimal:

<p>HTML hex: &#x0577;</p>  <!-- Display: շ -->

URL Encoding:

// շ URL encoding
https://unicodefinder.com/search.php?query=%D5%B7

Encodings

MD5:

6830360a4ebf9289839dda4a08f77aed

SHA1:

0511397ab65f7496791ad3b99fd32179da144932

Base64:

1bc=