C:
char c = '\u0129';
printf("%c\n", c); // Output: ĩ
JavaScript:
const char = '\u0129';
console.log(char); // Output: ĩ
Java:
char c = '\u0129';
System.out.println(c); // Output: ĩ
JSON:
{"text": "\u0129"} // Value: ĩ
Python:
char = '\u0129'
print(char) # Output: ĩ
Perl:
my $char = "\x{0129}";
print $char; # Output: ĩ
PHP:
$char = "\x{0129}";
echo $char; // Output: ĩ
Ruby:
char = "\u{0129}"
puts char # Output: ĩ
Rust:
let c = '\u{129}';
println!("{}", c); // Output: ĩ
Go:
char := '\u0129'
fmt.Printf("%c\n", char) // Output: ĩ
CSS:
/* CSS content property */
.element::before {
content: "\000129"; /* 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%A9
MD5:
34f28087fff3dda7b36ee00a6e8b2d04
SHA1:
079cee41851f49969df1b5d0cd3bcd12c45476fb
Base64:
xKk=