C:
char c = '\u5891';
printf("%c\n", c); // Output: 墑
JavaScript:
const char = '\u5891';
console.log(char); // Output: 墑
Java:
char c = '\u5891';
System.out.println(c); // Output: 墑
JSON:
{"text": "\u5891"} // Value: 墑
Python:
char = '\u5891'
print(char) # Output: 墑
Perl:
my $char = "\x{5891}";
print $char; # Output: 墑
PHP:
$char = "\x{5891}";
echo $char; // Output: 墑
Ruby:
char = "\u{5891}"
puts char # Output: 墑
Rust:
let c = '\u{5891}';
println!("{}", c); // Output: 墑
Go:
char := '\u5891'
fmt.Printf("%c\n", char) // Output: 墑
CSS:
/* CSS content property */
.element::before {
content: "\005891"; /* 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%A2%91
MD5:
391a48622a21bbc45121f862321a5bde
SHA1:
3f069ddf350d25b402f1ee7cb09acf4caf00d408
Base64:
5aKR