C:
char c = '\u74A8';
printf("%c\n", c); // Output: 璨
JavaScript:
const char = '\u74A8';
console.log(char); // Output: 璨
Java:
char c = '\u74A8';
System.out.println(c); // Output: 璨
JSON:
{"text": "\u74A8"} // Value: 璨
Python:
char = '\u74A8'
print(char) # Output: 璨
Perl:
my $char = "\x{74A8}";
print $char; # Output: 璨
PHP:
$char = "\x{74A8}";
echo $char; // Output: 璨
Ruby:
char = "\u{74A8}"
puts char # Output: 璨
Rust:
let c = '\u{74A8}';
println!("{}", c); // Output: 璨
Go:
char := '\u74A8'
fmt.Printf("%c\n", char) // Output: 璨
CSS:
/* CSS content property */
.element::before {
content: "\0074A8"; /* 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%A8
MD5:
393c814d71d11b9b68da7c78c30d0f15
SHA1:
96fdeaebf0fb163e85ba60dab5912a4ab518076c
Base64:
55Ko