C:
char c = '\u9729';
printf("%c\n", c); // Output: 霩
JavaScript:
const char = '\u9729';
console.log(char); // Output: 霩
Java:
char c = '\u9729';
System.out.println(c); // Output: 霩
JSON:
{"text": "\u9729"} // Value: 霩
Python:
char = '\u9729'
print(char) # Output: 霩
Perl:
my $char = "\x{9729}";
print $char; # Output: 霩
PHP:
$char = "\x{9729}";
echo $char; // Output: 霩
Ruby:
char = "\u{9729}"
puts char # Output: 霩
Rust:
let c = '\u{9729}';
println!("{}", c); // Output: 霩
Go:
char := '\u9729'
fmt.Printf("%c\n", char) // Output: 霩
CSS:
/* CSS content property */
.element::before {
content: "\009729"; /* 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%A9
MD5:
39a632c8decd7b3ff8383690491325fc
SHA1:
49ccb64e6a80eb6d804227e725a7d1ace9b0a952
Base64:
6Zyp