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