C:
char c = '\u6048';
printf("%c\n", c); // Output: 恈
JavaScript:
const char = '\u6048';
console.log(char); // Output: 恈
Java:
char c = '\u6048';
System.out.println(c); // Output: 恈
JSON:
{"text": "\u6048"} // Value: 恈
Python:
char = '\u6048'
print(char) # Output: 恈
Perl:
my $char = "\x{6048}";
print $char; # Output: 恈
PHP:
$char = "\x{6048}";
echo $char; // Output: 恈
Ruby:
char = "\u{6048}"
puts char # Output: 恈
Rust:
let c = '\u{6048}';
println!("{}", c); // Output: 恈
Go:
char := '\u6048'
fmt.Printf("%c\n", char) // Output: 恈
CSS:
/* CSS content property */
.element::before {
content: "\006048"; /* 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=%E6%81%88
MD5:
bcd44b9d0c3c9fa749be8e5e27ceb7a4
SHA1:
77179d8ea53df504236adba209c44024204e8d23
Base64:
5oGI