C:
char c = '\u5046';
printf("%c\n", c); // Output: 偆
JavaScript:
const char = '\u5046';
console.log(char); // Output: 偆
Java:
char c = '\u5046';
System.out.println(c); // Output: 偆
JSON:
{"text": "\u5046"} // Value: 偆
Python:
char = '\u5046'
print(char) # Output: 偆
Perl:
my $char = "\x{5046}";
print $char; # Output: 偆
PHP:
$char = "\x{5046}";
echo $char; // Output: 偆
Ruby:
char = "\u{5046}"
puts char # Output: 偆
Rust:
let c = '\u{5046}';
println!("{}", c); // Output: 偆
Go:
char := '\u5046'
fmt.Printf("%c\n", char) // Output: 偆
CSS:
/* CSS content property */
.element::before {
content: "\005046"; /* 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%81%86
MD5:
d29f1eb2f605e8c14c225bd26d26567a
SHA1:
890943e3c4bdd649ffdd41e745b4fe1cae9771eb
Base64:
5YGG