C:
char c = '\u9702';
printf("%c\n", c); // Output: 霂
JavaScript:
const char = '\u9702';
console.log(char); // Output: 霂
Java:
char c = '\u9702';
System.out.println(c); // Output: 霂
JSON:
{"text": "\u9702"} // Value: 霂
Python:
char = '\u9702'
print(char) # Output: 霂
Perl:
my $char = "\x{9702}";
print $char; # Output: 霂
PHP:
$char = "\x{9702}";
echo $char; // Output: 霂
Ruby:
char = "\u{9702}"
puts char # Output: 霂
Rust:
let c = '\u{9702}';
println!("{}", c); // Output: 霂
Go:
char := '\u9702'
fmt.Printf("%c\n", char) // Output: 霂
CSS:
/* CSS content property */
.element::before {
content: "\009702"; /* 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%82
MD5:
1ee97c4badbb00036c81022b4052f079
SHA1:
bd44b21d363ea473b1fdd62a23983ab1eddd20f5
Base64:
6ZyC