C:
char c = '\u9922';
printf("%c\n", c); // Output: 餢
JavaScript:
const char = '\u9922';
console.log(char); // Output: 餢
Java:
char c = '\u9922';
System.out.println(c); // Output: 餢
JSON:
{"text": "\u9922"} // Value: 餢
Python:
char = '\u9922'
print(char) # Output: 餢
Perl:
my $char = "\x{9922}";
print $char; # Output: 餢
PHP:
$char = "\x{9922}";
echo $char; // Output: 餢
Ruby:
char = "\u{9922}"
puts char # Output: 餢
Rust:
let c = '\u{9922}';
println!("{}", c); // Output: 餢
Go:
char := '\u9922'
fmt.Printf("%c\n", char) // Output: 餢
CSS:
/* CSS content property */
.element::before {
content: "\009922"; /* 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%A4%A2
MD5:
f7fdc699514305861a422c348996e0c1
SHA1:
8e9c3f32cdf39b178e45c6cce22594844d8f7a92
Base64:
6aSi