Unicode Finder

"M" U+004D(LATIN CAPITAL LETTER M)

M
U+004D
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER M

Programming

C
\u004D
JavaScript
\u004D
Java
\u004D
Json
\u004D
Python
\u004D
Perl
\x{004D}
PHP
\x{004D}
Ruby
\u{004D}
Rust
\u{4D}
Go
\u004D

Web

CSS
\00004D
HtmlDecimal
M
HtmlHexadecimal
M
Url
M

Code

MD5
69691c7bdcc3ce6d5d8a1361f22d04ac
Sha1
c63ae6dd4fc9f9dda66970e827d13f7c73fe841c
Base64
TQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u004D';
console.log(char);  // Output: M

Java:

char c = '\u004D';
System.out.println(c);  // Output: M

JSON:

{"text": "\u004D"}  // Value: M

Python:

char = '\u004D'
print(char)  # Output: M

Perl:

my $char = "\x{004D}";
print $char;  # Output: M

PHP:

$char = "\x{004D}";
echo $char;  // Output: M

Ruby:

char = "\u{004D}"
puts char  # Output: M

Rust:

let c = '\u{4D}';
println!("{}", c);  // Output: M

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00004D";  /* Display: M */
}

HTML Decimal:

<p>HTML decimal: &#77;</p>  <!-- Display: M -->

HTML Hexadecimal:

<p>HTML hex: &#x004D;</p>  <!-- Display: M -->

URL Encoding:

// M URL encoding
https://unicodefinder.com/search.php?query=M

Encodings

MD5:

69691c7bdcc3ce6d5d8a1361f22d04ac

SHA1:

c63ae6dd4fc9f9dda66970e827d13f7c73fe841c

Base64:

TQ==