C:
char c = '\u7224';
printf("%c\n", c); // Output: 爤
JavaScript:
const char = '\u7224';
console.log(char); // Output: 爤
Java:
char c = '\u7224';
System.out.println(c); // Output: 爤
JSON:
{"text": "\u7224"} // Value: 爤
Python:
char = '\u7224'
print(char) # Output: 爤
Perl:
my $char = "\x{7224}";
print $char; # Output: 爤
PHP:
$char = "\x{7224}";
echo $char; // Output: 爤
Ruby:
char = "\u{7224}"
puts char # Output: 爤
Rust:
let c = '\u{7224}';
println!("{}", c); // Output: 爤
Go:
char := '\u7224'
fmt.Printf("%c\n", char) // Output: 爤
CSS:
/* CSS content property */
.element::before {
content: "\007224"; /* 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=%E7%88%A4
MD5:
cf6f11653d9e2ff0456801eccedbad41
SHA1:
7f320bb4995c7814a7f35a5b6d1449ea4bdf385e
Base64:
54ik