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