Unicode Finder

"ΐ" U+0390(GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS)

ΐ
U+0390
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS

Programming

C
\u0390
JavaScript
\u0390
Java
\u0390
Json
\u0390
Python
\u0390
Perl
\x{0390}
PHP
\x{0390}
Ruby
\u{0390}
Rust
\u{390}
Go
\u0390

Web

CSS
\000390
HtmlDecimal
ΐ
HtmlHexadecimal
ΐ
Url
%CE%90

Code

MD5
ebed4227441fe570dc76f2477df38671
Sha1
c2297501d40dec36fe288074de467b789b40985a
Base64
zpA=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0390';
console.log(char);  // Output: ΐ

Java:

char c = '\u0390';
System.out.println(c);  // Output: ΐ

JSON:

{"text": "\u0390"}  // Value: ΐ

Python:

char = '\u0390'
print(char)  # Output: ΐ

Perl:

my $char = "\x{0390}";
print $char;  # Output: ΐ

PHP:

$char = "\x{0390}";
echo $char;  // Output: ΐ

Ruby:

char = "\u{0390}"
puts char  # Output: ΐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000390";  /* Display: ΐ */
}

HTML Decimal:

<p>HTML decimal: &#912;</p>  <!-- Display: ΐ -->

HTML Hexadecimal:

<p>HTML hex: &#x0390;</p>  <!-- Display: ΐ -->

URL Encoding:

// ΐ URL encoding
https://unicodefinder.com/search.php?query=%CE%90

Encodings

MD5:

ebed4227441fe570dc76f2477df38671

SHA1:

c2297501d40dec36fe288074de467b789b40985a

Base64:

zpA=