Unicode Finder

"н" U+043D(CYRILLIC SMALL LETTER EN)

н
U+043D
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER EN

Programming

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

Web

CSS
\00043D
HtmlDecimal
н
HtmlHexadecimal
н
Url
%D0%BD

Code

MD5
daf89fca933de15b70b1de3efac1886a
Sha1
7f7328fc7d7316b8015cad7889b725803fe68e9e
Base64
0L0=

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

Programming Languages

C:

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

JavaScript:

const char = '\u043D';
console.log(char);  // Output: н

Java:

char c = '\u043D';
System.out.println(c);  // Output: н

JSON:

{"text": "\u043D"}  // Value: н

Python:

char = '\u043D'
print(char)  # Output: н

Perl:

my $char = "\x{043D}";
print $char;  # Output: н

PHP:

$char = "\x{043D}";
echo $char;  // Output: н

Ruby:

char = "\u{043D}"
puts char  # Output: н

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1085;</p>  <!-- Display: н -->

HTML Hexadecimal:

<p>HTML hex: &#x043D;</p>  <!-- Display: н -->

URL Encoding:

// н URL encoding
https://unicodefinder.com/search.php?query=%D0%BD

Encodings

MD5:

daf89fca933de15b70b1de3efac1886a

SHA1:

7f7328fc7d7316b8015cad7889b725803fe68e9e

Base64:

0L0=