C:
char c = '\u5829';
printf("%c\n", c); // Output: 堩
JavaScript:
const char = '\u5829';
console.log(char); // Output: 堩
Java:
char c = '\u5829';
System.out.println(c); // Output: 堩
JSON:
{"text": "\u5829"} // Value: 堩
Python:
char = '\u5829'
print(char) # Output: 堩
Perl:
my $char = "\x{5829}";
print $char; # Output: 堩
PHP:
$char = "\x{5829}";
echo $char; // Output: 堩
Ruby:
char = "\u{5829}"
puts char # Output: 堩
Rust:
let c = '\u{5829}';
println!("{}", c); // Output: 堩
Go:
char := '\u5829'
fmt.Printf("%c\n", char) // Output: 堩
CSS:
/* CSS content property */
.element::before {
content: "\005829"; /* 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%A9
MD5:
17003b078060988fdfb20d6e960ccc3b
SHA1:
9078cc6cfb64fc6372b22c6a8e2e1bb6d14a1318
Base64:
5aCp