C:
char c = '\u7487';
printf("%c\n", c); // Output: 璇
JavaScript:
const char = '\u7487';
console.log(char); // Output: 璇
Java:
char c = '\u7487';
System.out.println(c); // Output: 璇
JSON:
{"text": "\u7487"} // Value: 璇
Python:
char = '\u7487'
print(char) # Output: 璇
Perl:
my $char = "\x{7487}";
print $char; # Output: 璇
PHP:
$char = "\x{7487}";
echo $char; // Output: 璇
Ruby:
char = "\u{7487}"
puts char # Output: 璇
Rust:
let c = '\u{7487}';
println!("{}", c); // Output: 璇
Go:
char := '\u7487'
fmt.Printf("%c\n", char) // Output: 璇
CSS:
/* CSS content property */
.element::before {
content: "\007487"; /* 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%87
MD5:
331733d041569745fdf582217c001f84
SHA1:
60704e7447c28e165414bb0c24109990d0788a8f
Base64:
55KH