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