C:
char c = '\u0169';
printf("%c\n", c); // Output: ũ
JavaScript:
const char = '\u0169';
console.log(char); // Output: ũ
Java:
char c = '\u0169';
System.out.println(c); // Output: ũ
JSON:
{"text": "\u0169"} // Value: ũ
Python:
char = '\u0169'
print(char) # Output: ũ
Perl:
my $char = "\x{0169}";
print $char; # Output: ũ
PHP:
$char = "\x{0169}";
echo $char; // Output: ũ
Ruby:
char = "\u{0169}"
puts char # Output: ũ
Rust:
let c = '\u{169}';
println!("{}", c); // Output: ũ
Go:
char := '\u0169'
fmt.Printf("%c\n", char) // Output: ũ
CSS:
/* CSS content property */
.element::before {
content: "\000169"; /* 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=%C5%A9
MD5:
2dca8cdd4a85ae059c09544e08055c3f
SHA1:
9fbfbea7f92a7f0c7eaedb0c07499c44fb1c8e9a
Base64:
xak=