C:
char c = '\u7414';
printf("%c\n", c); // Output: 琔
JavaScript:
const char = '\u7414';
console.log(char); // Output: 琔
Java:
char c = '\u7414';
System.out.println(c); // Output: 琔
JSON:
{"text": "\u7414"} // Value: 琔
Python:
char = '\u7414'
print(char) # Output: 琔
Perl:
my $char = "\x{7414}";
print $char; # Output: 琔
PHP:
$char = "\x{7414}";
echo $char; // Output: 琔
Ruby:
char = "\u{7414}"
puts char # Output: 琔
Rust:
let c = '\u{7414}';
println!("{}", c); // Output: 琔
Go:
char := '\u7414'
fmt.Printf("%c\n", char) // Output: 琔
CSS:
/* CSS content property */
.element::before {
content: "\007414"; /* 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%94
MD5:
676348b4b380a04bacc4bcc91ee7b9b0
SHA1:
697690ee0d81d07ad5a01bfb8afa813e0ae8f247
Base64:
55CU