C:
char c = '\u5889';
printf("%c\n", c); // Output: 墉
JavaScript:
const char = '\u5889';
console.log(char); // Output: 墉
Java:
char c = '\u5889';
System.out.println(c); // Output: 墉
JSON:
{"text": "\u5889"} // Value: 墉
Python:
char = '\u5889'
print(char) # Output: 墉
Perl:
my $char = "\x{5889}";
print $char; # Output: 墉
PHP:
$char = "\x{5889}";
echo $char; // Output: 墉
Ruby:
char = "\u{5889}"
puts char # Output: 墉
Rust:
let c = '\u{5889}';
println!("{}", c); // Output: 墉
Go:
char := '\u5889'
fmt.Printf("%c\n", char) // Output: 墉
CSS:
/* CSS content property */
.element::before {
content: "\005889"; /* 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%A2%89
MD5:
3895efb97cf492334c192ef035c61c64
SHA1:
01233373ffef944671de0768b177fdfcf8c3f721
Base64:
5aKJ