C:
char c = '\u972D';
printf("%c\n", c); // Output: 霭
JavaScript:
const char = '\u972D';
console.log(char); // Output: 霭
Java:
char c = '\u972D';
System.out.println(c); // Output: 霭
JSON:
{"text": "\u972D"} // Value: 霭
Python:
char = '\u972D'
print(char) # Output: 霭
Perl:
my $char = "\x{972D}";
print $char; # Output: 霭
PHP:
$char = "\x{972D}";
echo $char; // Output: 霭
Ruby:
char = "\u{972D}"
puts char # Output: 霭
Rust:
let c = '\u{972D}';
println!("{}", c); // Output: 霭
Go:
char := '\u972D'
fmt.Printf("%c\n", char) // Output: 霭
CSS:
/* CSS content property */
.element::before {
content: "\00972D"; /* 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%AD
MD5:
50ad2d45b84df918e669194606297913
SHA1:
7e36b14817bf33a7e51b58ca715333976034aec5
Base64:
6Zyt