C:
char c = '\u9942';
printf("%c\n", c); // Output: 饂
JavaScript:
const char = '\u9942';
console.log(char); // Output: 饂
Java:
char c = '\u9942';
System.out.println(c); // Output: 饂
JSON:
{"text": "\u9942"} // Value: 饂
Python:
char = '\u9942'
print(char) # Output: 饂
Perl:
my $char = "\x{9942}";
print $char; # Output: 饂
PHP:
$char = "\x{9942}";
echo $char; // Output: 饂
Ruby:
char = "\u{9942}"
puts char # Output: 饂
Rust:
let c = '\u{9942}';
println!("{}", c); // Output: 饂
Go:
char := '\u9942'
fmt.Printf("%c\n", char) // Output: 饂
CSS:
/* CSS content property */
.element::before {
content: "\009942"; /* 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%82
MD5:
43b20dea88ffd57fb772cf1c5a9a7d3d
SHA1:
bcc7f5cdb37284c6323784947e8d1fe58a02f550
Base64:
6aWC