C:
char c = '\u0153';
printf("%c\n", c); // Output: œ
JavaScript:
const char = '\u0153';
console.log(char); // Output: œ
Java:
char c = '\u0153';
System.out.println(c); // Output: œ
JSON:
{"text": "\u0153"} // Value: œ
Python:
char = '\u0153'
print(char) # Output: œ
Perl:
my $char = "\x{0153}";
print $char; # Output: œ
PHP:
$char = "\x{0153}";
echo $char; // Output: œ
Ruby:
char = "\u{0153}"
puts char # Output: œ
Rust:
let c = '\u{153}';
println!("{}", c); // Output: œ
Go:
char := '\u0153'
fmt.Printf("%c\n", char) // Output: œ
CSS:
/* CSS content property */
.element::before {
content: "\000153"; /* 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%93
MD5:
a9fc2dfbef01d8c56b611703949aa867
SHA1:
2d19cb96c7f0a94ed3f36893042fe031ca09c6fc
Base64:
xZM=