C:
char c = '\u5806';
printf("%c\n", c); // Output: 堆
JavaScript:
const char = '\u5806';
console.log(char); // Output: 堆
Java:
char c = '\u5806';
System.out.println(c); // Output: 堆
JSON:
{"text": "\u5806"} // Value: 堆
Python:
char = '\u5806'
print(char) # Output: 堆
Perl:
my $char = "\x{5806}";
print $char; # Output: 堆
PHP:
$char = "\x{5806}";
echo $char; // Output: 堆
Ruby:
char = "\u{5806}"
puts char # Output: 堆
Rust:
let c = '\u{5806}';
println!("{}", c); // Output: 堆
Go:
char := '\u5806'
fmt.Printf("%c\n", char) // Output: 堆
CSS:
/* CSS content property */
.element::before {
content: "\005806"; /* 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%86
MD5:
8b1fa850914185f78f36fd9a8b716ba4
SHA1:
64cda87cdc827af95438f96efd33ba5d3310d079
Base64:
5aCG