C:
char c = '\u9554';
printf("%c\n", c); // Output: 镔
JavaScript:
const char = '\u9554';
console.log(char); // Output: 镔
Java:
char c = '\u9554';
System.out.println(c); // Output: 镔
JSON:
{"text": "\u9554"} // Value: 镔
Python:
char = '\u9554'
print(char) # Output: 镔
Perl:
my $char = "\x{9554}";
print $char; # Output: 镔
PHP:
$char = "\x{9554}";
echo $char; // Output: 镔
Ruby:
char = "\u{9554}"
puts char # Output: 镔
Rust:
let c = '\u{9554}';
println!("{}", c); // Output: 镔
Go:
char := '\u9554'
fmt.Printf("%c\n", char) // Output: 镔
CSS:
/* CSS content property */
.element::before {
content: "\009554"; /* 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%94
MD5:
457f0ea7748073b20cbdf59d572d3138
SHA1:
cf40944941dd2b8e669d394d1e19bbe8bf4287c7
Base64:
6ZWU