Unicode Finder

"ր" U+0580(ARMENIAN SMALL LETTER REH)

ր
U+0580
Block Name
Armenian
Name
ARMENIAN SMALL LETTER REH

Programming

C
\u0580
JavaScript
\u0580
Java
\u0580
Json
\u0580
Python
\u0580
Perl
\x{0580}
PHP
\x{0580}
Ruby
\u{0580}
Rust
\u{580}
Go
\u0580

Web

CSS
\000580
HtmlDecimal
ր
HtmlHexadecimal
ր
Url
%D6%80

Code

MD5
8d9987d69d320b81a0f3432f5bcab90a
Sha1
818395779b9c5a30765f652dfbfdd82a54b61eb7
Base64
1oA=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0580';
console.log(char);  // Output: ր

Java:

char c = '\u0580';
System.out.println(c);  // Output: ր

JSON:

{"text": "\u0580"}  // Value: ր

Python:

char = '\u0580'
print(char)  # Output: ր

Perl:

my $char = "\x{0580}";
print $char;  # Output: ր

PHP:

$char = "\x{0580}";
echo $char;  // Output: ր

Ruby:

char = "\u{0580}"
puts char  # Output: ր

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000580";  /* Display: ր */
}

HTML Decimal:

<p>HTML decimal: &#1408;</p>  <!-- Display: ր -->

HTML Hexadecimal:

<p>HTML hex: &#x0580;</p>  <!-- Display: ր -->

URL Encoding:

// ր URL encoding
https://unicodefinder.com/search.php?query=%D6%80

Encodings

MD5:

8d9987d69d320b81a0f3432f5bcab90a

SHA1:

818395779b9c5a30765f652dfbfdd82a54b61eb7

Base64:

1oA=