Unicode Finder

"Ḭ" U+1E2C(LATIN CAPITAL LETTER I WITH TILDE BELOW)

U+1E2C
Nume Bloc
Latin Extended Additional
Nume
LATIN CAPITAL LETTER I WITH TILDE BELOW

Programming

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

Web

CSS
\001E2C
HtmlDecimal
Ḭ
HtmlHexadecimal
Ḭ
Url
%E1%B8%AC

Code

MD5
ef33ead33b3638b48a7a89486ca2014f
Sha1
420e26fcea0e74841ed5fa3d2826adcdde890345
Base64
4bis

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1E2C';
console.log(char);  // Output: Ḭ

Java:

char c = '\u1E2C';
System.out.println(c);  // Output: Ḭ

JSON:

{"text": "\u1E2C"}  // Value: Ḭ

Python:

char = '\u1E2C'
print(char)  # Output: Ḭ

Perl:

my $char = "\x{1E2C}";
print $char;  # Output: Ḭ

PHP:

$char = "\x{1E2C}";
echo $char;  // Output: Ḭ

Ruby:

char = "\u{1E2C}"
puts char  # Output: Ḭ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7724;</p>  <!-- Display: Ḭ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E2C;</p>  <!-- Display: Ḭ -->

URL Encoding:

// Ḭ URL encoding
https://unicodefinder.com/search.php?query=%E1%B8%AC

Encodings

MD5:

ef33ead33b3638b48a7a89486ca2014f

SHA1:

420e26fcea0e74841ed5fa3d2826adcdde890345

Base64:

4bis