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