C:
char c = '\u7724';
printf("%c\n", c); // Output: 眤
JavaScript:
const char = '\u7724';
console.log(char); // Output: 眤
Java:
char c = '\u7724';
System.out.println(c); // Output: 眤
JSON:
{"text": "\u7724"} // Value: 眤
Python:
char = '\u7724'
print(char) # Output: 眤
Perl:
my $char = "\x{7724}";
print $char; # Output: 眤
PHP:
$char = "\x{7724}";
echo $char; // Output: 眤
Ruby:
char = "\u{7724}"
puts char # Output: 眤
Rust:
let c = '\u{7724}';
println!("{}", c); // Output: 眤
Go:
char := '\u7724'
fmt.Printf("%c\n", char) // Output: 眤
CSS:
/* CSS content property */
.element::before {
content: "\007724"; /* 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%9C%A4
MD5:
437c15aa0b86ffa13f665e29f067d88d
SHA1:
b7e914ce14b1ed00348a78e74427cad1297f11b1
Base64:
55yk