Unicode Finder

"м" U+043C(CYRILLIC SMALL LETTER EM)

м
U+043C
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER EM

Programming

C
\u043C
JavaScript
\u043C
Java
\u043C
Json
\u043C
Python
\u043C
Perl
\x{043C}
PHP
\x{043C}
Ruby
\u{043C}
Rust
\u{43C}
Go
\u043C

Web

CSS
\00043C
HtmlDecimal
м
HtmlHexadecimal
м
Url
%D0%BC

Code

MD5
ad3816848a25bc3e61215e95963051f0
Sha1
bf6379458cca6658520c3aaddeccea5f95f820ed
Base64
0Lw=

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u043C';
console.log(char);  // Output: м

Java:

char c = '\u043C';
System.out.println(c);  // Output: м

JSON:

{"text": "\u043C"}  // Value: м

Python:

char = '\u043C'
print(char)  # Output: м

Perl:

my $char = "\x{043C}";
print $char;  # Output: м

PHP:

$char = "\x{043C}";
echo $char;  // Output: м

Ruby:

char = "\u{043C}"
puts char  # Output: м

Rust:

let c = '\u{43C}';
println!("{}", c);  // Output: м

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00043C";  /* Display: м */
}

HTML Decimal:

<p>HTML decimal: &#1084;</p>  <!-- Display: м -->

HTML Hexadecimal:

<p>HTML hex: &#x043C;</p>  <!-- Display: м -->

URL Encoding:

// м URL encoding
https://unicodefinder.com/search.php?query=%D0%BC

Encodings

MD5:

ad3816848a25bc3e61215e95963051f0

SHA1:

bf6379458cca6658520c3aaddeccea5f95f820ed

Base64:

0Lw=