C:
char c = '\u9956';
printf("%c\n", c); // Output: 饖
JavaScript:
const char = '\u9956';
console.log(char); // Output: 饖
Java:
char c = '\u9956';
System.out.println(c); // Output: 饖
JSON:
{"text": "\u9956"} // Value: 饖
Python:
char = '\u9956'
print(char) # Output: 饖
Perl:
my $char = "\x{9956}";
print $char; # Output: 饖
PHP:
$char = "\x{9956}";
echo $char; // Output: 饖
Ruby:
char = "\u{9956}"
puts char # Output: 饖
Rust:
let c = '\u{9956}';
println!("{}", c); // Output: 饖
Go:
char := '\u9956'
fmt.Printf("%c\n", char) // Output: 饖
CSS:
/* CSS content property */
.element::before {
content: "\009956"; /* 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%A5%96
MD5:
017b2eb5ff9a459f223dc282074ce393
SHA1:
1f92baf11e683dae9f8d010ba5d53effaac664a2
Base64:
6aWW