C:
char c = '\u4F24';
printf("%c\n", c); // Output: 伤
JavaScript:
const char = '\u4F24';
console.log(char); // Output: 伤
Java:
char c = '\u4F24';
System.out.println(c); // Output: 伤
JSON:
{"text": "\u4F24"} // Value: 伤
Python:
char = '\u4F24'
print(char) # Output: 伤
Perl:
my $char = "\x{4F24}";
print $char; # Output: 伤
PHP:
$char = "\x{4F24}";
echo $char; // Output: 伤
Ruby:
char = "\u{4F24}"
puts char # Output: 伤
Rust:
let c = '\u{4F24}';
println!("{}", c); // Output: 伤
Go:
char := '\u4F24'
fmt.Printf("%c\n", char) // Output: 伤
CSS:
/* CSS content property */
.element::before {
content: "\004F24"; /* 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=%E4%BC%A4
MD5:
08d7e824629d9ae6fe1d9f1661fcf175
SHA1:
19a8803c06ad38a7ec3a799275a08f7d3d37d24f
Base64:
5Lyk