Unicode Finder

"Ἵ" U+1F3D(GREEK CAPITAL LETTER IOTA WITH DASIA AND OXIA)

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

Programming

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

Web

CSS
\001F3D
HtmlDecimal
Ἵ
HtmlHexadecimal
Ἵ
Url
%E1%BC%BD

Code

MD5
036460dd04156f267e77d6d94ba2f8ff
Sha1
698d40d4982a468f82d079b19d7a26902df8ce8b
Base64
4by9

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F3D';
console.log(char);  // Output: Ἵ

Java:

char c = '\u1F3D';
System.out.println(c);  // Output: Ἵ

JSON:

{"text": "\u1F3D"}  // Value: Ἵ

Python:

char = '\u1F3D'
print(char)  # Output: Ἵ

Perl:

my $char = "\x{1F3D}";
print $char;  # Output: Ἵ

PHP:

$char = "\x{1F3D}";
echo $char;  // Output: Ἵ

Ruby:

char = "\u{1F3D}"
puts char  # Output: Ἵ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7997;</p>  <!-- Display: Ἵ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3D;</p>  <!-- Display: Ἵ -->

URL Encoding:

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

Encodings

MD5:

036460dd04156f267e77d6d94ba2f8ff

SHA1:

698d40d4982a468f82d079b19d7a26902df8ce8b

Base64:

4by9