Unicode Finder

"ἴ" U+1F34(GREEK SMALL LETTER IOTA WITH PSILI AND OXIA)

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

Programming

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

Web

CSS
\001F34
HtmlDecimal
ἴ
HtmlHexadecimal
ἴ
Url
%E1%BC%B4

Code

MD5
369d280ece6086b7b47309a4a7fd5ec3
Sha1
c8f4fdee3e9e711de1894f94398c5f75b0f211ac
Base64
4by0

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F34';
console.log(char);  // Output: ἴ

Java:

char c = '\u1F34';
System.out.println(c);  // Output: ἴ

JSON:

{"text": "\u1F34"}  // Value: ἴ

Python:

char = '\u1F34'
print(char)  # Output: ἴ

Perl:

my $char = "\x{1F34}";
print $char;  # Output: ἴ

PHP:

$char = "\x{1F34}";
echo $char;  // Output: ἴ

Ruby:

char = "\u{1F34}"
puts char  # Output: ἴ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7988;</p>  <!-- Display: ἴ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F34;</p>  <!-- Display: ἴ -->

URL Encoding:

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

Encodings

MD5:

369d280ece6086b7b47309a4a7fd5ec3

SHA1:

c8f4fdee3e9e711de1894f94398c5f75b0f211ac

Base64:

4by0