C:
char c = '\u743A';
printf("%c\n", c); // Output: 琺
JavaScript:
const char = '\u743A';
console.log(char); // Output: 琺
Java:
char c = '\u743A';
System.out.println(c); // Output: 琺
JSON:
{"text": "\u743A"} // Value: 琺
Python:
char = '\u743A'
print(char) # Output: 琺
Perl:
my $char = "\x{743A}";
print $char; # Output: 琺
PHP:
$char = "\x{743A}";
echo $char; // Output: 琺
Ruby:
char = "\u{743A}"
puts char # Output: 琺
Rust:
let c = '\u{743A}';
println!("{}", c); // Output: 琺
Go:
char := '\u743A'
fmt.Printf("%c\n", char) // Output: 琺
CSS:
/* CSS content property */
.element::before {
content: "\00743A"; /* 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%BA
MD5:
2e4cf27775fb2874b2d0cb7da086de4a
SHA1:
4cd84061f117b8a7960167e53742bed5ff779445
Base64:
55C6