Unicode Finder

"ỉ" U+1EC9(LATIN SMALL LETTER I WITH HOOK ABOVE)

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

Programming

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

Web

CSS
\001EC9
HtmlDecimal
ỉ
HtmlHexadecimal
ỉ
Url
%E1%BB%89

Code

MD5
4a7a0484b98f81c447392d013837a130
Sha1
f365cfb866c13532a834a3078e79cecf3578ff41
Base64
4buJ

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1EC9';
console.log(char);  // Output: ỉ

Java:

char c = '\u1EC9';
System.out.println(c);  // Output: ỉ

JSON:

{"text": "\u1EC9"}  // Value: ỉ

Python:

char = '\u1EC9'
print(char)  # Output: ỉ

Perl:

my $char = "\x{1EC9}";
print $char;  # Output: ỉ

PHP:

$char = "\x{1EC9}";
echo $char;  // Output: ỉ

Ruby:

char = "\u{1EC9}"
puts char  # Output: ỉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7881;</p>  <!-- Display: ỉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1EC9;</p>  <!-- Display: ỉ -->

URL Encoding:

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

Encodings

MD5:

4a7a0484b98f81c447392d013837a130

SHA1:

f365cfb866c13532a834a3078e79cecf3578ff41

Base64:

4buJ