Unicode Finder

"ն" U+0576(ARMENIAN SMALL LETTER NOW)

ն
U+0576
Block Name
Armenian
Name
ARMENIAN SMALL LETTER NOW

Programming

C
\u0576
JavaScript
\u0576
Java
\u0576
Json
\u0576
Python
\u0576
Perl
\x{0576}
PHP
\x{0576}
Ruby
\u{0576}
Rust
\u{576}
Go
\u0576

Web

CSS
\000576
HtmlDecimal
ն
HtmlHexadecimal
ն
Url
%D5%B6

Code

MD5
5269a166128b8cd4649b5e0c31cc4fac
Sha1
4f98c8a2f5f7745f630d872ec2541502bd2c9384
Base64
1bY=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0576';
console.log(char);  // Output: ն

Java:

char c = '\u0576';
System.out.println(c);  // Output: ն

JSON:

{"text": "\u0576"}  // Value: ն

Python:

char = '\u0576'
print(char)  # Output: ն

Perl:

my $char = "\x{0576}";
print $char;  # Output: ն

PHP:

$char = "\x{0576}";
echo $char;  // Output: ն

Ruby:

char = "\u{0576}"
puts char  # Output: ն

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000576";  /* Display: ն */
}

HTML Decimal:

<p>HTML decimal: &#1398;</p>  <!-- Display: ն -->

HTML Hexadecimal:

<p>HTML hex: &#x0576;</p>  <!-- Display: ն -->

URL Encoding:

// ն URL encoding
https://unicodefinder.com/search.php?query=%D5%B6

Encodings

MD5:

5269a166128b8cd4649b5e0c31cc4fac

SHA1:

4f98c8a2f5f7745f630d872ec2541502bd2c9384

Base64:

1bY=