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