Unicode Finder

"Ι" U+0399(GREEK CAPITAL LETTER IOTA)

Ι
U+0399
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK CAPITAL LETTER IOTA

Programming

C
\u0399
JavaScript
\u0399
Java
\u0399
Json
\u0399
Python
\u0399
Perl
\x{0399}
PHP
\x{0399}
Ruby
\u{0399}
Rust
\u{399}
Go
\u0399

Web

CSS
\000399
HtmlDecimal
Ι
HtmlHexadecimal
Ι
Url
%CE%99

Code

MD5
505a974f21fb61af7d21759870c1120c
Sha1
a8fd084debcdb4f20c7880c1b4770ae3fbcd30e9
Base64
zpk=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0399';
console.log(char);  // Output: Ι

Java:

char c = '\u0399';
System.out.println(c);  // Output: Ι

JSON:

{"text": "\u0399"}  // Value: Ι

Python:

char = '\u0399'
print(char)  # Output: Ι

Perl:

my $char = "\x{0399}";
print $char;  # Output: Ι

PHP:

$char = "\x{0399}";
echo $char;  // Output: Ι

Ruby:

char = "\u{0399}"
puts char  # Output: Ι

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000399";  /* Display: Ι */
}

HTML Decimal:

<p>HTML decimal: &#921;</p>  <!-- Display: Ι -->

HTML Hexadecimal:

<p>HTML hex: &#x0399;</p>  <!-- Display: Ι -->

URL Encoding:

// Ι URL encoding
https://unicodefinder.com/search.php?query=%CE%99

Encodings

MD5:

505a974f21fb61af7d21759870c1120c

SHA1:

a8fd084debcdb4f20c7880c1b4770ae3fbcd30e9

Base64:

zpk=