C:
char c = '\u5888';
printf("%c\n", c); // Output: 墈
JavaScript:
const char = '\u5888';
console.log(char); // Output: 墈
Java:
char c = '\u5888';
System.out.println(c); // Output: 墈
JSON:
{"text": "\u5888"} // Value: 墈
Python:
char = '\u5888'
print(char) # Output: 墈
Perl:
my $char = "\x{5888}";
print $char; # Output: 墈
PHP:
$char = "\x{5888}";
echo $char; // Output: 墈
Ruby:
char = "\u{5888}"
puts char # Output: 墈
Rust:
let c = '\u{5888}';
println!("{}", c); // Output: 墈
Go:
char := '\u5888'
fmt.Printf("%c\n", char) // Output: 墈
CSS:
/* CSS content property */
.element::before {
content: "\005888"; /* 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%88
MD5:
a11a4d451cbe739a1fe127dcb6a98df8
SHA1:
35dbd333544cd77e5d4d0605e9b088081d5a6c25
Base64:
5aKI