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