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