C:
char c = '\u581D';
printf("%c\n", c); // Output: 堝
JavaScript:
const char = '\u581D';
console.log(char); // Output: 堝
Java:
char c = '\u581D';
System.out.println(c); // Output: 堝
JSON:
{"text": "\u581D"} // Value: 堝
Python:
char = '\u581D'
print(char) # Output: 堝
Perl:
my $char = "\x{581D}";
print $char; # Output: 堝
PHP:
$char = "\x{581D}";
echo $char; // Output: 堝
Ruby:
char = "\u{581D}"
puts char # Output: 堝
Rust:
let c = '\u{581D}';
println!("{}", c); // Output: 堝
Go:
char := '\u581D'
fmt.Printf("%c\n", char) // Output: 堝
CSS:
/* CSS content property */
.element::before {
content: "\00581D"; /* 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%9D
MD5:
8c847a79f5e889cdde0d1d85ae2f4c92
SHA1:
2b906fac3bf8b562205d2eced69fad0f4ecb530a
Base64:
5aCd