C:
char c = '\u9958';
printf("%c\n", c); // Output: 饘
JavaScript:
const char = '\u9958';
console.log(char); // Output: 饘
Java:
char c = '\u9958';
System.out.println(c); // Output: 饘
JSON:
{"text": "\u9958"} // Value: 饘
Python:
char = '\u9958'
print(char) # Output: 饘
Perl:
my $char = "\x{9958}";
print $char; # Output: 饘
PHP:
$char = "\x{9958}";
echo $char; // Output: 饘
Ruby:
char = "\u{9958}"
puts char # Output: 饘
Rust:
let c = '\u{9958}';
println!("{}", c); // Output: 饘
Go:
char := '\u9958'
fmt.Printf("%c\n", char) // Output: 饘
CSS:
/* CSS content property */
.element::before {
content: "\009958"; /* 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%98
MD5:
bb2c7141af55bca23252afbb47dfe931
SHA1:
785fd91a2f2818e32dedfdf62a17731ce5d209c3
Base64:
6aWY