C:
char c = '\u5816';
printf("%c\n", c); // Output: 堖
JavaScript:
const char = '\u5816';
console.log(char); // Output: 堖
Java:
char c = '\u5816';
System.out.println(c); // Output: 堖
JSON:
{"text": "\u5816"} // Value: 堖
Python:
char = '\u5816'
print(char) # Output: 堖
Perl:
my $char = "\x{5816}";
print $char; # Output: 堖
PHP:
$char = "\x{5816}";
echo $char; // Output: 堖
Ruby:
char = "\u{5816}"
puts char # Output: 堖
Rust:
let c = '\u{5816}';
println!("{}", c); // Output: 堖
Go:
char := '\u5816'
fmt.Printf("%c\n", char) // Output: 堖
CSS:
/* CSS content property */
.element::before {
content: "\005816"; /* 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%A0%96
MD5:
4f68079c66947eb38027684d2ec88f60
SHA1:
2338b1eb7e294342d9ec7f6d42a6d2db191e96ad
Base64:
5aCW