C:
char c = '\u74CC';
printf("%c\n", c); // Output: 瓌
JavaScript:
const char = '\u74CC';
console.log(char); // Output: 瓌
Java:
char c = '\u74CC';
System.out.println(c); // Output: 瓌
JSON:
{"text": "\u74CC"} // Value: 瓌
Python:
char = '\u74CC'
print(char) # Output: 瓌
Perl:
my $char = "\x{74CC}";
print $char; # Output: 瓌
PHP:
$char = "\x{74CC}";
echo $char; // Output: 瓌
Ruby:
char = "\u{74CC}"
puts char # Output: 瓌
Rust:
let c = '\u{74CC}';
println!("{}", c); // Output: 瓌
Go:
char := '\u74CC'
fmt.Printf("%c\n", char) // Output: 瓌
CSS:
/* CSS content property */
.element::before {
content: "\0074CC"; /* 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%93%8C
MD5:
2506cd369c7d68dc7d959f29f757175c
SHA1:
8923d20a399603d55d58242f7150d6a73edcd4f5
Base64:
55OM