C:
char c = '\u0229';
printf("%c\n", c); // Output: ȩ
JavaScript:
const char = '\u0229';
console.log(char); // Output: ȩ
Java:
char c = '\u0229';
System.out.println(c); // Output: ȩ
JSON:
{"text": "\u0229"} // Value: ȩ
Python:
char = '\u0229'
print(char) # Output: ȩ
Perl:
my $char = "\x{0229}";
print $char; # Output: ȩ
PHP:
$char = "\x{0229}";
echo $char; // Output: ȩ
Ruby:
char = "\u{0229}"
puts char # Output: ȩ
Rust:
let c = '\u{229}';
println!("{}", c); // Output: ȩ
Go:
char := '\u0229'
fmt.Printf("%c\n", char) // Output: ȩ
CSS:
/* CSS content property */
.element::before {
content: "\000229"; /* 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=%C8%A9
MD5:
61d10da488267cd31147897ced7a5c1e
SHA1:
f2ff381a81fc0c96fe77279b58a34bed7a80536e
Base64:
yKk=