C:
char c = '\u5827';
printf("%c\n", c); // Output: 堧
JavaScript:
const char = '\u5827';
console.log(char); // Output: 堧
Java:
char c = '\u5827';
System.out.println(c); // Output: 堧
JSON:
{"text": "\u5827"} // Value: 堧
Python:
char = '\u5827'
print(char) # Output: 堧
Perl:
my $char = "\x{5827}";
print $char; # Output: 堧
PHP:
$char = "\x{5827}";
echo $char; // Output: 堧
Ruby:
char = "\u{5827}"
puts char # Output: 堧
Rust:
let c = '\u{5827}';
println!("{}", c); // Output: 堧
Go:
char := '\u5827'
fmt.Printf("%c\n", char) // Output: 堧
CSS:
/* CSS content property */
.element::before {
content: "\005827"; /* 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%A7
MD5:
3c95dc582fb23f05ba999c87f799b1b9
SHA1:
ae43079978e86d0b3cc6a9c4d28348e4ed44bd16
Base64:
5aCn