Unicode Finder

"մ" U+0574(ARMENIAN SMALL LETTER MEN)

մ
U+0574
Block Name
Armenian
Name
ARMENIAN SMALL LETTER MEN

Programming

C
\u0574
JavaScript
\u0574
Java
\u0574
Json
\u0574
Python
\u0574
Perl
\x{0574}
PHP
\x{0574}
Ruby
\u{0574}
Rust
\u{574}
Go
\u0574

Web

CSS
\000574
HtmlDecimal
մ
HtmlHexadecimal
մ
Url
%D5%B4

Code

MD5
93520c5ee062ec0d824b75652424f993
Sha1
0710befa2b240e0827d01e05c156785d27082b8e
Base64
1bQ=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0574';
console.log(char);  // Output: մ

Java:

char c = '\u0574';
System.out.println(c);  // Output: մ

JSON:

{"text": "\u0574"}  // Value: մ

Python:

char = '\u0574'
print(char)  # Output: մ

Perl:

my $char = "\x{0574}";
print $char;  # Output: մ

PHP:

$char = "\x{0574}";
echo $char;  // Output: մ

Ruby:

char = "\u{0574}"
puts char  # Output: մ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000574";  /* Display: մ */
}

HTML Decimal:

<p>HTML decimal: &#1396;</p>  <!-- Display: մ -->

HTML Hexadecimal:

<p>HTML hex: &#x0574;</p>  <!-- Display: մ -->

URL Encoding:

// մ URL encoding
https://unicodefinder.com/search.php?query=%D5%B4

Encodings

MD5:

93520c5ee062ec0d824b75652424f993

SHA1:

0710befa2b240e0827d01e05c156785d27082b8e

Base64:

1bQ=