C:
char c = '\u7434';
printf("%c\n", c); // Output: 琴
JavaScript:
const char = '\u7434';
console.log(char); // Output: 琴
Java:
char c = '\u7434';
System.out.println(c); // Output: 琴
JSON:
{"text": "\u7434"} // Value: 琴
Python:
char = '\u7434'
print(char) # Output: 琴
Perl:
my $char = "\x{7434}";
print $char; # Output: 琴
PHP:
$char = "\x{7434}";
echo $char; // Output: 琴
Ruby:
char = "\u{7434}"
puts char # Output: 琴
Rust:
let c = '\u{7434}';
println!("{}", c); // Output: 琴
Go:
char := '\u7434'
fmt.Printf("%c\n", char) // Output: 琴
CSS:
/* CSS content property */
.element::before {
content: "\007434"; /* 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%B4
MD5:
bde383b7559dcd7a236d1e4d0fb926d6
SHA1:
aef8cdec9f70ed0490de7c795362a8c56671b066
Base64:
55C0