C:
char c = '\u0289';
printf("%c\n", c); // Output: ʉ
JavaScript:
const char = '\u0289';
console.log(char); // Output: ʉ
Java:
char c = '\u0289';
System.out.println(c); // Output: ʉ
JSON:
{"text": "\u0289"} // Value: ʉ
Python:
char = '\u0289'
print(char) # Output: ʉ
Perl:
my $char = "\x{0289}";
print $char; # Output: ʉ
PHP:
$char = "\x{0289}";
echo $char; // Output: ʉ
Ruby:
char = "\u{0289}"
puts char # Output: ʉ
Rust:
let c = '\u{289}';
println!("{}", c); // Output: ʉ
Go:
char := '\u0289'
fmt.Printf("%c\n", char) // Output: ʉ
CSS:
/* CSS content property */
.element::before {
content: "\000289"; /* 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=%CA%89
MD5:
1517f70b56febc5135d56d7655c29e68
SHA1:
4a1d4ed6a814d363980985220e08bf3421689c32
Base64:
yok=