C:
char c = '\u9927';
printf("%c\n", c); // Output: 餧
JavaScript:
const char = '\u9927';
console.log(char); // Output: 餧
Java:
char c = '\u9927';
System.out.println(c); // Output: 餧
JSON:
{"text": "\u9927"} // Value: 餧
Python:
char = '\u9927'
print(char) # Output: 餧
Perl:
my $char = "\x{9927}";
print $char; # Output: 餧
PHP:
$char = "\x{9927}";
echo $char; // Output: 餧
Ruby:
char = "\u{9927}"
puts char # Output: 餧
Rust:
let c = '\u{9927}';
println!("{}", c); // Output: 餧
Go:
char := '\u9927'
fmt.Printf("%c\n", char) // Output: 餧
CSS:
/* CSS content property */
.element::before {
content: "\009927"; /* 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%A7
MD5:
d3d6c3d4b786f8f74481f3991e762747
SHA1:
cd232dd946d1cf59efc5f182291561be2143b5d0
Base64:
6aSn