C:
char c = '\u9954';
printf("%c\n", c); // Output: 饔
JavaScript:
const char = '\u9954';
console.log(char); // Output: 饔
Java:
char c = '\u9954';
System.out.println(c); // Output: 饔
JSON:
{"text": "\u9954"} // Value: 饔
Python:
char = '\u9954'
print(char) # Output: 饔
Perl:
my $char = "\x{9954}";
print $char; # Output: 饔
PHP:
$char = "\x{9954}";
echo $char; // Output: 饔
Ruby:
char = "\u{9954}"
puts char # Output: 饔
Rust:
let c = '\u{9954}';
println!("{}", c); // Output: 饔
Go:
char := '\u9954'
fmt.Printf("%c\n", char) // Output: 饔
CSS:
/* CSS content property */
.element::before {
content: "\009954"; /* 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%94
MD5:
b891d497f9ac4ac16b645ab09343669f
SHA1:
34294de0c787a701f403df2e443067c17200741e
Base64:
6aWU