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