C:
char c = '\u8AE9';
printf("%c\n", c); // Output: 諩
JavaScript:
const char = '\u8AE9';
console.log(char); // Output: 諩
Java:
char c = '\u8AE9';
System.out.println(c); // Output: 諩
JSON:
{"text": "\u8AE9"} // Value: 諩
Python:
char = '\u8AE9'
print(char) # Output: 諩
Perl:
my $char = "\x{8AE9}";
print $char; # Output: 諩
PHP:
$char = "\x{8AE9}";
echo $char; // Output: 諩
Ruby:
char = "\u{8AE9}"
puts char # Output: 諩
Rust:
let c = '\u{8AE9}';
println!("{}", c); // Output: 諩
Go:
char := '\u8AE9'
fmt.Printf("%c\n", char) // Output: 諩
CSS:
/* CSS content property */
.element::before {
content: "\008AE9"; /* 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=%E8%AB%A9
MD5:
c1b276f13b3cd60e85a23b21a7dde107
SHA1:
c3c64afbab7edd5a3dd2c08f19b43371be458a98
Base64:
6Kup