C:
char c = '\u7609';
printf("%c\n", c); // Output: 瘉
JavaScript:
const char = '\u7609';
console.log(char); // Output: 瘉
Java:
char c = '\u7609';
System.out.println(c); // Output: 瘉
JSON:
{"text": "\u7609"} // Value: 瘉
Python:
char = '\u7609'
print(char) # Output: 瘉
Perl:
my $char = "\x{7609}";
print $char; # Output: 瘉
PHP:
$char = "\x{7609}";
echo $char; // Output: 瘉
Ruby:
char = "\u{7609}"
puts char # Output: 瘉
Rust:
let c = '\u{7609}';
println!("{}", c); // Output: 瘉
Go:
char := '\u7609'
fmt.Printf("%c\n", char) // Output: 瘉
CSS:
/* CSS content property */
.element::before {
content: "\007609"; /* 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%98%89
MD5:
69a4a47ccad408853fce7ee3fe92d181
SHA1:
9a2d4d6ec5eb5ed80edec586f1857dfc0afe1176
Base64:
55iJ