C:
char c = '\u9724';
printf("%c\n", c); // Output: 霤
JavaScript:
const char = '\u9724';
console.log(char); // Output: 霤
Java:
char c = '\u9724';
System.out.println(c); // Output: 霤
JSON:
{"text": "\u9724"} // Value: 霤
Python:
char = '\u9724'
print(char) # Output: 霤
Perl:
my $char = "\x{9724}";
print $char; # Output: 霤
PHP:
$char = "\x{9724}";
echo $char; // Output: 霤
Ruby:
char = "\u{9724}"
puts char # Output: 霤
Rust:
let c = '\u{9724}';
println!("{}", c); // Output: 霤
Go:
char := '\u9724'
fmt.Printf("%c\n", char) // Output: 霤
CSS:
/* CSS content property */
.element::before {
content: "\009724"; /* 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%9C%A4
MD5:
1b7c69925f4b13a56cf21ca94fd8d899
SHA1:
59ef15e517771e1d81eea9332bbb2dae92c248e3
Base64:
6Zyk