C:
char c = '\u9720';
printf("%c\n", c); // Output: 霠
JavaScript:
const char = '\u9720';
console.log(char); // Output: 霠
Java:
char c = '\u9720';
System.out.println(c); // Output: 霠
JSON:
{"text": "\u9720"} // Value: 霠
Python:
char = '\u9720'
print(char) # Output: 霠
Perl:
my $char = "\x{9720}";
print $char; # Output: 霠
PHP:
$char = "\x{9720}";
echo $char; // Output: 霠
Ruby:
char = "\u{9720}"
puts char # Output: 霠
Rust:
let c = '\u{9720}';
println!("{}", c); // Output: 霠
Go:
char := '\u9720'
fmt.Printf("%c\n", char) // Output: 霠
CSS:
/* CSS content property */
.element::before {
content: "\009720"; /* 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%A0
MD5:
b7653c4ecbdcae778a7e4467b1e30fee
SHA1:
d4e1756cde728ed08b06d2a760b5111c2b15ea3c
Base64:
6Zyg