C:
char c = '\u5810';
printf("%c\n", c); // Output: 堐
JavaScript:
const char = '\u5810';
console.log(char); // Output: 堐
Java:
char c = '\u5810';
System.out.println(c); // Output: 堐
JSON:
{"text": "\u5810"} // Value: 堐
Python:
char = '\u5810'
print(char) # Output: 堐
Perl:
my $char = "\x{5810}";
print $char; # Output: 堐
PHP:
$char = "\x{5810}";
echo $char; // Output: 堐
Ruby:
char = "\u{5810}"
puts char # Output: 堐
Rust:
let c = '\u{5810}';
println!("{}", c); // Output: 堐
Go:
char := '\u5810'
fmt.Printf("%c\n", char) // Output: 堐
CSS:
/* CSS content property */
.element::before {
content: "\005810"; /* 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%90
MD5:
78631f12788e50759a93ced058fa4f59
SHA1:
c60ffade645a2bdb20eed6da6a44e02c6ee91d68
Base64:
5aCQ