C:
char c = '\u0168';
printf("%c\n", c); // Output: Ũ
JavaScript:
const char = '\u0168';
console.log(char); // Output: Ũ
Java:
char c = '\u0168';
System.out.println(c); // Output: Ũ
JSON:
{"text": "\u0168"} // Value: Ũ
Python:
char = '\u0168'
print(char) # Output: Ũ
Perl:
my $char = "\x{0168}";
print $char; # Output: Ũ
PHP:
$char = "\x{0168}";
echo $char; // Output: Ũ
Ruby:
char = "\u{0168}"
puts char # Output: Ũ
Rust:
let c = '\u{168}';
println!("{}", c); // Output: Ũ
Go:
char := '\u0168'
fmt.Printf("%c\n", char) // Output: Ũ
CSS:
/* CSS content property */
.element::before {
content: "\000168"; /* 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%A8
MD5:
0e36aa3b9909c13c4ffac931a35d54f3
SHA1:
a3d6bde850e984cafc9ad99a68e8ce104ceb43fc
Base64:
xag=