C:
char c = '\u5814';
printf("%c\n", c); // Output: 堔
JavaScript:
const char = '\u5814';
console.log(char); // Output: 堔
Java:
char c = '\u5814';
System.out.println(c); // Output: 堔
JSON:
{"text": "\u5814"} // Value: 堔
Python:
char = '\u5814'
print(char) # Output: 堔
Perl:
my $char = "\x{5814}";
print $char; # Output: 堔
PHP:
$char = "\x{5814}";
echo $char; // Output: 堔
Ruby:
char = "\u{5814}"
puts char # Output: 堔
Rust:
let c = '\u{5814}';
println!("{}", c); // Output: 堔
Go:
char := '\u5814'
fmt.Printf("%c\n", char) // Output: 堔
CSS:
/* CSS content property */
.element::before {
content: "\005814"; /* 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%94
MD5:
348355c539193b9cdfefbcded0934177
SHA1:
cb101b525d0e4947c9251ed75fa4f070bf0573fe
Base64:
5aCU