C:
char c = '\u7049';
printf("%c\n", c); // Output: 灉
JavaScript:
const char = '\u7049';
console.log(char); // Output: 灉
Java:
char c = '\u7049';
System.out.println(c); // Output: 灉
JSON:
{"text": "\u7049"} // Value: 灉
Python:
char = '\u7049'
print(char) # Output: 灉
Perl:
my $char = "\x{7049}";
print $char; # Output: 灉
PHP:
$char = "\x{7049}";
echo $char; // Output: 灉
Ruby:
char = "\u{7049}"
puts char # Output: 灉
Rust:
let c = '\u{7049}';
println!("{}", c); // Output: 灉
Go:
char := '\u7049'
fmt.Printf("%c\n", char) // Output: 灉
CSS:
/* CSS content property */
.element::before {
content: "\007049"; /* 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%89
MD5:
20ee4dba4742668076bc1749a658504f
SHA1:
ec6e359053a60a2c6572cf0764a500f1b9a7d99b
Base64:
54GJ