C:
char c = '\u9705';
printf("%c\n", c); // Output: 霅
JavaScript:
const char = '\u9705';
console.log(char); // Output: 霅
Java:
char c = '\u9705';
System.out.println(c); // Output: 霅
JSON:
{"text": "\u9705"} // Value: 霅
Python:
char = '\u9705'
print(char) # Output: 霅
Perl:
my $char = "\x{9705}";
print $char; # Output: 霅
PHP:
$char = "\x{9705}";
echo $char; // Output: 霅
Ruby:
char = "\u{9705}"
puts char # Output: 霅
Rust:
let c = '\u{9705}';
println!("{}", c); // Output: 霅
Go:
char := '\u9705'
fmt.Printf("%c\n", char) // Output: 霅
CSS:
/* CSS content property */
.element::before {
content: "\009705"; /* 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%85
MD5:
fe0f706274fabdbfd9df7baab9b4cf88
SHA1:
0e3573fc05e08a66e359d349258e5b7263c6cc9b
Base64:
6ZyF