Unicode Finder

"Ỉ" U+1EC8(LATIN CAPITAL LETTER I WITH HOOK ABOVE)

U+1EC8
Tên Khối
Latin Extended Additional
Tên
LATIN CAPITAL LETTER I WITH HOOK ABOVE

Programming

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

Web

CSS
\001EC8
HtmlDecimal
Ỉ
HtmlHexadecimal
Ỉ
Url
%E1%BB%88

Code

MD5
379ee8025d423fd01c0da446caf9ba1e
Sha1
28c2bd936fd4e89efe870356b06e22d76152fa5f
Base64
4buI

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1EC8';
console.log(char);  // Output: Ỉ

Java:

char c = '\u1EC8';
System.out.println(c);  // Output: Ỉ

JSON:

{"text": "\u1EC8"}  // Value: Ỉ

Python:

char = '\u1EC8'
print(char)  # Output: Ỉ

Perl:

my $char = "\x{1EC8}";
print $char;  # Output: Ỉ

PHP:

$char = "\x{1EC8}";
echo $char;  // Output: Ỉ

Ruby:

char = "\u{1EC8}"
puts char  # Output: Ỉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7880;</p>  <!-- Display: Ỉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1EC8;</p>  <!-- Display: Ỉ -->

URL Encoding:

// Ỉ URL encoding
https://unicodefinder.com/search.php?query=%E1%BB%88

Encodings

MD5:

379ee8025d423fd01c0da446caf9ba1e

SHA1:

28c2bd936fd4e89efe870356b06e22d76152fa5f

Base64:

4buI