C:
char c = '\u9024';
printf("%c\n", c); // Output: 逤
JavaScript:
const char = '\u9024';
console.log(char); // Output: 逤
Java:
char c = '\u9024';
System.out.println(c); // Output: 逤
JSON:
{"text": "\u9024"} // Value: 逤
Python:
char = '\u9024'
print(char) # Output: 逤
Perl:
my $char = "\x{9024}";
print $char; # Output: 逤
PHP:
$char = "\x{9024}";
echo $char; // Output: 逤
Ruby:
char = "\u{9024}"
puts char # Output: 逤
Rust:
let c = '\u{9024}';
println!("{}", c); // Output: 逤
Go:
char := '\u9024'
fmt.Printf("%c\n", char) // Output: 逤
CSS:
/* CSS content property */
.element::before {
content: "\009024"; /* 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=%E9%80%A4
MD5:
36fb853e3ed42017f35f0c2e8c5fc12e
SHA1:
24fa9a1116b39c5c33df667649bc443ccec4d5ae
Base64:
6YCk