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