C:
char c = '\u5147';
printf("%c\n", c); // Output: 兇
JavaScript:
const char = '\u5147';
console.log(char); // Output: 兇
Java:
char c = '\u5147';
System.out.println(c); // Output: 兇
JSON:
{"text": "\u5147"} // Value: 兇
Python:
char = '\u5147'
print(char) # Output: 兇
Perl:
my $char = "\x{5147}";
print $char; # Output: 兇
PHP:
$char = "\x{5147}";
echo $char; // Output: 兇
Ruby:
char = "\u{5147}"
puts char # Output: 兇
Rust:
let c = '\u{5147}';
println!("{}", c); // Output: 兇
Go:
char := '\u5147'
fmt.Printf("%c\n", char) // Output: 兇
CSS:
/* CSS content property */
.element::before {
content: "\005147"; /* 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%85%87
MD5:
98acf11d484329f15b08ec2a6e6c8066
SHA1:
c91c452906f7a8c43727d81d8e4ebe13c7a884e2
Base64:
5YWH