C:
char c = '\u7493';
printf("%c\n", c); // Output: 璓
JavaScript:
const char = '\u7493';
console.log(char); // Output: 璓
Java:
char c = '\u7493';
System.out.println(c); // Output: 璓
JSON:
{"text": "\u7493"} // Value: 璓
Python:
char = '\u7493'
print(char) # Output: 璓
Perl:
my $char = "\x{7493}";
print $char; # Output: 璓
PHP:
$char = "\x{7493}";
echo $char; // Output: 璓
Ruby:
char = "\u{7493}"
puts char # Output: 璓
Rust:
let c = '\u{7493}';
println!("{}", c); // Output: 璓
Go:
char := '\u7493'
fmt.Printf("%c\n", char) // Output: 璓
CSS:
/* CSS content property */
.element::before {
content: "\007493"; /* 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%93
MD5:
f8821f3b29f03689379d6ff8877169dc
SHA1:
a9f2f5ea7c6cb9e5329807f2da0547d514b49ba0
Base64:
55KT