Unicode Finder

"ἵ" U+1F35(GREEK SMALL LETTER IOTA WITH DASIA AND OXIA)

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

Programming

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

Web

CSS
\001F35
HtmlDecimal
ἵ
HtmlHexadecimal
ἵ
Url
%E1%BC%B5

Code

MD5
062af970fd2a5ea0aba2efccb880c979
Sha1
fa1cc0d0213b5b089d110d9fea84801828f6affb
Base64
4by1

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F35';
console.log(char);  // Output: ἵ

Java:

char c = '\u1F35';
System.out.println(c);  // Output: ἵ

JSON:

{"text": "\u1F35"}  // Value: ἵ

Python:

char = '\u1F35'
print(char)  # Output: ἵ

Perl:

my $char = "\x{1F35}";
print $char;  # Output: ἵ

PHP:

$char = "\x{1F35}";
echo $char;  // Output: ἵ

Ruby:

char = "\u{1F35}"
puts char  # Output: ἵ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7989;</p>  <!-- Display: ἵ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F35;</p>  <!-- Display: ἵ -->

URL Encoding:

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

Encodings

MD5:

062af970fd2a5ea0aba2efccb880c979

SHA1:

fa1cc0d0213b5b089d110d9fea84801828f6affb

Base64:

4by1