C:
char c = '\u7441';
printf("%c\n", c); // Output: 瑁
JavaScript:
const char = '\u7441';
console.log(char); // Output: 瑁
Java:
char c = '\u7441';
System.out.println(c); // Output: 瑁
JSON:
{"text": "\u7441"} // Value: 瑁
Python:
char = '\u7441'
print(char) # Output: 瑁
Perl:
my $char = "\x{7441}";
print $char; # Output: 瑁
PHP:
$char = "\x{7441}";
echo $char; // Output: 瑁
Ruby:
char = "\u{7441}"
puts char # Output: 瑁
Rust:
let c = '\u{7441}';
println!("{}", c); // Output: 瑁
Go:
char := '\u7441'
fmt.Printf("%c\n", char) // Output: 瑁
CSS:
/* CSS content property */
.element::before {
content: "\007441"; /* 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%81
MD5:
fc70c13c09fa9588ab060b5d1ca73065
SHA1:
4864c8b686891812f13dcf9a9e2de65610ba2898
Base64:
55GB