C:
char c = '\u7443';
printf("%c\n", c); // Output: 瑃
JavaScript:
const char = '\u7443';
console.log(char); // Output: 瑃
Java:
char c = '\u7443';
System.out.println(c); // Output: 瑃
JSON:
{"text": "\u7443"} // Value: 瑃
Python:
char = '\u7443'
print(char) # Output: 瑃
Perl:
my $char = "\x{7443}";
print $char; # Output: 瑃
PHP:
$char = "\x{7443}";
echo $char; // Output: 瑃
Ruby:
char = "\u{7443}"
puts char # Output: 瑃
Rust:
let c = '\u{7443}';
println!("{}", c); // Output: 瑃
Go:
char := '\u7443'
fmt.Printf("%c\n", char) // Output: 瑃
CSS:
/* CSS content property */
.element::before {
content: "\007443"; /* 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%83
MD5:
25e6e3250a1a32909f1475c6e9c14830
SHA1:
6dc6f4600e0f88138af376631ac7e6a57fe918d0
Base64:
55GD