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