C:
char c = '\u7040';
printf("%c\n", c); // Output: 灀
JavaScript:
const char = '\u7040';
console.log(char); // Output: 灀
Java:
char c = '\u7040';
System.out.println(c); // Output: 灀
JSON:
{"text": "\u7040"} // Value: 灀
Python:
char = '\u7040'
print(char) # Output: 灀
Perl:
my $char = "\x{7040}";
print $char; # Output: 灀
PHP:
$char = "\x{7040}";
echo $char; // Output: 灀
Ruby:
char = "\u{7040}"
puts char # Output: 灀
Rust:
let c = '\u{7040}';
println!("{}", c); // Output: 灀
Go:
char := '\u7040'
fmt.Printf("%c\n", char) // Output: 灀
CSS:
/* CSS content property */
.element::before {
content: "\007040"; /* 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=%E7%81%80
MD5:
76285e7084cfb1e751975841aeba0cd3
SHA1:
169ccf9ee89df809766053320fc73e16b8debe7b
Base64:
54GA