C:
char c = '\u7445';
printf("%c\n", c); // Output: 瑅
JavaScript:
const char = '\u7445';
console.log(char); // Output: 瑅
Java:
char c = '\u7445';
System.out.println(c); // Output: 瑅
JSON:
{"text": "\u7445"} // Value: 瑅
Python:
char = '\u7445'
print(char) # Output: 瑅
Perl:
my $char = "\x{7445}";
print $char; # Output: 瑅
PHP:
$char = "\x{7445}";
echo $char; // Output: 瑅
Ruby:
char = "\u{7445}"
puts char # Output: 瑅
Rust:
let c = '\u{7445}';
println!("{}", c); // Output: 瑅
Go:
char := '\u7445'
fmt.Printf("%c\n", char) // Output: 瑅
CSS:
/* CSS content property */
.element::before {
content: "\007445"; /* 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%85
MD5:
5ef07f66a5eba68263e1075ec96712c8
SHA1:
11f9d4a0c77da0ce59adf1fddeb6f91cfbdcb9e6
Base64:
55GF