C:
char c = '\u7703';
printf("%c\n", c); // Output: 眃
JavaScript:
const char = '\u7703';
console.log(char); // Output: 眃
Java:
char c = '\u7703';
System.out.println(c); // Output: 眃
JSON:
{"text": "\u7703"} // Value: 眃
Python:
char = '\u7703'
print(char) # Output: 眃
Perl:
my $char = "\x{7703}";
print $char; # Output: 眃
PHP:
$char = "\x{7703}";
echo $char; // Output: 眃
Ruby:
char = "\u{7703}"
puts char # Output: 眃
Rust:
let c = '\u{7703}';
println!("{}", c); // Output: 眃
Go:
char := '\u7703'
fmt.Printf("%c\n", char) // Output: 眃
CSS:
/* CSS content property */
.element::before {
content: "\007703"; /* 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%83
MD5:
76d75025fd1555f21a1e0008f2885548
SHA1:
123b437230964714a568bcc5ca3c92132ed0547b
Base64:
55yD