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