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