C:
char c = '\u9701';
printf("%c\n", c); // Output: 霁
JavaScript:
const char = '\u9701';
console.log(char); // Output: 霁
Java:
char c = '\u9701';
System.out.println(c); // Output: 霁
JSON:
{"text": "\u9701"} // Value: 霁
Python:
char = '\u9701'
print(char) # Output: 霁
Perl:
my $char = "\x{9701}";
print $char; # Output: 霁
PHP:
$char = "\x{9701}";
echo $char; // Output: 霁
Ruby:
char = "\u{9701}"
puts char # Output: 霁
Rust:
let c = '\u{9701}';
println!("{}", c); // Output: 霁
Go:
char := '\u9701'
fmt.Printf("%c\n", char) // Output: 霁
CSS:
/* CSS content property */
.element::before {
content: "\009701"; /* 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%81
MD5:
ce88ed2921eb7220e2d95b309d56a05a
SHA1:
061cb30253f51c024414dcbdd4bc120d0ec64e92
Base64:
6ZyB