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