C:
char c = '\u5928';
printf("%c\n", c); // Output: 夨
JavaScript:
const char = '\u5928';
console.log(char); // Output: 夨
Java:
char c = '\u5928';
System.out.println(c); // Output: 夨
JSON:
{"text": "\u5928"} // Value: 夨
Python:
char = '\u5928'
print(char) # Output: 夨
Perl:
my $char = "\x{5928}";
print $char; # Output: 夨
PHP:
$char = "\x{5928}";
echo $char; // Output: 夨
Ruby:
char = "\u{5928}"
puts char # Output: 夨
Rust:
let c = '\u{5928}';
println!("{}", c); // Output: 夨
Go:
char := '\u5928'
fmt.Printf("%c\n", char) // Output: 夨
CSS:
/* CSS content property */
.element::before {
content: "\005928"; /* 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=%E5%A4%A8
MD5:
f78c8227fa0528b7e45d425e7f4be279
SHA1:
06e9313d0c4f2b1173b6aca36336ae8c1a10af83
Base64:
5aSo