Unicode Finder

"Η" U+0397(GREEK CAPITAL LETTER ETA)

Η
U+0397
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK CAPITAL LETTER ETA

Programming

C
\u0397
JavaScript
\u0397
Java
\u0397
Json
\u0397
Python
\u0397
Perl
\x{0397}
PHP
\x{0397}
Ruby
\u{0397}
Rust
\u{397}
Go
\u0397

Web

CSS
\000397
HtmlDecimal
Η
HtmlHexadecimal
Η
Url
%CE%97

Code

MD5
a23c458f545fa4d5b3f89a33bd552337
Sha1
5ffa86b248022980291eb9eb090ca61d7b787044
Base64
zpc=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0397';
console.log(char);  // Output: Η

Java:

char c = '\u0397';
System.out.println(c);  // Output: Η

JSON:

{"text": "\u0397"}  // Value: Η

Python:

char = '\u0397'
print(char)  # Output: Η

Perl:

my $char = "\x{0397}";
print $char;  # Output: Η

PHP:

$char = "\x{0397}";
echo $char;  // Output: Η

Ruby:

char = "\u{0397}"
puts char  # Output: Η

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000397";  /* Display: Η */
}

HTML Decimal:

<p>HTML decimal: &#919;</p>  <!-- Display: Η -->

HTML Hexadecimal:

<p>HTML hex: &#x0397;</p>  <!-- Display: Η -->

URL Encoding:

// Η URL encoding
https://unicodefinder.com/search.php?query=%CE%97

Encodings

MD5:

a23c458f545fa4d5b3f89a33bd552337

SHA1:

5ffa86b248022980291eb9eb090ca61d7b787044

Base64:

zpc=