C:
char c = '\u7714';
printf("%c\n", c); // Output: 眔
JavaScript:
const char = '\u7714';
console.log(char); // Output: 眔
Java:
char c = '\u7714';
System.out.println(c); // Output: 眔
JSON:
{"text": "\u7714"} // Value: 眔
Python:
char = '\u7714'
print(char) # Output: 眔
Perl:
my $char = "\x{7714}";
print $char; # Output: 眔
PHP:
$char = "\x{7714}";
echo $char; // Output: 眔
Ruby:
char = "\u{7714}"
puts char # Output: 眔
Rust:
let c = '\u{7714}';
println!("{}", c); // Output: 眔
Go:
char := '\u7714'
fmt.Printf("%c\n", char) // Output: 眔
CSS:
/* CSS content property */
.element::before {
content: "\007714"; /* 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%94
MD5:
e7c42c797c508fef8159c6148da90241
SHA1:
db7beeaf8838f73c0d1bf569c4b8c581c145d053
Base64:
55yU