C:
char c = '\u7489';
printf("%c\n", c); // Output: 璉
JavaScript:
const char = '\u7489';
console.log(char); // Output: 璉
Java:
char c = '\u7489';
System.out.println(c); // Output: 璉
JSON:
{"text": "\u7489"} // Value: 璉
Python:
char = '\u7489'
print(char) # Output: 璉
Perl:
my $char = "\x{7489}";
print $char; # Output: 璉
PHP:
$char = "\x{7489}";
echo $char; // Output: 璉
Ruby:
char = "\u{7489}"
puts char # Output: 璉
Rust:
let c = '\u{7489}';
println!("{}", c); // Output: 璉
Go:
char := '\u7489'
fmt.Printf("%c\n", char) // Output: 璉
CSS:
/* CSS content property */
.element::before {
content: "\007489"; /* 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%89
MD5:
096d564a6e86374d33411d9853e6fcb7
SHA1:
0f39a10502a3cc2768f66d84c852fd53259b6e67
Base64:
55KJ