C:
char c = '\u7429';
printf("%c\n", c); // Output: 琩
JavaScript:
const char = '\u7429';
console.log(char); // Output: 琩
Java:
char c = '\u7429';
System.out.println(c); // Output: 琩
JSON:
{"text": "\u7429"} // Value: 琩
Python:
char = '\u7429'
print(char) # Output: 琩
Perl:
my $char = "\x{7429}";
print $char; # Output: 琩
PHP:
$char = "\x{7429}";
echo $char; // Output: 琩
Ruby:
char = "\u{7429}"
puts char # Output: 琩
Rust:
let c = '\u{7429}';
println!("{}", c); // Output: 琩
Go:
char := '\u7429'
fmt.Printf("%c\n", char) // Output: 琩
CSS:
/* CSS content property */
.element::before {
content: "\007429"; /* 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%A9
MD5:
ad0ae955db391df790897ed4dd6220d1
SHA1:
5481a368df3df53a0547b810e425705669d6c060
Base64:
55Cp