Unicode Finder

"ѐ" U+0450(CYRILLIC SMALL LETTER IE WITH GRAVE)

ѐ
U+0450
Назва Блоку
Cyrillic
Назва
CYRILLIC SMALL LETTER IE WITH GRAVE

Programming

C
\u0450
JavaScript
\u0450
Java
\u0450
Json
\u0450
Python
\u0450
Perl
\x{0450}
PHP
\x{0450}
Ruby
\u{0450}
Rust
\u{450}
Go
\u0450

Web

CSS
\000450
HtmlDecimal
ѐ
HtmlHexadecimal
ѐ
Url
%D1%90

Code

MD5
0323e9a7847065332d1b9b9d1f780d50
Sha1
4166d19ab978b0eb6e027997df631c19c2459447
Base64
0ZA=

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u0450';
console.log(char);  // Output: ѐ

Java:

char c = '\u0450';
System.out.println(c);  // Output: ѐ

JSON:

{"text": "\u0450"}  // Value: ѐ

Python:

char = '\u0450'
print(char)  # Output: ѐ

Perl:

my $char = "\x{0450}";
print $char;  # Output: ѐ

PHP:

$char = "\x{0450}";
echo $char;  // Output: ѐ

Ruby:

char = "\u{0450}"
puts char  # Output: ѐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000450";  /* Display: ѐ */
}

HTML Decimal:

<p>HTML decimal: &#1104;</p>  <!-- Display: ѐ -->

HTML Hexadecimal:

<p>HTML hex: &#x0450;</p>  <!-- Display: ѐ -->

URL Encoding:

// ѐ URL encoding
https://unicodefinder.com/search.php?query=%D1%90

Encodings

MD5:

0323e9a7847065332d1b9b9d1f780d50

SHA1:

4166d19ab978b0eb6e027997df631c19c2459447

Base64:

0ZA=