C:
char c = '\u9716';
printf("%c\n", c); // Output: 霖
JavaScript:
const char = '\u9716';
console.log(char); // Output: 霖
Java:
char c = '\u9716';
System.out.println(c); // Output: 霖
JSON:
{"text": "\u9716"} // Value: 霖
Python:
char = '\u9716'
print(char) # Output: 霖
Perl:
my $char = "\x{9716}";
print $char; # Output: 霖
PHP:
$char = "\x{9716}";
echo $char; // Output: 霖
Ruby:
char = "\u{9716}"
puts char # Output: 霖
Rust:
let c = '\u{9716}';
println!("{}", c); // Output: 霖
Go:
char := '\u9716'
fmt.Printf("%c\n", char) // Output: 霖
CSS:
/* CSS content property */
.element::before {
content: "\009716"; /* 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%96
MD5:
9272e0dcde25e9e1a2e8ba7d94761fd3
SHA1:
d3bcc424512045726efec80ce62dbab6cf830268
Base64:
6ZyW