C:
char c = '\u9923';
printf("%c\n", c); // Output: 餣
JavaScript:
const char = '\u9923';
console.log(char); // Output: 餣
Java:
char c = '\u9923';
System.out.println(c); // Output: 餣
JSON:
{"text": "\u9923"} // Value: 餣
Python:
char = '\u9923'
print(char) # Output: 餣
Perl:
my $char = "\x{9923}";
print $char; # Output: 餣
PHP:
$char = "\x{9923}";
echo $char; // Output: 餣
Ruby:
char = "\u{9923}"
puts char # Output: 餣
Rust:
let c = '\u{9923}';
println!("{}", c); // Output: 餣
Go:
char := '\u9923'
fmt.Printf("%c\n", char) // Output: 餣
CSS:
/* CSS content property */
.element::before {
content: "\009923"; /* 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%A3
MD5:
90418ff101a71e0803b1e8830f6cd0f8
SHA1:
d1a0d446593d7896d83104c7b4340515afd8d442
Base64:
6aSj