C:
char c = '\u5882';
printf("%c\n", c); // Output: 墂
JavaScript:
const char = '\u5882';
console.log(char); // Output: 墂
Java:
char c = '\u5882';
System.out.println(c); // Output: 墂
JSON:
{"text": "\u5882"} // Value: 墂
Python:
char = '\u5882'
print(char) # Output: 墂
Perl:
my $char = "\x{5882}";
print $char; # Output: 墂
PHP:
$char = "\x{5882}";
echo $char; // Output: 墂
Ruby:
char = "\u{5882}"
puts char # Output: 墂
Rust:
let c = '\u{5882}';
println!("{}", c); // Output: 墂
Go:
char := '\u5882'
fmt.Printf("%c\n", char) // Output: 墂
CSS:
/* CSS content property */
.element::before {
content: "\005882"; /* 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%82
MD5:
72ebc5365f690c18a6035214758809ef
SHA1:
fd6ca8438d61d4a8114b10593bc5eee21e230859
Base64:
5aKC