C:
char c = '\u5804';
printf("%c\n", c); // Output: 堄
JavaScript:
const char = '\u5804';
console.log(char); // Output: 堄
Java:
char c = '\u5804';
System.out.println(c); // Output: 堄
JSON:
{"text": "\u5804"} // Value: 堄
Python:
char = '\u5804'
print(char) # Output: 堄
Perl:
my $char = "\x{5804}";
print $char; # Output: 堄
PHP:
$char = "\x{5804}";
echo $char; // Output: 堄
Ruby:
char = "\u{5804}"
puts char # Output: 堄
Rust:
let c = '\u{5804}';
println!("{}", c); // Output: 堄
Go:
char := '\u5804'
fmt.Printf("%c\n", char) // Output: 堄
CSS:
/* CSS content property */
.element::before {
content: "\005804"; /* 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%84
MD5:
db8aa8ff618c970e1423b9831886c9d1
SHA1:
c7a37439aa104cb5d2539ff5ed5ad415d5feb613
Base64:
5aCE