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: Ỉ
CSS:
/* CSS content property */
.element::before {
content: "\001EC8"; /* Display: Ỉ */
}
HTML Decimal:
<p>HTML decimal: Ỉ</p> <!-- Display: Ỉ -->
HTML Hexadecimal:
<p>HTML hex: Ỉ</p> <!-- Display: Ỉ -->
URL Encoding:
// Ỉ URL encoding
https://unicodefinder.com/search.php?query=%E1%BB%88
MD5:
379ee8025d423fd01c0da446caf9ba1e
SHA1:
28c2bd936fd4e89efe870356b06e22d76152fa5f
Base64:
4buI