Unicode Finder

"Є" U+0404(CYRILLIC CAPITAL LETTER UKRAINIAN IE)

Є
U+0404
Όνομα Μπλοκ
Cyrillic
Όνομα
CYRILLIC CAPITAL LETTER UKRAINIAN IE

Programming

C
\u0404
JavaScript
\u0404
Java
\u0404
Json
\u0404
Python
\u0404
Perl
\x{0404}
PHP
\x{0404}
Ruby
\u{0404}
Rust
\u{404}
Go
\u0404

Web

CSS
\000404
HtmlDecimal
Є
HtmlHexadecimal
Є
Url
%D0%84

Code

MD5
01bd9295399651408100d197acbce9cf
Sha1
db24a8f302ccb1c6cf3c1e441b915867c7cba654
Base64
0IQ=

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u0404';
console.log(char);  // Output: Є

Java:

char c = '\u0404';
System.out.println(c);  // Output: Є

JSON:

{"text": "\u0404"}  // Value: Є

Python:

char = '\u0404'
print(char)  # Output: Є

Perl:

my $char = "\x{0404}";
print $char;  # Output: Є

PHP:

$char = "\x{0404}";
echo $char;  // Output: Є

Ruby:

char = "\u{0404}"
puts char  # Output: Є

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000404";  /* Display: Є */
}

HTML Decimal:

<p>HTML decimal: &#1028;</p>  <!-- Display: Є -->

HTML Hexadecimal:

<p>HTML hex: &#x0404;</p>  <!-- Display: Є -->

URL Encoding:

// Є URL encoding
https://unicodefinder.com/search.php?query=%D0%84

Encodings

MD5:

01bd9295399651408100d197acbce9cf

SHA1:

db24a8f302ccb1c6cf3c1e441b915867c7cba654

Base64:

0IQ=