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