C:
char c = '\u74DF';
printf("%c\n", c); // Output: 瓟
JavaScript:
const char = '\u74DF';
console.log(char); // Output: 瓟
Java:
char c = '\u74DF';
System.out.println(c); // Output: 瓟
JSON:
{"text": "\u74DF"} // Value: 瓟
Python:
char = '\u74DF'
print(char) # Output: 瓟
Perl:
my $char = "\x{74DF}";
print $char; # Output: 瓟
PHP:
$char = "\x{74DF}";
echo $char; // Output: 瓟
Ruby:
char = "\u{74DF}"
puts char # Output: 瓟
Rust:
let c = '\u{74DF}';
println!("{}", c); // Output: 瓟
Go:
char := '\u74DF'
fmt.Printf("%c\n", char) // Output: 瓟
CSS:
/* CSS content property */
.element::before {
content: "\0074DF"; /* 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%9F
MD5:
76f0e7550b7ce26df654bb85b8c1824d
SHA1:
d363914e77d81fe4c90af380381892bcd224c245
Base64:
55Of