C:
char c = '\u9544';
printf("%c\n", c); // Output: 镄
JavaScript:
const char = '\u9544';
console.log(char); // Output: 镄
Java:
char c = '\u9544';
System.out.println(c); // Output: 镄
JSON:
{"text": "\u9544"} // Value: 镄
Python:
char = '\u9544'
print(char) # Output: 镄
Perl:
my $char = "\x{9544}";
print $char; # Output: 镄
PHP:
$char = "\x{9544}";
echo $char; // Output: 镄
Ruby:
char = "\u{9544}"
puts char # Output: 镄
Rust:
let c = '\u{9544}';
println!("{}", c); // Output: 镄
Go:
char := '\u9544'
fmt.Printf("%c\n", char) // Output: 镄
CSS:
/* CSS content property */
.element::before {
content: "\009544"; /* 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=%E9%95%84
MD5:
08198a81997683f98ee1712cc7ccd89b
SHA1:
8ed06e36bdc936be74559e582734ed5bcc675f83
Base64:
6ZWE