C:
char c = '\u916A';
printf("%c\n", c); // Output: 酪
JavaScript:
const char = '\u916A';
console.log(char); // Output: 酪
Java:
char c = '\u916A';
System.out.println(c); // Output: 酪
JSON:
{"text": "\u916A"} // Value: 酪
Python:
char = '\u916A'
print(char) # Output: 酪
Perl:
my $char = "\x{916A}";
print $char; # Output: 酪
PHP:
$char = "\x{916A}";
echo $char; // Output: 酪
Ruby:
char = "\u{916A}"
puts char # Output: 酪
Rust:
let c = '\u{916A}';
println!("{}", c); // Output: 酪
Go:
char := '\u916A'
fmt.Printf("%c\n", char) // Output: 酪
CSS:
/* CSS content property */
.element::before {
content: "\00916A"; /* 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=%E9%85%AA
MD5:
76915a4d4773df77d214918cf31fac93
SHA1:
6311fec8e80e3d29b6b404628f51675f135c56e5
Base64:
6YWq