C:
char c = '\u9540';
printf("%c\n", c); // Output: 镀
JavaScript:
const char = '\u9540';
console.log(char); // Output: 镀
Java:
char c = '\u9540';
System.out.println(c); // Output: 镀
JSON:
{"text": "\u9540"} // Value: 镀
Python:
char = '\u9540'
print(char) # Output: 镀
Perl:
my $char = "\x{9540}";
print $char; # Output: 镀
PHP:
$char = "\x{9540}";
echo $char; // Output: 镀
Ruby:
char = "\u{9540}"
puts char # Output: 镀
Rust:
let c = '\u{9540}';
println!("{}", c); // Output: 镀
Go:
char := '\u9540'
fmt.Printf("%c\n", char) // Output: 镀
CSS:
/* CSS content property */
.element::before {
content: "\009540"; /* 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%80
MD5:
9b5fa5308ceaeb719923ac54e7b5d8ee
SHA1:
6d0e10c38a61399c0f2df6711e7a8378d5d93433
Base64:
6ZWA