C:
char c = '\u9704';
printf("%c\n", c); // Output: 霄
JavaScript:
const char = '\u9704';
console.log(char); // Output: 霄
Java:
char c = '\u9704';
System.out.println(c); // Output: 霄
JSON:
{"text": "\u9704"} // Value: 霄
Python:
char = '\u9704'
print(char) # Output: 霄
Perl:
my $char = "\x{9704}";
print $char; # Output: 霄
PHP:
$char = "\x{9704}";
echo $char; // Output: 霄
Ruby:
char = "\u{9704}"
puts char # Output: 霄
Rust:
let c = '\u{9704}';
println!("{}", c); // Output: 霄
Go:
char := '\u9704'
fmt.Printf("%c\n", char) // Output: 霄
CSS:
/* CSS content property */
.element::before {
content: "\009704"; /* 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%84
MD5:
23dd7ab974c003152bd326eb9f7c394e
SHA1:
27fcb4429ba3b5869dbc5da25754aa8140f96b9f
Base64:
6ZyE