C:
char c = '\u0233';
printf("%c\n", c); // Output: ȳ
JavaScript:
const char = '\u0233';
console.log(char); // Output: ȳ
Java:
char c = '\u0233';
System.out.println(c); // Output: ȳ
JSON:
{"text": "\u0233"} // Value: ȳ
Python:
char = '\u0233'
print(char) # Output: ȳ
Perl:
my $char = "\x{0233}";
print $char; # Output: ȳ
PHP:
$char = "\x{0233}";
echo $char; // Output: ȳ
Ruby:
char = "\u{0233}"
puts char # Output: ȳ
Rust:
let c = '\u{233}';
println!("{}", c); // Output: ȳ
Go:
char := '\u0233'
fmt.Printf("%c\n", char) // Output: ȳ
CSS:
/* CSS content property */
.element::before {
content: "\000233"; /* 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%B3
MD5:
af603006881bcecaf4a292faea9420b0
SHA1:
75804ff50f498bceaf3f03ba43f7e0baf873262b
Base64:
yLM=