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