C:
char c = '\u9711';
printf("%c\n", c); // Output: 霑
JavaScript:
const char = '\u9711';
console.log(char); // Output: 霑
Java:
char c = '\u9711';
System.out.println(c); // Output: 霑
JSON:
{"text": "\u9711"} // Value: 霑
Python:
char = '\u9711'
print(char) # Output: 霑
Perl:
my $char = "\x{9711}";
print $char; # Output: 霑
PHP:
$char = "\x{9711}";
echo $char; // Output: 霑
Ruby:
char = "\u{9711}"
puts char # Output: 霑
Rust:
let c = '\u{9711}';
println!("{}", c); // Output: 霑
Go:
char := '\u9711'
fmt.Printf("%c\n", char) // Output: 霑
CSS:
/* CSS content property */
.element::before {
content: "\009711"; /* 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%91
MD5:
143979a47d2d0f32a5013caa83fc310e
SHA1:
28be454629e46e9a6fb1331ca63678ff41b9bd1c
Base64:
6ZyR