C:
char c = '\u5825';
printf("%c\n", c); // Output: 堥
JavaScript:
const char = '\u5825';
console.log(char); // Output: 堥
Java:
char c = '\u5825';
System.out.println(c); // Output: 堥
JSON:
{"text": "\u5825"} // Value: 堥
Python:
char = '\u5825'
print(char) # Output: 堥
Perl:
my $char = "\x{5825}";
print $char; # Output: 堥
PHP:
$char = "\x{5825}";
echo $char; // Output: 堥
Ruby:
char = "\u{5825}"
puts char # Output: 堥
Rust:
let c = '\u{5825}';
println!("{}", c); // Output: 堥
Go:
char := '\u5825'
fmt.Printf("%c\n", char) // Output: 堥
CSS:
/* CSS content property */
.element::before {
content: "\005825"; /* 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%A5
MD5:
3af0ccdb258e7c4663c7f5239bdd36ef
SHA1:
a4fd94e8bfe448d6c17df65b902c3b0cf827c88a
Base64:
5aCl