C:
char c = '\u9224';
printf("%c\n", c); // Output: 鈤
JavaScript:
const char = '\u9224';
console.log(char); // Output: 鈤
Java:
char c = '\u9224';
System.out.println(c); // Output: 鈤
JSON:
{"text": "\u9224"} // Value: 鈤
Python:
char = '\u9224'
print(char) # Output: 鈤
Perl:
my $char = "\x{9224}";
print $char; # Output: 鈤
PHP:
$char = "\x{9224}";
echo $char; // Output: 鈤
Ruby:
char = "\u{9224}"
puts char # Output: 鈤
Rust:
let c = '\u{9224}';
println!("{}", c); // Output: 鈤
Go:
char := '\u9224'
fmt.Printf("%c\n", char) // Output: 鈤
CSS:
/* CSS content property */
.element::before {
content: "\009224"; /* 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%88%A4
MD5:
e069fdd12a60164a4e6ed80e22f7353e
SHA1:
06fecac4d1e4c288c1e213b7e754a20e97dcf3f2
Base64:
6Yik