Unicode Finder

"ἶ" U+1F36(GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI)

U+1F36
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI

Programming

C
\u1F36
JavaScript
\u1F36
Java
\u1F36
Json
\u1F36
Python
\u1F36
Perl
\x{1F36}
PHP
\x{1F36}
Ruby
\u{1F36}
Rust
\u{1F36}
Go
\u1F36

Web

CSS
\001F36
HtmlDecimal
ἶ
HtmlHexadecimal
ἶ
Url
%E1%BC%B6

Code

MD5
3c883ba9005ec51446628dea266fa9b4
Sha1
abbf7698ac95cd43f334b92f4b3f2f02bd461f46
Base64
4by2

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F36';
console.log(char);  // Output: ἶ

Java:

char c = '\u1F36';
System.out.println(c);  // Output: ἶ

JSON:

{"text": "\u1F36"}  // Value: ἶ

Python:

char = '\u1F36'
print(char)  # Output: ἶ

Perl:

my $char = "\x{1F36}";
print $char;  # Output: ἶ

PHP:

$char = "\x{1F36}";
echo $char;  // Output: ἶ

Ruby:

char = "\u{1F36}"
puts char  # Output: ἶ

Rust:

let c = '\u{1F36}';
println!("{}", c);  // Output: ἶ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001F36";  /* Display: ἶ */
}

HTML Decimal:

<p>HTML decimal: &#7990;</p>  <!-- Display: ἶ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F36;</p>  <!-- Display: ἶ -->

URL Encoding:

// ἶ URL encoding
https://unicodefinder.com/search.php?query=%E1%BC%B6

Encodings

MD5:

3c883ba9005ec51446628dea266fa9b4

SHA1:

abbf7698ac95cd43f334b92f4b3f2f02bd461f46

Base64:

4by2