C:
char c = '\u5828';
printf("%c\n", c); // Output: 堨
JavaScript:
const char = '\u5828';
console.log(char); // Output: 堨
Java:
char c = '\u5828';
System.out.println(c); // Output: 堨
JSON:
{"text": "\u5828"} // Value: 堨
Python:
char = '\u5828'
print(char) # Output: 堨
Perl:
my $char = "\x{5828}";
print $char; # Output: 堨
PHP:
$char = "\x{5828}";
echo $char; // Output: 堨
Ruby:
char = "\u{5828}"
puts char # Output: 堨
Rust:
let c = '\u{5828}';
println!("{}", c); // Output: 堨
Go:
char := '\u5828'
fmt.Printf("%c\n", char) // Output: 堨
CSS:
/* CSS content property */
.element::before {
content: "\005828"; /* 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%A8
MD5:
4f571bf2d5125c7e9cb953480cf27037
SHA1:
64c06741beb9e66c5611571775187050064aeba8
Base64:
5aCo