C:
char c = '\u5911';
printf("%c\n", c); // Output: 夑
JavaScript:
const char = '\u5911';
console.log(char); // Output: 夑
Java:
char c = '\u5911';
System.out.println(c); // Output: 夑
JSON:
{"text": "\u5911"} // Value: 夑
Python:
char = '\u5911'
print(char) # Output: 夑
Perl:
my $char = "\x{5911}";
print $char; # Output: 夑
PHP:
$char = "\x{5911}";
echo $char; // Output: 夑
Ruby:
char = "\u{5911}"
puts char # Output: 夑
Rust:
let c = '\u{5911}';
println!("{}", c); // Output: 夑
Go:
char := '\u5911'
fmt.Printf("%c\n", char) // Output: 夑
CSS:
/* CSS content property */
.element::before {
content: "\005911"; /* 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%91
MD5:
2ab280df2c316efd6db8c38061e2ef9c
SHA1:
2896deda5de94b722e83c2b5fde2fdcd54ed3042
Base64:
5aSR