C:
char c = '\u7421';
printf("%c\n", c); // Output: 琡
JavaScript:
const char = '\u7421';
console.log(char); // Output: 琡
Java:
char c = '\u7421';
System.out.println(c); // Output: 琡
JSON:
{"text": "\u7421"} // Value: 琡
Python:
char = '\u7421'
print(char) # Output: 琡
Perl:
my $char = "\x{7421}";
print $char; # Output: 琡
PHP:
$char = "\x{7421}";
echo $char; // Output: 琡
Ruby:
char = "\u{7421}"
puts char # Output: 琡
Rust:
let c = '\u{7421}';
println!("{}", c); // Output: 琡
Go:
char := '\u7421'
fmt.Printf("%c\n", char) // Output: 琡
CSS:
/* CSS content property */
.element::before {
content: "\007421"; /* 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%A1
MD5:
2a0f2ad49e0445939f8e0d0615dc0218
SHA1:
d376cd310a22fbbd542512993086349dfd6ec57f
Base64:
55Ch