C:
char c = '\u9926';
printf("%c\n", c); // Output: 餦
JavaScript:
const char = '\u9926';
console.log(char); // Output: 餦
Java:
char c = '\u9926';
System.out.println(c); // Output: 餦
JSON:
{"text": "\u9926"} // Value: 餦
Python:
char = '\u9926'
print(char) # Output: 餦
Perl:
my $char = "\x{9926}";
print $char; # Output: 餦
PHP:
$char = "\x{9926}";
echo $char; // Output: 餦
Ruby:
char = "\u{9926}"
puts char # Output: 餦
Rust:
let c = '\u{9926}';
println!("{}", c); // Output: 餦
Go:
char := '\u9926'
fmt.Printf("%c\n", char) // Output: 餦
CSS:
/* CSS content property */
.element::before {
content: "\009926"; /* 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%A6
MD5:
1a45e5bb50708bcf49fecbe88c4acc2f
SHA1:
7f90cbbb409295c066ecd13f20df24fbafa3e27b
Base64:
6aSm