C:
char c = '\u7498';
printf("%c\n", c); // Output: 璘
JavaScript:
const char = '\u7498';
console.log(char); // Output: 璘
Java:
char c = '\u7498';
System.out.println(c); // Output: 璘
JSON:
{"text": "\u7498"} // Value: 璘
Python:
char = '\u7498'
print(char) # Output: 璘
Perl:
my $char = "\x{7498}";
print $char; # Output: 璘
PHP:
$char = "\x{7498}";
echo $char; // Output: 璘
Ruby:
char = "\u{7498}"
puts char # Output: 璘
Rust:
let c = '\u{7498}';
println!("{}", c); // Output: 璘
Go:
char := '\u7498'
fmt.Printf("%c\n", char) // Output: 璘
CSS:
/* CSS content property */
.element::before {
content: "\007498"; /* 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%98
MD5:
4d2c248aba3c0192513c9aa8c598394c
SHA1:
113e67e2915685f4a1a5e02902895e6aa6edcd58
Base64:
55KY