C:
char c = '\u0128';
printf("%c\n", c); // Output: Ĩ
JavaScript:
const char = '\u0128';
console.log(char); // Output: Ĩ
Java:
char c = '\u0128';
System.out.println(c); // Output: Ĩ
JSON:
{"text": "\u0128"} // Value: Ĩ
Python:
char = '\u0128'
print(char) # Output: Ĩ
Perl:
my $char = "\x{0128}";
print $char; # Output: Ĩ
PHP:
$char = "\x{0128}";
echo $char; // Output: Ĩ
Ruby:
char = "\u{0128}"
puts char # Output: Ĩ
Rust:
let c = '\u{128}';
println!("{}", c); // Output: Ĩ
Go:
char := '\u0128'
fmt.Printf("%c\n", char) // Output: Ĩ
CSS:
/* CSS content property */
.element::before {
content: "\000128"; /* 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=%C4%A8
MD5:
fc92c1ad79be9c7afd199214b8437c30
SHA1:
a14d73bbba1c5c6c77f1a42b538f2548a34f5d77
Base64:
xKg=