C:
char c = '\u7480';
printf("%c\n", c); // Output: 璀
JavaScript:
const char = '\u7480';
console.log(char); // Output: 璀
Java:
char c = '\u7480';
System.out.println(c); // Output: 璀
JSON:
{"text": "\u7480"} // Value: 璀
Python:
char = '\u7480'
print(char) # Output: 璀
Perl:
my $char = "\x{7480}";
print $char; # Output: 璀
PHP:
$char = "\x{7480}";
echo $char; // Output: 璀
Ruby:
char = "\u{7480}"
puts char # Output: 璀
Rust:
let c = '\u{7480}';
println!("{}", c); // Output: 璀
Go:
char := '\u7480'
fmt.Printf("%c\n", char) // Output: 璀
CSS:
/* CSS content property */
.element::before {
content: "\007480"; /* 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%92%80
MD5:
3f45eb28f1df9ef48735742ddea4d5de
SHA1:
243e583d4e6dd727e165a7c68a81a42a0f8be67b
Base64:
55KA