C:
char c = '\u7413';
printf("%c\n", c); // Output: 琓
JavaScript:
const char = '\u7413';
console.log(char); // Output: 琓
Java:
char c = '\u7413';
System.out.println(c); // Output: 琓
JSON:
{"text": "\u7413"} // Value: 琓
Python:
char = '\u7413'
print(char) # Output: 琓
Perl:
my $char = "\x{7413}";
print $char; # Output: 琓
PHP:
$char = "\x{7413}";
echo $char; // Output: 琓
Ruby:
char = "\u{7413}"
puts char # Output: 琓
Rust:
let c = '\u{7413}';
println!("{}", c); // Output: 琓
Go:
char := '\u7413'
fmt.Printf("%c\n", char) // Output: 琓
CSS:
/* CSS content property */
.element::before {
content: "\007413"; /* 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%93
MD5:
7ad70385c3f3ee4fdc2f50ae3a726a2d
SHA1:
6531a5de4e098828389328ee65498974e9456647
Base64:
55CT